less-668/0000755060175306017530000000000014700607726011402 5ustar marknmarknless-668/brac.c0000444060175306017530000000430614700607610012446 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Routines to perform bracket matching functions. */ #include "less.h" #include "position.h" /* * Try to match the n-th open bracket * which appears in the top displayed line (forwdir), * or the n-th close bracket * which appears in the bottom displayed line (!forwdir). * The characters which serve as "open bracket" and * "close bracket" are given. */ public void match_brac(char obrac, char cbrac, int forwdir, int n) { int c; int nest; POSITION pos; int (*chget)(); extern int ch_forw_get(), ch_back_get(); /* * Seek to the line containing the open bracket. * This is either the top or bottom line on the screen, * depending on the type of bracket. */ pos = position((forwdir) ? TOP : BOTTOM); if (pos == NULL_POSITION || ch_seek(pos)) { if (forwdir) error("Nothing in top line", NULL_PARG); else error("Nothing in bottom line", NULL_PARG); return; } /* * Look thru the line to find the open bracket to match. */ do { if ((c = ch_forw_get()) == '\n' || c == EOI) { if (forwdir) error("No bracket in top line", NULL_PARG); else error("No bracket in bottom line", NULL_PARG); return; } } while (c != obrac || --n > 0); /* * Position the file just "after" the open bracket * (in the direction in which we will be searching). * If searching forward, we are already after the bracket. * If searching backward, skip back over the open bracket. */ if (!forwdir) (void) ch_back_get(); /* * Search the file for the matching bracket. */ chget = (forwdir) ? ch_forw_get : ch_back_get; nest = 0; while ((c = (*chget)()) != EOI) { if (c == obrac) { if (nest == INT_MAX) break; nest++; } else if (c == cbrac && --nest < 0) { /* * Found the matching bracket. * If searching backward, put it on the top line. * If searching forward, put it on the bottom line. */ jump_line_loc(ch_tell(), forwdir ? -1 : 1); return; } } error("No matching bracket", NULL_PARG); } less-668/ch.c0000444060175306017530000004514214700607610012134 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Low level character input from the input file. * We use these special purpose routines which optimize moving * both forward and backward from the current read pointer. */ #include "less.h" #if MSDOS_COMPILER==WIN32C #include #include #endif typedef POSITION BLOCKNUM; public int ignore_eoi; /* * Pool of buffers holding the most recently used blocks of the input file. * The buffer pool is kept as a doubly-linked circular list, * in order from most- to least-recently used. * The circular list is anchored by the file state "thisfile". */ struct bufnode { struct bufnode *next, *prev; struct bufnode *hnext, *hprev; }; #define LBUFSIZE 8192 struct buf { struct bufnode node; BLOCKNUM block; size_t datasize; unsigned char data[LBUFSIZE]; }; #define bufnode_buf(bn) ((struct buf *) bn) /* * The file state is maintained in a filestate structure. * A pointer to the filestate is kept in the ifile structure. */ #define BUFHASH_SIZE 1024 struct filestate { struct bufnode buflist; struct bufnode hashtbl[BUFHASH_SIZE]; int file; int flags; POSITION fpos; int nbufs; BLOCKNUM block; size_t offset; POSITION fsize; }; #define ch_bufhead thisfile->buflist.next #define ch_buftail thisfile->buflist.prev #define ch_nbufs thisfile->nbufs #define ch_block thisfile->block #define ch_offset thisfile->offset #define ch_fpos thisfile->fpos #define ch_fsize thisfile->fsize #define ch_flags thisfile->flags #define ch_file thisfile->file #define END_OF_CHAIN (&thisfile->buflist) #define END_OF_HCHAIN(h) (&thisfile->hashtbl[h]) #define BUFHASH(blk) ((blk) & (BUFHASH_SIZE-1)) /* * Macros to manipulate the list of buffers in thisfile->buflist. */ #define FOR_BUFS(bn) \ for (bn = ch_bufhead; bn != END_OF_CHAIN; bn = bn->next) #define BUF_RM(bn) \ (bn)->next->prev = (bn)->prev; \ (bn)->prev->next = (bn)->next; #define BUF_INS_HEAD(bn) \ (bn)->next = ch_bufhead; \ (bn)->prev = END_OF_CHAIN; \ ch_bufhead->prev = (bn); \ ch_bufhead = (bn); #define BUF_INS_TAIL(bn) \ (bn)->next = END_OF_CHAIN; \ (bn)->prev = ch_buftail; \ ch_buftail->next = (bn); \ ch_buftail = (bn); /* * Macros to manipulate the list of buffers in thisfile->hashtbl[n]. */ #define FOR_BUFS_IN_CHAIN(h,bn) \ for (bn = thisfile->hashtbl[h].hnext; \ bn != END_OF_HCHAIN(h); bn = bn->hnext) #define BUF_HASH_RM(bn) \ (bn)->hnext->hprev = (bn)->hprev; \ (bn)->hprev->hnext = (bn)->hnext; #define BUF_HASH_INS(bn,h) \ (bn)->hnext = thisfile->hashtbl[h].hnext; \ (bn)->hprev = END_OF_HCHAIN(h); \ thisfile->hashtbl[h].hnext->hprev = (bn); \ thisfile->hashtbl[h].hnext = (bn); static struct filestate *thisfile; static unsigned char ch_ungotchar; static lbool ch_have_ungotchar = FALSE; static int maxbufs = -1; extern int autobuf; extern int sigs; extern int follow_mode; extern lbool waiting_for_data; extern constant char helpdata[]; extern constant int size_helpdata; extern IFILE curr_ifile; #if LOGFILE extern int logfile; extern char *namelogfile; #endif static int ch_addbuf(); /* * Return the file position corresponding to an offset within a block. */ static POSITION ch_position(BLOCKNUM block, size_t offset) { return (block * LBUFSIZE) + (POSITION) offset; } /* * Get the character pointed to by the read pointer. */ static int ch_get(void) { struct buf *bp; struct bufnode *bn; ssize_t n; lbool read_again; int h; POSITION pos; POSITION len; if (thisfile == NULL) return (EOI); /* * Quick check for the common case where * the desired char is in the head buffer. */ if (ch_bufhead != END_OF_CHAIN) { bp = bufnode_buf(ch_bufhead); if (ch_block == bp->block && ch_offset < bp->datasize) return bp->data[ch_offset]; } /* * Look for a buffer holding the desired block. */ waiting_for_data = FALSE; h = BUFHASH(ch_block); FOR_BUFS_IN_CHAIN(h, bn) { bp = bufnode_buf(bn); if (bp->block == ch_block) { if (ch_offset >= bp->datasize) /* * Need more data in this buffer. */ break; goto found; } } if (ABORT_SIGS()) return (EOI); if (bn == END_OF_HCHAIN(h)) { /* * Block is not in a buffer. * Take the least recently used buffer * and read the desired block into it. * If the LRU buffer has data in it, * then maybe allocate a new buffer. */ if (ch_buftail == END_OF_CHAIN || bufnode_buf(ch_buftail)->block != -1) { /* * There is no empty buffer to use. * Allocate a new buffer if: * 1. We can't seek on this file and -b is not in effect; or * 2. We haven't allocated the max buffers for this file yet. */ if ((autobuf && !(ch_flags & CH_CANSEEK)) || (maxbufs < 0 || ch_nbufs < maxbufs)) if (ch_addbuf()) /* * Allocation failed: turn off autobuf. */ autobuf = OPT_OFF; } bn = ch_buftail; bp = bufnode_buf(bn); BUF_HASH_RM(bn); /* Remove from old hash chain. */ bp->block = ch_block; bp->datasize = 0; BUF_HASH_INS(bn, h); /* Insert into new hash chain. */ } for (;;) { pos = ch_position(ch_block, bp->datasize); if ((len = ch_length()) != NULL_POSITION && pos >= len) /* * At end of file. */ return (EOI); if (pos != ch_fpos) { /* * Not at the correct position: must seek. * If input is a pipe, we're in trouble (can't seek on a pipe). * Some data has been lost: just return "?". */ if (!(ch_flags & CH_CANSEEK)) return ('?'); if (less_lseek(ch_file, (less_off_t)pos, SEEK_SET) == BAD_LSEEK) { error("seek error", NULL_PARG); clear_eol(); return (EOI); } ch_fpos = pos; } /* * Read the block. * If we read less than a full block, that's ok. * We use partial block and pick up the rest next time. */ if (ch_have_ungotchar) { bp->data[bp->datasize] = ch_ungotchar; n = 1; ch_have_ungotchar = FALSE; } else if (ch_flags & CH_HELPFILE) { bp->data[bp->datasize] = (unsigned char) helpdata[ch_fpos]; n = 1; } else { n = iread(ch_file, &bp->data[bp->datasize], LBUFSIZE - bp->datasize); } read_again = FALSE; if (n == READ_INTR) { ch_fsize = pos; return (EOI); } if (n == READ_AGAIN) { read_again = TRUE; n = 0; } if (n < 0) { #if MSDOS_COMPILER==WIN32C if (errno != EPIPE) #endif { error("read error", NULL_PARG); clear_eol(); } n = 0; } #if LOGFILE /* * If we have a log file, write the new data to it. */ if (secure_allow(SF_LOGFILE)) { if (logfile >= 0 && n > 0) write(logfile, &bp->data[bp->datasize], (size_t) n); } #endif ch_fpos += n; bp->datasize += (size_t) n; if (n == 0) { /* Either end of file or no data available. * read_again indicates the latter. */ if (!read_again) ch_fsize = pos; if (ignore_eoi || read_again) { /* Wait a while, then try again. */ if (!waiting_for_data) { PARG parg; parg.p_string = wait_message(); ixerror("%s", &parg); waiting_for_data = TRUE; } sleep_ms(50); /* Reduce system load */ } if (ignore_eoi && follow_mode == FOLLOW_NAME && curr_ifile_changed()) { /* screen_trashed=2 causes make_display to reopen the file. */ screen_trashed_num(2); return (EOI); } if (sigs) return (EOI); } found: if (ch_bufhead != bn) { /* * Move the buffer to the head of the buffer chain. * This orders the buffer chain, most- to least-recently used. */ BUF_RM(bn); BUF_INS_HEAD(bn); /* * Move to head of hash chain too. */ BUF_HASH_RM(bn); BUF_HASH_INS(bn, h); } if (ch_offset < bp->datasize) break; /* * After all that, we still don't have enough data. * Go back and try again. */ } return (bp->data[ch_offset]); } /* * ch_ungetchar is a rather kludgy and limited way to push * a single char onto an input file descriptor. */ public void ch_ungetchar(int c) { if (c < 0) ch_have_ungotchar = FALSE; else { if (ch_have_ungotchar) error("ch_ungetchar overrun", NULL_PARG); ch_ungotchar = (unsigned char) c; ch_have_ungotchar = TRUE; } } #if LOGFILE /* * Close the logfile. * If we haven't read all of standard input into it, do that now. */ public void end_logfile(void) { static lbool tried = FALSE; if (logfile < 0) return; if (!tried && ch_fsize == NULL_POSITION) { tried = TRUE; ierror("Finishing logfile", NULL_PARG); while (ch_forw_get() != EOI) if (ABORT_SIGS()) break; } close(logfile); logfile = -1; free(namelogfile); namelogfile = NULL; } /* * Start a log file AFTER less has already been running. * Invoked from the - command; see toggle_option(). * Write all the existing buffered data to the log file. */ public void sync_logfile(void) { struct buf *bp; struct bufnode *bn; lbool warned = FALSE; BLOCKNUM block; BLOCKNUM nblocks; if (logfile < 0) return; nblocks = (ch_fpos + LBUFSIZE - 1) / LBUFSIZE; for (block = 0; block < nblocks; block++) { lbool wrote = FALSE; FOR_BUFS(bn) { bp = bufnode_buf(bn); if (bp->block == block) { write(logfile, bp->data, bp->datasize); wrote = TRUE; break; } } if (!wrote && !warned) { error("Warning: log file is incomplete", NULL_PARG); warned = TRUE; } } } #endif /* * Determine if a specific block is currently in one of the buffers. */ static lbool buffered(BLOCKNUM block) { struct buf *bp; struct bufnode *bn; int h; h = BUFHASH(block); FOR_BUFS_IN_CHAIN(h, bn) { bp = bufnode_buf(bn); if (bp->block == block) return (TRUE); } return (FALSE); } /* * Seek to a specified position in the file. * Return 0 if successful, non-zero if can't seek there. */ public int ch_seek(POSITION pos) { BLOCKNUM new_block; POSITION len; if (thisfile == NULL) return (0); len = ch_length(); if (pos < ch_zero() || (len != NULL_POSITION && pos > len)) return (1); new_block = pos / LBUFSIZE; if (!(ch_flags & CH_CANSEEK) && pos != ch_fpos && !buffered(new_block)) { if (ch_fpos > pos) return (1); while (ch_fpos < pos) { if (ch_forw_get() == EOI) return (1); if (ABORT_SIGS()) return (1); } return (0); } /* * Set read pointer. */ ch_block = new_block; ch_offset = (size_t) (pos % LBUFSIZE); return (0); } /* * Seek to the end of the file. */ public int ch_end_seek(void) { POSITION len; if (thisfile == NULL) return (0); if (ch_flags & CH_CANSEEK) ch_fsize = filesize(ch_file); len = ch_length(); if (len != NULL_POSITION) return (ch_seek(len)); /* * Do it the slow way: read till end of data. */ while (ch_forw_get() != EOI) if (ABORT_SIGS()) return (1); return (0); } /* * Seek to the last position in the file that is currently buffered. */ public int ch_end_buffer_seek(void) { struct buf *bp; struct bufnode *bn; POSITION buf_pos; POSITION end_pos; if (thisfile == NULL || (ch_flags & CH_CANSEEK)) return (ch_end_seek()); end_pos = 0; FOR_BUFS(bn) { bp = bufnode_buf(bn); buf_pos = ch_position(bp->block, bp->datasize); if (buf_pos > end_pos) end_pos = buf_pos; } return (ch_seek(end_pos)); } /* * Seek to the beginning of the file, or as close to it as we can get. * We may not be able to seek there if input is a pipe and the * beginning of the pipe is no longer buffered. */ public int ch_beg_seek(void) { struct bufnode *bn; struct bufnode *firstbn; /* * Try a plain ch_seek first. */ if (ch_seek(ch_zero()) == 0) return (0); /* * Can't get to position 0. * Look thru the buffers for the one closest to position 0. */ firstbn = ch_bufhead; if (firstbn == END_OF_CHAIN) return (1); FOR_BUFS(bn) { if (bufnode_buf(bn)->block < bufnode_buf(firstbn)->block) firstbn = bn; } ch_block = bufnode_buf(firstbn)->block; ch_offset = 0; return (0); } /* * Return the length of the file, if known. */ public POSITION ch_length(void) { if (thisfile == NULL) return (NULL_POSITION); if (ignore_eoi) return (NULL_POSITION); if (ch_flags & CH_HELPFILE) return (size_helpdata); if (ch_flags & CH_NODATA) return (0); return (ch_fsize); } /* * Return the current position in the file. */ public POSITION ch_tell(void) { if (thisfile == NULL) return (NULL_POSITION); return ch_position(ch_block, ch_offset); } /* * Get the current char and post-increment the read pointer. */ public int ch_forw_get(void) { int c; if (thisfile == NULL) return (EOI); c = ch_get(); if (c == EOI) return (EOI); if (ch_offset < LBUFSIZE-1) ch_offset++; else { ch_block ++; ch_offset = 0; } return (c); } /* * Pre-decrement the read pointer and get the new current char. */ public int ch_back_get(void) { if (thisfile == NULL) return (EOI); if (ch_offset > 0) ch_offset --; else { if (ch_block <= 0) return (EOI); if (!(ch_flags & CH_CANSEEK) && !buffered(ch_block-1)) return (EOI); ch_block--; ch_offset = LBUFSIZE-1; } return (ch_get()); } /* * Set max amount of buffer space. * bufspace is in units of 1024 bytes. -1 mean no limit. */ public void ch_setbufspace(ssize_t bufspace) { if (bufspace < 0) maxbufs = -1; else { size_t lbufk = LBUFSIZE / 1024; maxbufs = (int) (bufspace / lbufk + (bufspace % lbufk != 0)); if (maxbufs < 1) maxbufs = 1; } } /* * Flush (discard) any saved file state, including buffer contents. */ public void ch_flush(void) { struct bufnode *bn; if (thisfile == NULL) return; if (!(ch_flags & CH_CANSEEK)) { /* * If input is a pipe, we don't flush buffer contents, * since the contents can't be recovered. */ ch_fsize = NULL_POSITION; return; } /* * Initialize all the buffers. */ FOR_BUFS(bn) { bufnode_buf(bn)->block = -1; } /* * Seek to a known position: the beginning of the file. */ ch_fpos = 0; ch_block = 0; /* ch_fpos / LBUFSIZE; */ ch_offset = 0; /* ch_fpos % LBUFSIZE; */ if (ch_flags & CH_NOTRUSTSIZE) { ch_fsize = NULL_POSITION; ch_flags &= ~CH_CANSEEK; } else { ch_fsize = (ch_flags & CH_HELPFILE) ? size_helpdata : filesize(ch_file); } if (less_lseek(ch_file, (less_off_t)0, SEEK_SET) == BAD_LSEEK) { /* * Warning only; even if the seek fails for some reason, * there's a good chance we're at the beginning anyway. * {{ I think this is bogus reasoning. }} */ error("seek error to 0", NULL_PARG); } } /* * Allocate a new buffer. * The buffer is added to the tail of the buffer chain. */ static int ch_addbuf(void) { struct buf *bp; struct bufnode *bn; /* * Allocate and initialize a new buffer and link it * onto the tail of the buffer list. */ bp = (struct buf *) calloc(1, sizeof(struct buf)); if (bp == NULL) return (1); ch_nbufs++; bp->block = -1; bn = &bp->node; BUF_INS_TAIL(bn); BUF_HASH_INS(bn, 0); return (0); } /* * */ static void init_hashtbl(void) { int h; for (h = 0; h < BUFHASH_SIZE; h++) { thisfile->hashtbl[h].hnext = END_OF_HCHAIN(h); thisfile->hashtbl[h].hprev = END_OF_HCHAIN(h); } } /* * Delete all buffers for this file. */ static void ch_delbufs(void) { struct bufnode *bn; while (ch_bufhead != END_OF_CHAIN) { bn = ch_bufhead; BUF_RM(bn); free(bufnode_buf(bn)); } ch_nbufs = 0; init_hashtbl(); } /* * Is it possible to seek on a file descriptor? */ public int seekable(int f) { #if MSDOS_COMPILER extern int fd0; if (f == fd0 && !isatty(fd0)) { /* * In MS-DOS, pipes are seekable. Check for * standard input, and pretend it is not seekable. */ return (0); } #endif return (less_lseek(f, (less_off_t)1, SEEK_SET) != BAD_LSEEK); } /* * Force EOF to be at the current read position. * This is used after an ignore_eof read, during which the EOF may change. */ public void ch_set_eof(void) { if (ch_fsize != NULL_POSITION && ch_fsize < ch_fpos) ch_fsize = ch_fpos; } /* * Initialize file state for a new file. */ public void ch_init(int f, int flags, ssize_t nread) { /* * See if we already have a filestate for this file. */ thisfile = (struct filestate *) get_filestate(curr_ifile); if (thisfile == NULL) { /* * Allocate and initialize a new filestate. */ thisfile = (struct filestate *) ecalloc(1, sizeof(struct filestate)); thisfile->buflist.next = thisfile->buflist.prev = END_OF_CHAIN; thisfile->nbufs = 0; thisfile->flags = flags; thisfile->fpos = 0; thisfile->block = 0; thisfile->offset = 0; thisfile->file = -1; thisfile->fsize = NULL_POSITION; init_hashtbl(); /* * Try to seek; set CH_CANSEEK if it works. */ if ((flags & CH_CANSEEK) && !seekable(f)) ch_flags &= ~CH_CANSEEK; set_filestate(curr_ifile, (void *) thisfile); } if (thisfile->file == -1) thisfile->file = f; /* * Figure out the size of the file, if we can. */ ch_fsize = (flags & CH_HELPFILE) ? size_helpdata : filesize(ch_file); /* * This is a kludge to workaround a Linux kernel bug: files in some * pseudo filesystems like /proc and tracefs have a size of 0 according * to fstat() but have readable data. */ if (ch_fsize == 0 && nread > 0) { ch_flags |= CH_NOTRUSTSIZE; } ch_flush(); } /* * Close a filestate. */ public void ch_close(void) { lbool keepstate = FALSE; if (thisfile == NULL) return; if ((ch_flags & (CH_CANSEEK|CH_POPENED|CH_HELPFILE)) && !(ch_flags & CH_KEEPOPEN)) { /* * We can seek or re-open, so we don't need to keep buffers. */ ch_delbufs(); } else keepstate = TRUE; if (!(ch_flags & CH_KEEPOPEN)) { /* * We don't need to keep the file descriptor open * (because we can re-open it.) * But don't really close it if it was opened via popen(), * because pclose() wants to close it. */ if (!(ch_flags & (CH_POPENED|CH_HELPFILE))) close(ch_file); ch_file = -1; } else keepstate = TRUE; if (!keepstate) { /* * We don't even need to keep the filestate structure. */ free(thisfile); thisfile = NULL; set_filestate(curr_ifile, (void *) NULL); } } /* * Return ch_flags for the current file. */ public int ch_getflags(void) { if (thisfile == NULL) return (0); return (ch_flags); } #if 0 static void ch_dump(struct filestate *fs) { struct buf *bp; struct bufnode *bn; unsigned char *s; if (fs == NULL) { printf(" --no filestate\n"); return; } printf(" file %d, flags %x, fpos %x, fsize %x, blk/off %x/%x\n", fs->file, fs->flags, fs->fpos, fs->fsize, fs->block, fs->offset); printf(" %d bufs:\n", fs->nbufs); for (bn = fs->next; bn != &fs->buflist; bn = bn->next) { bp = bufnode_buf(bn); printf("%x: blk %x, size %x \"", bp, bp->block, bp->datasize); for (s = bp->data; s < bp->data + 30; s++) if (*s >= ' ' && *s < 0x7F) printf("%c", *s); else printf("."); printf("\"\n"); } } #endif less-668/charset.c0000444060175306017530000005114114700607611013170 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Functions to define the character set * and do things specific to the character set. */ #include "less.h" #if HAVE_LOCALE #include #include #include #endif #include "charset.h" #include "xbuf.h" #if MSDOS_COMPILER==WIN32C #define WIN32_LEAN_AND_MEAN #include #endif extern int bs_mode; public int utf_mode = 0; /* * Predefined character sets, * selected by the LESSCHARSET environment variable. */ struct charset { char *name; int *p_flag; char *desc; } charsets[] = { { "ascii", NULL, "8bcccbcc18b95.b" }, { "utf-8", &utf_mode, "8bcccbcc18b95.b126.bb" }, { "iso8859", NULL, "8bcccbcc18b95.33b." }, { "latin3", NULL, "8bcccbcc18b95.33b5.b8.b15.b4.b12.b18.b12.b." }, { "arabic", NULL, "8bcccbcc18b95.33b.3b.7b2.13b.3b.b26.5b19.b" }, { "greek", NULL, "8bcccbcc18b95.33b4.2b4.b3.b35.b44.b" }, { "greek2005", NULL, "8bcccbcc18b95.33b14.b35.b44.b" }, { "hebrew", NULL, "8bcccbcc18b95.33b.b29.32b28.2b2.b" }, { "koi8-r", NULL, "8bcccbcc18b95.b." }, { "KOI8-T", NULL, "8bcccbcc18b95.b8.b6.b8.b.b.5b7.3b4.b4.b3.b.b.3b." }, { "georgianps", NULL, "8bcccbcc18b95.3b11.4b12.2b." }, { "tcvn", NULL, "b..b...bcccbccbbb7.8b95.b48.5b." }, { "TIS-620", NULL, "8bcccbcc18b95.b.4b.11b7.8b." }, { "next", NULL, "8bcccbcc18b95.bb125.bb" }, { "dos", NULL, "8bcccbcc12bc5b95.b." }, { "windows-1251", NULL, "8bcccbcc12bc5b95.b24.b." }, { "windows-1252", NULL, "8bcccbcc12bc5b95.b.b11.b.2b12.b." }, { "windows-1255", NULL, "8bcccbcc12bc5b95.b.b8.b.5b9.b.4b." }, { "ebcdic", NULL, "5bc6bcc7bcc41b.9b7.9b5.b..8b6.10b6.b9.7b9.8b8.17b3.3b9.7b9.8b8.6b10.b.b.b." }, { "IBM-1047", NULL, "4cbcbc3b9cbccbccbb4c6bcc5b3cbbc4bc4bccbc191.b" }, { NULL, NULL, NULL } }; /* * Support "locale charmap"/nl_langinfo(CODESET) values, as well as others. */ struct cs_alias { char *name; char *oname; } cs_aliases[] = { { "UTF-8", "utf-8" }, { "utf8", "utf-8" }, { "UTF8", "utf-8" }, { "ANSI_X3.4-1968", "ascii" }, { "US-ASCII", "ascii" }, { "latin1", "iso8859" }, { "ISO-8859-1", "iso8859" }, { "latin9", "iso8859" }, { "ISO-8859-15", "iso8859" }, { "latin2", "iso8859" }, { "ISO-8859-2", "iso8859" }, { "ISO-8859-3", "latin3" }, { "latin4", "iso8859" }, { "ISO-8859-4", "iso8859" }, { "cyrillic", "iso8859" }, { "ISO-8859-5", "iso8859" }, { "ISO-8859-6", "arabic" }, { "ISO-8859-7", "greek" }, { "IBM9005", "greek2005" }, { "ISO-8859-8", "hebrew" }, { "latin5", "iso8859" }, { "ISO-8859-9", "iso8859" }, { "latin6", "iso8859" }, { "ISO-8859-10", "iso8859" }, { "latin7", "iso8859" }, { "ISO-8859-13", "iso8859" }, { "latin8", "iso8859" }, { "ISO-8859-14", "iso8859" }, { "latin10", "iso8859" }, { "ISO-8859-16", "iso8859" }, { "IBM437", "dos" }, { "EBCDIC-US", "ebcdic" }, { "IBM1047", "IBM-1047" }, { "KOI8-R", "koi8-r" }, { "KOI8-U", "koi8-r" }, { "GEORGIAN-PS", "georgianps" }, { "TCVN5712-1", "tcvn" }, { "NEXTSTEP", "next" }, { "windows", "windows-1252" }, /* backward compatibility */ { "CP1251", "windows-1251" }, { "CP1252", "windows-1252" }, { "CP1255", "windows-1255" }, { NULL, NULL } }; #define IS_BINARY_CHAR 01 #define IS_CONTROL_CHAR 02 static char chardef[256]; static constant char *binfmt = NULL; static constant char *utfbinfmt = NULL; public int binattr = AT_STANDOUT|AT_COLOR_BIN; static struct xbuffer user_wide_array; static struct xbuffer user_ubin_array; static struct xbuffer user_compose_array; static struct xbuffer user_prt_array; static struct wchar_range_table user_wide_table; static struct wchar_range_table user_ubin_table; static struct wchar_range_table user_compose_table; static struct wchar_range_table user_prt_table; /* * Set a wchar_range_table to the table in an xbuffer. */ static void wchar_range_table_set(struct wchar_range_table *tbl, struct xbuffer *arr) { tbl->table = (struct wchar_range *) arr->data; tbl->count = (unsigned int) (arr->end / sizeof(struct wchar_range)); } /* * Skip over a "U" or "U+" prefix before a hex codepoint. */ static constant char * skip_uprefix(constant char *s) { if (*s == 'U' || *s == 'u') if (*++s == '+') ++s; return s; } /* * Parse a dash-separated range of hex values. */ static void wchar_range_get(constant char **ss, struct wchar_range *range) { constant char *s = skip_uprefix(*ss); range->first = lstrtoulc(s, &s, 16); if (s[0] == '-') { s = skip_uprefix(&s[1]); range->last = lstrtoulc(s, &s, 16); } else { range->last = range->first; } *ss = s; } /* * Parse the LESSUTFCHARDEF variable. */ static void ichardef_utf(constant char *s) { xbuf_init(&user_wide_array); xbuf_init(&user_ubin_array); xbuf_init(&user_compose_array); xbuf_init(&user_prt_array); if (s != NULL) { while (s[0] != '\0') { struct wchar_range range; wchar_range_get(&s, &range); if (range.last == 0) { error("invalid hex number(s) in LESSUTFCHARDEF", NULL_PARG); quit(QUIT_ERROR); } if (*s++ != ':') { error("missing colon in LESSUTFCHARDEF", NULL_PARG); quit(QUIT_ERROR); } switch (*s++) { case 'b': xbuf_add_data(&user_ubin_array, (unsigned char *) &range, sizeof(range)); break; case 'c': xbuf_add_data(&user_compose_array, (unsigned char *) &range, sizeof(range)); break; case 'w': xbuf_add_data(&user_wide_array, (unsigned char *) &range, sizeof(range)); xbuf_add_data(&user_prt_array, (unsigned char *) &range, sizeof(range)); break; case 'p': case '.': xbuf_add_data(&user_prt_array, (unsigned char *) &range, sizeof(range)); break; case '\0': s--; break; default: /* Ignore unknown character attribute. */ break; } if (s[0] == ',') ++s; } } wchar_range_table_set(&user_wide_table, &user_wide_array); wchar_range_table_set(&user_ubin_table, &user_ubin_array); wchar_range_table_set(&user_compose_table, &user_compose_array); wchar_range_table_set(&user_prt_table, &user_prt_array); } /* * Define a charset, given a description string. * The string consists of 256 letters, * one for each character in the charset. * If the string is shorter than 256 letters, missing letters * are taken to be identical to the last one. * A decimal number followed by a letter is taken to be a * repetition of the letter. * * Each letter is one of: * . normal character * b binary character * c control character */ static void ichardef(constant char *s) { char *cp; int n; char v; n = 0; v = 0; cp = chardef; while (*s != '\0') { switch (*s++) { case '.': v = 0; break; case 'c': v = IS_CONTROL_CHAR; break; case 'b': v = IS_BINARY_CHAR|IS_CONTROL_CHAR; break; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': if (ckd_mul(&n, n, 10) || ckd_add(&n, n, s[-1] - '0')) goto invalid_chardef; continue; default: invalid_chardef: error("invalid chardef", NULL_PARG); quit(QUIT_ERROR); /*NOTREACHED*/ } do { if (cp >= chardef + sizeof(chardef)) { error("chardef longer than 256", NULL_PARG); quit(QUIT_ERROR); /*NOTREACHED*/ } *cp++ = v; } while (--n > 0); n = 0; } while (cp < chardef + sizeof(chardef)) *cp++ = v; } /* * Define a charset, given a charset name. * The valid charset names are listed in the "charsets" array. */ static int icharset(constant char *name, int no_error) { struct charset *p; struct cs_alias *a; if (name == NULL || *name == '\0') return (0); /* First see if the name is an alias. */ for (a = cs_aliases; a->name != NULL; a++) { if (strcmp(name, a->name) == 0) { name = a->oname; break; } } for (p = charsets; p->name != NULL; p++) { if (strcmp(name, p->name) == 0) { ichardef(p->desc); if (p->p_flag != NULL) { #if MSDOS_COMPILER==WIN32C *(p->p_flag) = 1 + (GetConsoleOutputCP() != CP_UTF8); #else *(p->p_flag) = 1; #endif } return (1); } } if (!no_error) { error("invalid charset name", NULL_PARG); quit(QUIT_ERROR); } return (0); } #if HAVE_LOCALE /* * Define a charset, given a locale name. */ static void ilocale(void) { int c; for (c = 0; c < (int) sizeof(chardef); c++) { if (isprint(c)) chardef[c] = 0; else if (iscntrl(c)) chardef[c] = IS_CONTROL_CHAR; else chardef[c] = IS_BINARY_CHAR|IS_CONTROL_CHAR; } } #endif /* * Define the printing format for control (or binary utf) chars. */ public void setfmt(constant char *s, constant char **fmtvarptr, int *attrptr, constant char *default_fmt, lbool for_printf) { if (s == NULL || *s == '\0') s = default_fmt; else if (for_printf && ((*s == '*' && (s[1] == '\0' || s[2] == '\0' || strchr(s + 2, 'n'))) || (*s != '*' && strchr(s, 'n')))) /* %n is evil */ s = default_fmt; /* * Select the attributes if it starts with "*". */ if (*s == '*' && s[1] != '\0') { switch (s[1]) { case 'd': *attrptr = AT_BOLD; break; case 'k': *attrptr = AT_BLINK; break; case 's': *attrptr = AT_STANDOUT; break; case 'u': *attrptr = AT_UNDERLINE; break; default: *attrptr = AT_NORMAL; break; } s += 2; } *fmtvarptr = s; } /* * */ static void set_charset(void) { constant char *s; ichardef_utf(lgetenv("LESSUTFCHARDEF")); /* * See if environment variable LESSCHARSET is defined. */ s = lgetenv("LESSCHARSET"); if (icharset(s, 0)) return; /* * LESSCHARSET is not defined: try LESSCHARDEF. */ s = lgetenv("LESSCHARDEF"); if (!isnullenv(s)) { ichardef(s); return; } #if HAVE_LOCALE #ifdef CODESET /* * Try using the codeset name as the charset name. */ s = nl_langinfo(CODESET); if (icharset(s, 1)) return; #endif #endif #if HAVE_STRSTR /* * Check whether LC_ALL, LC_CTYPE or LANG look like UTF-8 is used. */ if ((s = lgetenv("LC_ALL")) != NULL || (s = lgetenv("LC_CTYPE")) != NULL || (s = lgetenv("LANG")) != NULL) { if ( strstr(s, "UTF-8") != NULL || strstr(s, "utf-8") != NULL || strstr(s, "UTF8") != NULL || strstr(s, "utf8") != NULL) if (icharset("utf-8", 1)) return; } #endif #if HAVE_LOCALE /* * Get character definitions from locale functions, * rather than from predefined charset entry. */ ilocale(); #else #if MSDOS_COMPILER #if MSDOS_COMPILER==WIN32C (void) icharset("utf-8", 1); #else (void) icharset("dos", 1); #endif #else (void) icharset("utf-8", 1); #endif #endif } /* * Initialize charset data structures. */ public void init_charset(void) { constant char *s; #if HAVE_LOCALE setlocale(LC_ALL, ""); #endif set_charset(); s = lgetenv("LESSBINFMT"); setfmt(s, &binfmt, &binattr, "*s<%02X>", TRUE); s = lgetenv("LESSUTFBINFMT"); setfmt(s, &utfbinfmt, &binattr, "", TRUE); } /* * Is a given character a "binary" character? */ public lbool binary_char(LWCHAR c) { if (utf_mode) return (is_ubin_char(c)); if (c >= sizeof(chardef)) return TRUE; return ((chardef[c] & IS_BINARY_CHAR) != 0); } /* * Is a given character a "control" character? */ public lbool control_char(LWCHAR c) { if (c >= sizeof(chardef)) return TRUE; return (chardef[c] & IS_CONTROL_CHAR); } /* * Return the printable form of a character. * For example, in the "ascii" charset '\3' is printed as "^C". */ public constant char * prchar(LWCHAR c) { /* {{ Fixed buffer size means LESSBINFMT etc can be truncated. }} */ static char buf[MAX_PRCHAR_LEN+1]; c &= 0377; /*{{type-issue}}*/ if ((c < 128 || !utf_mode) && !control_char(c)) SNPRINTF1(buf, sizeof(buf), "%c", (int) c); else if (c == ESC) strcpy(buf, "ESC"); #if IS_EBCDIC_HOST else if (!binary_char(c) && c < 64) SNPRINTF1(buf, sizeof(buf), "^%c", /* * This array roughly inverts CONTROL() #defined in less.h, * and should be kept in sync with CONTROL() and IBM-1047. */ "@ABC.I.?...KLMNO" "PQRS.JH.XY.." "\\]^_" "......W[.....EFG" "..V....D....TU.Z"[c]); #else else if (c < 128 && !control_char(c ^ 0100)) SNPRINTF1(buf, sizeof(buf), "^%c", (int) (c ^ 0100)); #endif else SNPRINTF1(buf, sizeof(buf), binfmt, c); return (buf); } /* * Return the printable form of a UTF-8 character. */ public constant char * prutfchar(LWCHAR ch) { static char buf[MAX_PRCHAR_LEN+1]; if (ch == ESC) strcpy(buf, "ESC"); else if (ch < 128 && control_char(ch)) { if (!control_char(ch ^ 0100)) SNPRINTF1(buf, sizeof(buf), "^%c", ((char) ch) ^ 0100); else SNPRINTF1(buf, sizeof(buf), binfmt, (char) ch); } else if (is_ubin_char(ch)) { SNPRINTF1(buf, sizeof(buf), utfbinfmt, ch); } else { char *p = buf; if (ch >= 0x80000000) ch = 0xFFFD; /* REPLACEMENT CHARACTER */ put_wchar(&p, ch); *p = '\0'; } return (buf); } /* * Get the length of a UTF-8 character in bytes. */ public int utf_len(char ch) { if ((ch & 0x80) == 0) return 1; if ((ch & 0xE0) == 0xC0) return 2; if ((ch & 0xF0) == 0xE0) return 3; if ((ch & 0xF8) == 0xF0) return 4; #if 0 if ((ch & 0xFC) == 0xF8) return 5; if ((ch & 0xFE) == 0xFC) return 6; #endif /* Invalid UTF-8 encoding. */ return 1; } /* * Does the parameter point to the lead byte of a well-formed UTF-8 character? */ public lbool is_utf8_well_formed(constant char *ss, int slen) { int i; int len; unsigned char s0 = (unsigned char) ss[0]; if (IS_UTF8_INVALID(s0)) return (FALSE); len = utf_len(ss[0]); if (len > slen) return (FALSE); if (len == 1) return (TRUE); if (len == 2) { if (s0 < 0xC2) return (FALSE); } else { unsigned char mask = (unsigned char) (~((1 << (8-len)) - 1)); if (s0 == mask && (ss[1] & mask) == 0x80) return (FALSE); } for (i = 1; i < len; i++) if (!IS_UTF8_TRAIL(ss[i])) return (FALSE); return (TRUE); } /* * Skip bytes until a UTF-8 lead byte (11xxxxxx) or ASCII byte (0xxxxxxx) is found. */ public void utf_skip_to_lead(constant char **pp, constant char *limit) { do { ++(*pp); } while (*pp < limit && !IS_UTF8_LEAD((*pp)[0] & 0377) && !IS_ASCII_OCTET((*pp)[0])); } /* * Get the value of a UTF-8 character. */ public LWCHAR get_wchar(constant char *sp) { constant unsigned char *p = (constant unsigned char *) sp; switch (utf_len(sp[0])) { case 1: default: /* 0xxxxxxx */ return (LWCHAR) (p[0] & 0xFF); case 2: /* 110xxxxx 10xxxxxx */ return (LWCHAR) ( ((p[0] & 0x1F) << 6) | (p[1] & 0x3F)); case 3: /* 1110xxxx 10xxxxxx 10xxxxxx */ return (LWCHAR) ( ((p[0] & 0x0F) << 12) | ((p[1] & 0x3F) << 6) | (p[2] & 0x3F)); case 4: /* 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx */ return (LWCHAR) ( ((p[0] & 0x07) << 18) | ((p[1] & 0x3F) << 12) | ((p[2] & 0x3F) << 6) | (p[3] & 0x3F)); #if 0 case 5: /* 111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx */ return (LWCHAR) ( ((p[0] & 0x03) << 24) | ((p[1] & 0x3F) << 18) | ((p[2] & 0x3F) << 12) | ((p[3] & 0x3F) << 6) | (p[4] & 0x3F)); case 6: /* 1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx */ return (LWCHAR) ( ((p[0] & 0x01) << 30) | ((p[1] & 0x3F) << 24) | ((p[2] & 0x3F) << 18) | ((p[3] & 0x3F) << 12) | ((p[4] & 0x3F) << 6) | (p[5] & 0x3F)); #endif } } /* * Store a character into a UTF-8 string. */ public void put_wchar(mutable char **pp, LWCHAR ch) { if (!utf_mode || ch < 0x80) { /* 0xxxxxxx */ *(*pp)++ = (char) ch; } else if (ch < 0x800) { /* 110xxxxx 10xxxxxx */ *(*pp)++ = (char) (0xC0 | ((ch >> 6) & 0x1F)); *(*pp)++ = (char) (0x80 | (ch & 0x3F)); } else if (ch < 0x10000) { /* 1110xxxx 10xxxxxx 10xxxxxx */ *(*pp)++ = (char) (0xE0 | ((ch >> 12) & 0x0F)); *(*pp)++ = (char) (0x80 | ((ch >> 6) & 0x3F)); *(*pp)++ = (char) (0x80 | (ch & 0x3F)); } else if (ch < 0x200000) { /* 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx */ *(*pp)++ = (char) (0xF0 | ((ch >> 18) & 0x07)); *(*pp)++ = (char) (0x80 | ((ch >> 12) & 0x3F)); *(*pp)++ = (char) (0x80 | ((ch >> 6) & 0x3F)); *(*pp)++ = (char) (0x80 | (ch & 0x3F)); #if 0 } else if (ch < 0x4000000) { /* 111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx */ *(*pp)++ = (char) (0xF0 | ((ch >> 24) & 0x03)); *(*pp)++ = (char) (0x80 | ((ch >> 18) & 0x3F)); *(*pp)++ = (char) (0x80 | ((ch >> 12) & 0x3F)); *(*pp)++ = (char) (0x80 | ((ch >> 6) & 0x3F)); *(*pp)++ = (char) (0x80 | (ch & 0x3F)); } else { /* 1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx */ *(*pp)++ = (char) (0xF0 | ((ch >> 30) & 0x01)); *(*pp)++ = (char) (0x80 | ((ch >> 24) & 0x3F)); *(*pp)++ = (char) (0x80 | ((ch >> 18) & 0x3F)); *(*pp)++ = (char) (0x80 | ((ch >> 12) & 0x3F)); *(*pp)++ = (char) (0x80 | ((ch >> 6) & 0x3F)); *(*pp)++ = (char) (0x80 | (ch & 0x3F)); #endif } } /* * Step forward or backward one character in a string. */ public LWCHAR step_charc(constant char **pp, signed int dir, constant char *limit) { LWCHAR ch; int len; constant char *p = *pp; if (!utf_mode) { /* It's easy if chars are one byte. */ if (dir > 0) ch = (LWCHAR) (unsigned char) ((p < limit) ? *p++ : 0); else ch = (LWCHAR) (unsigned char) ((p > limit) ? *--p : 0); } else if (dir > 0) { len = utf_len(*p); if (p + len > limit) { ch = 0; p = (char *) limit; } else { ch = get_wchar(p); p += len; } } else { while (p > limit && IS_UTF8_TRAIL(p[-1])) p--; if (p > limit) ch = get_wchar(--p); else ch = 0; } *pp = p; return ch; } public LWCHAR step_char(char **pp, signed int dir, constant char *limit) { constant char *p = (constant char *) *pp; LWCHAR ch = step_charc(&p, dir, limit); *pp = (char *) p; return ch; } /* * Unicode characters data * Actual data is in the generated *.uni files. */ #define DECLARE_RANGE_TABLE_START(name) \ static struct wchar_range name##_array[] = { #define DECLARE_RANGE_TABLE_END(name) \ }; struct wchar_range_table name##_table = { name##_array, countof(name##_array) }; DECLARE_RANGE_TABLE_START(compose) #include "compose.uni" DECLARE_RANGE_TABLE_END(compose) DECLARE_RANGE_TABLE_START(ubin) #include "ubin.uni" DECLARE_RANGE_TABLE_END(ubin) DECLARE_RANGE_TABLE_START(wide) #include "wide.uni" DECLARE_RANGE_TABLE_END(wide) DECLARE_RANGE_TABLE_START(fmt) #include "fmt.uni" DECLARE_RANGE_TABLE_END(fmt) /* comb_table is special pairs, not ranges. */ static struct wchar_range comb_table[] = { {0x0644,0x0622}, {0x0644,0x0623}, {0x0644,0x0625}, {0x0644,0x0627}, }; static lbool is_in_table(LWCHAR ch, struct wchar_range_table *table) { unsigned int hi; unsigned int lo; /* Binary search in the table. */ if (table->table == NULL || table->count == 0 || ch < table->table[0].first) return FALSE; lo = 0; hi = table->count - 1; while (lo <= hi) { unsigned int mid = (lo + hi) / 2; if (ch > table->table[mid].last) lo = mid + 1; else if (ch < table->table[mid].first) hi = mid - 1; else return TRUE; } return FALSE; } /* * Is a character a UTF-8 composing character? * If a composing character follows any char, the two combine into one glyph. */ public lbool is_composing_char(LWCHAR ch) { if (is_in_table(ch, &user_prt_table)) return FALSE; return is_in_table(ch, &user_compose_table) || is_in_table(ch, &compose_table) || (bs_mode != BS_CONTROL && is_in_table(ch, &fmt_table)); } /* * Should this UTF-8 character be treated as binary? */ public lbool is_ubin_char(LWCHAR ch) { if (is_in_table(ch, &user_prt_table)) return FALSE; return is_in_table(ch, &user_ubin_table) || is_in_table(ch, &ubin_table) || (bs_mode == BS_CONTROL && is_in_table(ch, &fmt_table)); } /* * Is this a double width UTF-8 character? */ public lbool is_wide_char(LWCHAR ch) { return is_in_table(ch, &user_wide_table) || is_in_table(ch, &wide_table); } /* * Is a character a UTF-8 combining character? * A combining char acts like an ordinary char, but if it follows * a specific char (not any char), the two combine into one glyph. */ public lbool is_combining_char(LWCHAR ch1, LWCHAR ch2) { /* The table is small; use linear search. */ int i; for (i = 0; i < countof(comb_table); i++) { if (ch1 == comb_table[i].first && ch2 == comb_table[i].last) return TRUE; } return FALSE; } less-668/charset.h0000444060175306017530000000131514700607645013202 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ #define IS_ASCII_OCTET(c) (((c) & 0x80) == 0) #define IS_UTF8_TRAIL(c) (((c) & 0xC0) == 0x80) #define IS_UTF8_LEAD2(c) (((c) & 0xE0) == 0xC0) #define IS_UTF8_LEAD3(c) (((c) & 0xF0) == 0xE0) #define IS_UTF8_LEAD4(c) (((c) & 0xF8) == 0xF0) #define IS_UTF8_LEAD5(c) (((c) & 0xFC) == 0xF8) #define IS_UTF8_LEAD6(c) (((c) & 0xFE) == 0xFC) #define IS_UTF8_INVALID(c) (((c) & 0xFE) == 0xFE) #define IS_UTF8_LEAD(c) (((c) & 0xC0) == 0xC0 && !IS_UTF8_INVALID(c)) less-668/cmd.h0000444060175306017530000001130014700607646012310 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ #define MAX_USERCMD 1000 #define MAX_CMDLEN 16 #define A_B_LINE 2 #define A_B_SCREEN 3 #define A_B_SCROLL 4 #define A_B_SEARCH 5 #define A_DIGIT 6 #define A_DISP_OPTION 7 #define A_DEBUG 8 #define A_EXAMINE 9 #define A_FIRSTCMD 10 #define A_FREPAINT 11 #define A_F_LINE 12 #define A_F_SCREEN 13 #define A_F_SCROLL 14 #define A_F_SEARCH 15 #define A_GOEND 16 #define A_GOLINE 17 #define A_GOMARK 18 #define A_HELP 19 #define A_NEXT_FILE 20 #define A_PERCENT 21 #define A_PREV_FILE 23 #define A_QUIT 24 #define A_REPAINT 25 #define A_SETMARK 26 #define A_SHELL 27 #define A_STAT 28 #define A_FF_LINE 29 #define A_BF_LINE 30 #define A_VERSION 31 #define A_VISUAL 32 #define A_F_WINDOW 33 #define A_B_WINDOW 34 #define A_F_BRACKET 35 #define A_B_BRACKET 36 #define A_PIPE 37 #define A_INDEX_FILE 38 #define A_UNDO_SEARCH 39 #define A_FF_SCREEN 40 #define A_LSHIFT 41 #define A_RSHIFT 42 #define A_AGAIN_SEARCH 43 #define A_T_AGAIN_SEARCH 44 #define A_REVERSE_SEARCH 45 #define A_T_REVERSE_SEARCH 46 #define A_OPT_TOGGLE 47 #define A_OPT_SET 48 #define A_OPT_UNSET 49 #define A_F_FOREVER 50 #define A_GOPOS 51 #define A_REMOVE_FILE 52 #define A_NEXT_TAG 53 #define A_PREV_TAG 54 #define A_FILTER 55 #define A_F_UNTIL_HILITE 56 #define A_GOEND_BUF 57 #define A_LLSHIFT 58 #define A_RRSHIFT 59 #define A_CLRMARK 62 #define A_SETMARKBOT 63 #define A_X11MOUSE_IN 64 #define A_F_MOUSE 66 #define A_B_MOUSE 67 /* Note "X116" refers to extended (1006) X11 mouse reporting. */ #define A_X116MOUSE_IN 68 #define A_PSHELL 69 #define A_CLR_SEARCH 70 #define A_OSC8_F_SEARCH 71 #define A_OSC8_B_SEARCH 72 #define A_OSC8_OPEN 73 #define A_OSC8_JUMP 74 /* These values must not conflict with any A_* or EC_* value. */ #define A_INVALID 100 #define A_NOACTION 101 #define A_UINVALID 102 #define A_END_LIST 103 #define A_SPECIAL_KEY 104 #define A_PREFIX 105 #define A_SKIP 127 #define A_EXTRA 0200 /* Line editing characters */ #define EC_BACKSPACE 1 #define EC_LINEKILL 2 #define EC_RIGHT 3 #define EC_LEFT 4 #define EC_W_LEFT 5 #define EC_W_RIGHT 6 #define EC_INSERT 7 #define EC_DELETE 8 #define EC_HOME 9 #define EC_END 10 #define EC_W_BACKSPACE 11 #define EC_W_DELETE 12 #define EC_UP 13 #define EC_DOWN 14 #define EC_EXPAND 15 #define EC_F_COMPLETE 17 #define EC_B_COMPLETE 18 #define EC_LITERAL 19 #define EC_ABORT 20 #define EC_X11MOUSE 21 #define EC_X116MOUSE 22 #define EC_UINVALID 102 /* Flags for editchar() */ #define ECF_PEEK 01 #define ECF_NOHISTORY 02 #define ECF_NOCOMPLETE 04 #define ECF_NORIGHTLEFT 010 /* Environment variable stuff */ #define EV_OK 01 /* Special keys (keys which output different strings on different terminals) */ #define SK_SPECIAL_KEY CONTROL('K') #define SK_RIGHT_ARROW 1 #define SK_LEFT_ARROW 2 #define SK_UP_ARROW 3 #define SK_DOWN_ARROW 4 #define SK_PAGE_UP 5 #define SK_PAGE_DOWN 6 #define SK_HOME 7 #define SK_END 8 #define SK_DELETE 9 #define SK_INSERT 10 #define SK_CTL_LEFT_ARROW 11 #define SK_CTL_RIGHT_ARROW 12 #define SK_CTL_DELETE 13 #define SK_F1 14 #define SK_BACKTAB 15 #define SK_CTL_BACKSPACE 16 #define SK_BACKSPACE 17 #define SK_CONTROL_K 40 less-668/cmdbuf.c0000444060175306017530000010320214700607611012773 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Functions which manipulate the command buffer. * Used only by command() and related functions. */ #include "less.h" #include "cmd.h" #include "charset.h" #if HAVE_STAT #include #endif extern int sc_width; extern int utf_mode; extern int no_hist_dups; extern int marks_modified; static char cmdbuf[CMDBUF_SIZE]; /* Buffer for holding a multi-char command */ static int cmd_col; /* Current column of the cursor */ static int prompt_col; /* Column of cursor just after prompt */ static char *cp; /* Pointer into cmdbuf */ static int cmd_offset; /* Index into cmdbuf of first displayed char */ static lbool literal; /* Next input char should not be interpreted */ static size_t updown_match; /* Prefix length in up/down movement */ static lbool have_updown_match = FALSE; #if TAB_COMPLETE_FILENAME static int cmd_complete(int action); /* * These variables are statics used by cmd_complete. */ static lbool in_completion = FALSE; static char *tk_text; static char *tk_original; static constant char *tk_ipoint; static constant char *tk_trial = NULL; static struct textlist tk_tlist; #endif static int cmd_left(); static int cmd_right(); #if SPACES_IN_FILENAMES public char openquote = '"'; public char closequote = '"'; #endif #if CMD_HISTORY /* History file */ #define HISTFILE_FIRST_LINE ".less-history-file:" #define HISTFILE_SEARCH_SECTION ".search" #define HISTFILE_SHELL_SECTION ".shell" #define HISTFILE_MARK_SECTION ".mark" /* * A mlist structure represents a command history. */ struct mlist { struct mlist *next; struct mlist *prev; struct mlist *curr_mp; char *string; lbool modified; }; /* * These are the various command histories that exist. */ struct mlist mlist_search = { &mlist_search, &mlist_search, &mlist_search, NULL, 0 }; public void *ml_search = (void *) &mlist_search; struct mlist mlist_examine = { &mlist_examine, &mlist_examine, &mlist_examine, NULL, 0 }; public void *ml_examine = (void *) &mlist_examine; #if SHELL_ESCAPE || PIPEC struct mlist mlist_shell = { &mlist_shell, &mlist_shell, &mlist_shell, NULL, 0 }; public void *ml_shell = (void *) &mlist_shell; #endif #else /* CMD_HISTORY */ /* If CMD_HISTORY is off, these are just flags. */ public void *ml_search = (void *)1; public void *ml_examine = (void *)2; #if SHELL_ESCAPE || PIPEC public void *ml_shell = (void *)3; #endif #endif /* CMD_HISTORY */ /* * History for the current command. */ static struct mlist *curr_mlist = NULL; static int curr_cmdflags; static char cmd_mbc_buf[MAX_UTF_CHAR_LEN]; static int cmd_mbc_buf_len; static int cmd_mbc_buf_index; /* * Reset command buffer (to empty). */ public void cmd_reset(void) { cp = cmdbuf; *cp = '\0'; cmd_col = 0; cmd_offset = 0; literal = FALSE; cmd_mbc_buf_len = 0; have_updown_match = FALSE; } /* * Clear command line. */ public void clear_cmd(void) { cmd_col = prompt_col = 0; cmd_mbc_buf_len = 0; have_updown_match = FALSE; } /* * Display a string, usually as a prompt for input into the command buffer. */ public void cmd_putstr(constant char *s) { LWCHAR prev_ch = 0; LWCHAR ch; constant char *endline = s + strlen(s); while (*s != '\0') { constant char *os = s; int width; ch = step_charc(&s, +1, endline); while (os < s) putchr(*os++); if (!utf_mode) width = 1; else if (is_composing_char(ch) || is_combining_char(prev_ch, ch)) width = 0; else width = is_wide_char(ch) ? 2 : 1; cmd_col += width; prompt_col += width; prev_ch = ch; } } /* * How many characters are in the command buffer? */ public int len_cmdbuf(void) { constant char *s = cmdbuf; constant char *endline = s + strlen(s); int len = 0; while (*s != '\0') { step_charc(&s, +1, endline); len++; } return (len); } /* * Common part of cmd_step_right() and cmd_step_left(). * {{ Returning pwidth and bswidth separately is a historical artifact * since they're always the same. Maybe clean this up someday. }} */ static constant char * cmd_step_common(char *p, LWCHAR ch, size_t len, int *pwidth, int *bswidth) { constant char *pr; int width; if (len == 1) { pr = prchar(ch); width = (int) strlen(pr); } else { pr = prutfchar(ch); if (is_composing_char(ch)) width = 0; else if (is_ubin_char(ch)) width = (int) strlen(pr); else { LWCHAR prev_ch = step_char(&p, -1, cmdbuf); if (is_combining_char(prev_ch, ch)) width = 0; else width = is_wide_char(ch) ? 2 : 1; } } if (pwidth != NULL) *pwidth = width; if (bswidth != NULL) *bswidth = width; return (pr); } /* * Step a pointer one character right in the command buffer. */ static constant char * cmd_step_right(char **pp, int *pwidth, int *bswidth) { char *p = *pp; LWCHAR ch = step_char(pp, +1, p + strlen(p)); return cmd_step_common(p, ch, ptr_diff(*pp, p), pwidth, bswidth); } /* * Step a pointer one character left in the command buffer. */ static constant char * cmd_step_left(char **pp, int *pwidth, int *bswidth) { char *p = *pp; LWCHAR ch = step_char(pp, -1, cmdbuf); return cmd_step_common(*pp, ch, ptr_diff(p, *pp), pwidth, bswidth); } /* * Put the cursor at "home" (just after the prompt), * and set cp to the corresponding char in cmdbuf. */ static void cmd_home(void) { while (cmd_col > prompt_col) { int width, bswidth; cmd_step_left(&cp, &width, &bswidth); while (bswidth-- > 0) putbs(); cmd_col -= width; } cp = &cmdbuf[cmd_offset]; } /* * Repaint the line from cp onwards. * Then position the cursor just after the char old_cp (a pointer into cmdbuf). */ public void cmd_repaint(constant char *old_cp) { /* * Repaint the line from the current position. */ if (old_cp == NULL) { old_cp = cp; cmd_home(); } clear_eol(); while (*cp != '\0') { char *np = cp; int width; constant char *pr = cmd_step_right(&np, &width, NULL); if (cmd_col + width >= sc_width) break; cp = np; putstr(pr); cmd_col += width; } while (*cp != '\0') { char *np = cp; int width; constant char *pr = cmd_step_right(&np, &width, NULL); if (width > 0) break; cp = np; putstr(pr); } /* * Back up the cursor to the correct position. */ while (cp > old_cp) cmd_left(); } /* * Shift the cmdbuf display left a half-screen. */ static void cmd_lshift(void) { char *s; char *save_cp; int cols; /* * Start at the first displayed char, count how far to the * right we'd have to move to reach the center of the screen. */ s = cmdbuf + cmd_offset; cols = 0; while (cols < (sc_width - prompt_col) / 2 && *s != '\0') { int width; cmd_step_right(&s, &width, NULL); cols += width; } while (*s != '\0') { int width; char *ns = s; cmd_step_right(&ns, &width, NULL); if (width > 0) break; s = ns; } cmd_offset = (int) (s - cmdbuf); save_cp = cp; cmd_home(); cmd_repaint(save_cp); } /* * Shift the cmdbuf display right a half-screen. */ static void cmd_rshift(void) { char *s; char *save_cp; int cols; /* * Start at the first displayed char, count how far to the * left we'd have to move to traverse a half-screen width * of displayed characters. */ s = cmdbuf + cmd_offset; cols = 0; while (cols < (sc_width - prompt_col) / 2 && s > cmdbuf) { int width; cmd_step_left(&s, &width, NULL); cols += width; } cmd_offset = (int) (s - cmdbuf); save_cp = cp; cmd_home(); cmd_repaint(save_cp); } /* * Move cursor right one character. */ static int cmd_right(void) { constant char *pr; char *ncp; int width; if (*cp == '\0') { /* Already at the end of the line. */ return (CC_OK); } ncp = cp; pr = cmd_step_right(&ncp, &width, NULL); if (cmd_col + width >= sc_width) cmd_lshift(); else if (cmd_col + width == sc_width - 1 && cp[1] != '\0') cmd_lshift(); cp = ncp; cmd_col += width; putstr(pr); while (*cp != '\0') { pr = cmd_step_right(&ncp, &width, NULL); if (width > 0) break; putstr(pr); cp = ncp; } return (CC_OK); } /* * Move cursor left one character. */ static int cmd_left(void) { char *ncp; int width = 0; int bswidth = 0; if (cp <= cmdbuf) { /* Already at the beginning of the line */ return (CC_OK); } ncp = cp; while (ncp > cmdbuf) { cmd_step_left(&ncp, &width, &bswidth); if (width > 0) break; } if (cmd_col < prompt_col + width) cmd_rshift(); cp = ncp; cmd_col -= width; while (bswidth-- > 0) putbs(); return (CC_OK); } /* * Insert a char into the command buffer, at the current position. */ static int cmd_ichar(constant char *cs, size_t clen) { char *s; if (strlen(cmdbuf) + clen >= sizeof(cmdbuf)-1) { /* No room in the command buffer for another char. */ bell(); return (CC_ERROR); } /* * Make room for the new character (shift the tail of the buffer right). */ for (s = &cmdbuf[strlen(cmdbuf)]; s >= cp; s--) s[clen] = s[0]; /* * Insert the character into the buffer. */ for (s = cp; s < cp + clen; s++) *s = *cs++; /* * Reprint the tail of the line from the inserted char. */ have_updown_match = FALSE; cmd_repaint(cp); cmd_right(); return (CC_OK); } /* * Backspace in the command buffer. * Delete the char to the left of the cursor. */ static int cmd_erase(void) { char *s; int clen; if (cp == cmdbuf) { /* * Backspace past beginning of the buffer: * this usually means abort the command. */ return (CC_QUIT); } /* * Move cursor left (to the char being erased). */ s = cp; cmd_left(); clen = (int) (s - cp); /* * Remove the char from the buffer (shift the buffer left). */ for (s = cp; ; s++) { s[0] = s[clen]; if (s[0] == '\0') break; } /* * Repaint the buffer after the erased char. */ have_updown_match = FALSE; cmd_repaint(cp); /* * We say that erasing the entire command string causes us * to abort the current command, if CF_QUIT_ON_ERASE is set. */ if ((curr_cmdflags & CF_QUIT_ON_ERASE) && cp == cmdbuf && *cp == '\0') return (CC_QUIT); return (CC_OK); } /* * Delete the char under the cursor. */ static int cmd_delete(void) { if (*cp == '\0') { /* At end of string; there is no char under the cursor. */ return (CC_OK); } /* * Move right, then use cmd_erase. */ cmd_right(); cmd_erase(); return (CC_OK); } /* * Delete the "word" to the left of the cursor. */ static int cmd_werase(void) { if (cp > cmdbuf && cp[-1] == ' ') { /* * If the char left of cursor is a space, * erase all the spaces left of cursor (to the first non-space). */ while (cp > cmdbuf && cp[-1] == ' ') (void) cmd_erase(); } else { /* * If the char left of cursor is not a space, * erase all the nonspaces left of cursor (the whole "word"). */ while (cp > cmdbuf && cp[-1] != ' ') (void) cmd_erase(); } return (CC_OK); } /* * Delete the "word" under the cursor. */ static int cmd_wdelete(void) { if (*cp == ' ') { /* * If the char under the cursor is a space, * delete it and all the spaces right of cursor. */ while (*cp == ' ') (void) cmd_delete(); } else { /* * If the char under the cursor is not a space, * delete it and all nonspaces right of cursor (the whole word). */ while (*cp != ' ' && *cp != '\0') (void) cmd_delete(); } return (CC_OK); } /* * Delete all chars in the command buffer. */ static int cmd_kill(void) { if (cmdbuf[0] == '\0') { /* Buffer is already empty; abort the current command. */ return (CC_QUIT); } cmd_offset = 0; cmd_home(); *cp = '\0'; have_updown_match = FALSE; cmd_repaint(cp); /* * We say that erasing the entire command string causes us * to abort the current command, if CF_QUIT_ON_ERASE is set. */ if (curr_cmdflags & CF_QUIT_ON_ERASE) return (CC_QUIT); return (CC_OK); } /* * Select an mlist structure to be the current command history. */ public void set_mlist(void *mlist, int cmdflags) { #if CMD_HISTORY curr_mlist = (struct mlist *) mlist; curr_cmdflags = cmdflags; /* Make sure the next up-arrow moves to the last string in the mlist. */ if (curr_mlist != NULL) curr_mlist->curr_mp = curr_mlist; #endif } #if CMD_HISTORY /* * Move up or down in the currently selected command history list. * Only consider entries whose first updown_match chars are equal to * cmdbuf's corresponding chars. */ static int cmd_updown(int action) { constant char *s; struct mlist *ml; if (curr_mlist == NULL) { /* * The current command has no history list. */ bell(); return (CC_OK); } if (!have_updown_match) { updown_match = ptr_diff(cp, cmdbuf); have_updown_match = TRUE; } /* * Find the next history entry which matches. */ for (ml = curr_mlist->curr_mp;;) { ml = (action == EC_UP) ? ml->prev : ml->next; if (ml == curr_mlist) { /* * We reached the end (or beginning) of the list. */ break; } if (strncmp(cmdbuf, ml->string, updown_match) == 0) { /* * This entry matches; stop here. * Copy the entry into cmdbuf and echo it on the screen. */ curr_mlist->curr_mp = ml; s = ml->string; if (s == NULL) s = ""; cmd_offset = 0; cmd_home(); clear_eol(); strcpy(cmdbuf, s); for (cp = cmdbuf; *cp != '\0'; ) cmd_right(); return (CC_OK); } } /* * We didn't find a history entry that matches. */ bell(); return (CC_OK); } /* * Yet another lesson in the evils of global variables. */ public ssize_t save_updown_match(void) { if (!have_updown_match) return (ssize_t)(-1); return (ssize_t) updown_match; } public void restore_updown_match(ssize_t udm) { updown_match = udm; have_updown_match = (udm != (ssize_t)(-1)); } #endif /* CMD_HISTORY */ /* * */ static void ml_link(struct mlist *mlist, struct mlist *ml) { ml->next = mlist; ml->prev = mlist->prev; mlist->prev->next = ml; mlist->prev = ml; } /* * */ static void ml_unlink(struct mlist *ml) { ml->prev->next = ml->next; ml->next->prev = ml->prev; } /* * Add a string to an mlist. */ public void cmd_addhist(struct mlist *mlist, constant char *cmd, lbool modified) { #if CMD_HISTORY struct mlist *ml; /* * Don't save a trivial command. */ if (strlen(cmd) == 0) return; if (no_hist_dups) { struct mlist *next = NULL; for (ml = mlist->next; ml->string != NULL; ml = next) { next = ml->next; if (strcmp(ml->string, cmd) == 0) { ml_unlink(ml); free(ml->string); free(ml); } } } /* * Save the command unless it's a duplicate of the * last command in the history. */ ml = mlist->prev; if (ml == mlist || strcmp(ml->string, cmd) != 0) { /* * Did not find command in history. * Save the command and put it at the end of the history list. */ ml = (struct mlist *) ecalloc(1, sizeof(struct mlist)); ml->string = save(cmd); ml->modified = modified; ml_link(mlist, ml); } /* * Point to the cmd just after the just-accepted command. * Thus, an UPARROW will always retrieve the previous command. */ mlist->curr_mp = ml->next; #endif } /* * Accept the command in the command buffer. * Add it to the currently selected history list. */ public void cmd_accept(void) { #if CMD_HISTORY /* * Nothing to do if there is no currently selected history list. */ if (curr_mlist == NULL || curr_mlist == ml_examine) return; cmd_addhist(curr_mlist, cmdbuf, TRUE); curr_mlist->modified = TRUE; #endif } /* * Try to perform a line-edit function on the command buffer, * using a specified char as a line-editing command. * Returns: * CC_PASS The char does not invoke a line edit function. * CC_OK Line edit function done. * CC_QUIT The char requests the current command to be aborted. */ static int cmd_edit(char c) { int action; int flags; #if TAB_COMPLETE_FILENAME #define not_in_completion() in_completion = 0 #else #define not_in_completion(void) #endif /* * See if the char is indeed a line-editing command. */ flags = 0; #if CMD_HISTORY if (curr_mlist == NULL) /* * No current history; don't accept history manipulation cmds. */ flags |= ECF_NOHISTORY; #endif #if TAB_COMPLETE_FILENAME if (curr_mlist == ml_search || curr_mlist == NULL) /* * Don't accept file-completion cmds in contexts * such as search pattern, digits, long option name, etc. */ flags |= ECF_NOCOMPLETE; #endif action = editchar(c, flags); switch (action) { case A_NOACTION: return (CC_OK); case EC_RIGHT: not_in_completion(); return (cmd_right()); case EC_LEFT: not_in_completion(); return (cmd_left()); case EC_W_RIGHT: not_in_completion(); while (*cp != '\0' && *cp != ' ') cmd_right(); while (*cp == ' ') cmd_right(); return (CC_OK); case EC_W_LEFT: not_in_completion(); while (cp > cmdbuf && cp[-1] == ' ') cmd_left(); while (cp > cmdbuf && cp[-1] != ' ') cmd_left(); return (CC_OK); case EC_HOME: not_in_completion(); cmd_offset = 0; cmd_home(); cmd_repaint(cp); return (CC_OK); case EC_END: not_in_completion(); while (*cp != '\0') cmd_right(); return (CC_OK); case EC_INSERT: not_in_completion(); return (CC_OK); case EC_BACKSPACE: not_in_completion(); return (cmd_erase()); case EC_LINEKILL: not_in_completion(); return (cmd_kill()); case EC_ABORT: not_in_completion(); (void) cmd_kill(); return (CC_QUIT); case EC_W_BACKSPACE: not_in_completion(); return (cmd_werase()); case EC_DELETE: not_in_completion(); return (cmd_delete()); case EC_W_DELETE: not_in_completion(); return (cmd_wdelete()); case EC_LITERAL: literal = TRUE; return (CC_OK); #if CMD_HISTORY case EC_UP: case EC_DOWN: not_in_completion(); return (cmd_updown(action)); #endif #if TAB_COMPLETE_FILENAME case EC_F_COMPLETE: case EC_B_COMPLETE: case EC_EXPAND: return (cmd_complete(action)); #endif default: not_in_completion(); return (CC_PASS); } } #if TAB_COMPLETE_FILENAME /* * Insert a string into the command buffer, at the current position. */ static int cmd_istr(constant char *str) { constant char *endline = str + strlen(str); constant char *s; int action; for (s = str; *s != '\0'; ) { constant char *os = s; step_charc(&s, +1, endline); action = cmd_ichar(os, ptr_diff(s, os)); if (action != CC_OK) return (action); } return (CC_OK); } /* * Find the beginning and end of the "current" word. * This is the word which the cursor (cp) is inside or at the end of. * Return pointer to the beginning of the word and put the * cursor at the end of the word. */ static char * delimit_word(void) { char *word; #if SPACES_IN_FILENAMES char *p; int delim_quoted = FALSE; int meta_quoted = FALSE; constant char *esc = get_meta_escape(); size_t esclen = strlen(esc); #endif /* * Move cursor to end of word. */ if (*cp != ' ' && *cp != '\0') { /* * Cursor is on a nonspace. * Move cursor right to the next space. */ while (*cp != ' ' && *cp != '\0') cmd_right(); } else if (cp > cmdbuf && cp[-1] != ' ') { /* * Cursor is on a space, and char to the left is a nonspace. * We're already at the end of the word. */ ; #if 0 } else { /* * Cursor is on a space and char to the left is a space. * Huh? There's no word here. */ return (NULL); #endif } /* * Find the beginning of the word which the cursor is in. */ if (cp == cmdbuf) return (NULL); #if SPACES_IN_FILENAMES /* * If we have an unbalanced quote (that is, an open quote * without a corresponding close quote), we return everything * from the open quote, including spaces. */ for (word = cmdbuf; word < cp; word++) if (*word != ' ') break; if (word >= cp) return (cp); for (p = cmdbuf; p < cp; p++) { if (meta_quoted) { meta_quoted = FALSE; } else if (esclen > 0 && p + esclen < cp && strncmp(p, esc, esclen) == 0) { meta_quoted = TRUE; p += esclen - 1; } else if (delim_quoted) { if (*p == closequote) delim_quoted = FALSE; } else /* (!delim_quoted) */ { if (*p == openquote) delim_quoted = TRUE; else if (*p == ' ') word = p+1; } } #endif return (word); } /* * Set things up to enter completion mode. * Expand the word under the cursor into a list of filenames * which start with that word, and set tk_text to that list. */ static void init_compl(void) { char *word; char c; /* * Get rid of any previous tk_text. */ if (tk_text != NULL) { free(tk_text); tk_text = NULL; } /* * Find the original (uncompleted) word in the command buffer. */ word = delimit_word(); if (word == NULL) return; /* * Set the insertion point to the point in the command buffer * where the original (uncompleted) word now sits. */ tk_ipoint = word; /* * Save the original (uncompleted) word */ if (tk_original != NULL) free(tk_original); tk_original = (char *) ecalloc(ptr_diff(cp,word)+1, sizeof(char)); strncpy(tk_original, word, ptr_diff(cp,word)); /* * Get the expanded filename. * This may result in a single filename, or * a blank-separated list of filenames. */ c = *cp; *cp = '\0'; if (*word != openquote) { tk_text = fcomplete(word); } else { #if MSDOS_COMPILER char *qword = NULL; #else char *qword = shell_quote(word+1); #endif if (qword == NULL) tk_text = fcomplete(word+1); else { tk_text = fcomplete(qword); free(qword); } } *cp = c; } /* * Return the next word in the current completion list. */ static constant char * next_compl(int action, constant char *prev) { switch (action) { case EC_F_COMPLETE: return (forw_textlist(&tk_tlist, prev)); case EC_B_COMPLETE: return (back_textlist(&tk_tlist, prev)); } /* Cannot happen */ return ("?"); } /* * Complete the filename before (or under) the cursor. * cmd_complete may be called multiple times. The global in_completion * remembers whether this call is the first time (create the list), * or a subsequent time (step thru the list). */ static int cmd_complete(int action) { constant char *s; if (!in_completion || action == EC_EXPAND) { /* * Expand the word under the cursor and * use the first word in the expansion * (or the entire expansion if we're doing EC_EXPAND). */ init_compl(); if (tk_text == NULL) { bell(); return (CC_OK); } if (action == EC_EXPAND) { /* * Use the whole list. */ tk_trial = tk_text; } else { /* * Use the first filename in the list. */ in_completion = TRUE; init_textlist(&tk_tlist, tk_text); tk_trial = next_compl(action, (char*)NULL); } } else { /* * We already have a completion list. * Use the next/previous filename from the list. */ tk_trial = next_compl(action, tk_trial); } /* * Remove the original word, or the previous trial completion. */ while (cp > tk_ipoint) (void) cmd_erase(); if (tk_trial == NULL) { /* * There are no more trial completions. * Insert the original (uncompleted) filename. */ in_completion = FALSE; if (cmd_istr(tk_original) != CC_OK) goto fail; } else { /* * Insert trial completion. */ if (cmd_istr(tk_trial) != CC_OK) goto fail; /* * If it is a directory, append a slash. */ if (is_dir(tk_trial)) { if (cp > cmdbuf && cp[-1] == closequote) (void) cmd_erase(); s = lgetenv("LESSSEPARATOR"); if (s == NULL) s = PATHNAME_SEP; if (cmd_istr(s) != CC_OK) goto fail; } } return (CC_OK); fail: in_completion = FALSE; bell(); return (CC_OK); } #endif /* TAB_COMPLETE_FILENAME */ /* * Process a single character of a multi-character command, such as * a number, or the pattern of a search command. * Returns: * CC_OK The char was accepted. * CC_QUIT The char requests the command to be aborted. * CC_ERROR The char could not be accepted due to an error. */ public int cmd_char(char c) { int action; size_t len; if (!utf_mode) { cmd_mbc_buf[0] = c; len = 1; } else { /* Perform strict validation in all possible cases. */ if (cmd_mbc_buf_len == 0) { retry: cmd_mbc_buf_index = 1; *cmd_mbc_buf = c; if (IS_ASCII_OCTET(c)) cmd_mbc_buf_len = 1; #if MSDOS_COMPILER || OS2 else if (c == '\340' && IS_ASCII_OCTET(peekcc())) { /* Assume a special key. */ cmd_mbc_buf_len = 1; } #endif else if (IS_UTF8_LEAD(c)) { cmd_mbc_buf_len = utf_len(c); return (CC_OK); } else { /* UTF8_INVALID or stray UTF8_TRAIL */ bell(); return (CC_ERROR); } } else if (IS_UTF8_TRAIL(c)) { cmd_mbc_buf[cmd_mbc_buf_index++] = c; if (cmd_mbc_buf_index < cmd_mbc_buf_len) return (CC_OK); if (!is_utf8_well_formed(cmd_mbc_buf, cmd_mbc_buf_index)) { /* complete, but not well formed (non-shortest form), sequence */ cmd_mbc_buf_len = 0; bell(); return (CC_ERROR); } } else { /* Flush incomplete (truncated) sequence. */ cmd_mbc_buf_len = 0; bell(); /* Handle new char. */ goto retry; } len = (size_t) cmd_mbc_buf_len; /*{{type-issue}}*/ cmd_mbc_buf_len = 0; } if (literal) { /* * Insert the char, even if it is a line-editing char. */ literal = FALSE; return (cmd_ichar(cmd_mbc_buf, len)); } /* * See if it is a line-editing character. */ if (in_mca() && len == 1) { action = cmd_edit(c); switch (action) { case CC_OK: case CC_QUIT: return (action); case CC_PASS: break; } } /* * Insert the char into the command buffer. */ return (cmd_ichar(cmd_mbc_buf, len)); } /* * Return the number currently in the command buffer. */ public LINENUM cmd_int(mutable long *frac) { constant char *p; LINENUM n = 0; lbool err; for (p = cmdbuf; *p >= '0' && *p <= '9'; p++) { if (ckd_mul(&n, n, 10) || ckd_add(&n, n, *p - '0')) { error("Integer is too big", NULL_PARG); return (0); } } *frac = 0; if (*p++ == '.') { *frac = getfraction(&p, NULL, &err); /* {{ do something if err is set? }} */ } return (n); } /* * Return a pointer to the command buffer. */ public constant char * get_cmdbuf(void) { if (cmd_mbc_buf_index < cmd_mbc_buf_len) /* Don't return buffer containing an incomplete multibyte char. */ return (NULL); return (cmdbuf); } #if CMD_HISTORY /* * Return the last (most recent) string in the current command history. */ public constant char * cmd_lastpattern(void) { if (curr_mlist == NULL) return (NULL); return (curr_mlist->curr_mp->prev->string); } #endif #if CMD_HISTORY /* */ static int mlist_size(struct mlist *ml) { int size = 0; for (ml = ml->next; ml->string != NULL; ml = ml->next) ++size; return size; } /* * Get the name of the history file. */ static char * histfile_find(lbool must_exist) { constant char *home = lgetenv("HOME"); char *name = NULL; /* Try in $XDG_STATE_HOME, then in $HOME/.local/state, then in $XDG_DATA_HOME, then in $HOME. */ #if OS2 if (isnullenv(home)) home = lgetenv("INIT"); #endif name = dirfile(lgetenv("XDG_STATE_HOME"), &LESSHISTFILE[1], must_exist); if (name == NULL) { char *dir = dirfile(home, ".local/state", 1); if (dir != NULL) { name = dirfile(dir, &LESSHISTFILE[1], must_exist); free(dir); } } if (name == NULL) name = dirfile(lgetenv("XDG_DATA_HOME"), &LESSHISTFILE[1], must_exist); if (name == NULL) name = dirfile(home, LESSHISTFILE, must_exist); return (name); } static char * histfile_name(lbool must_exist) { constant char *name; char *wname; /* See if filename is explicitly specified by $LESSHISTFILE. */ name = lgetenv("LESSHISTFILE"); if (!isnullenv(name)) { if (strcmp(name, "-") == 0 || strcmp(name, "/dev/null") == 0) /* $LESSHISTFILE == "-" means don't use a history file. */ return (NULL); return (save(name)); } /* See if history file is disabled in the build. */ if (strcmp(LESSHISTFILE, "") == 0 || strcmp(LESSHISTFILE, "-") == 0) return (NULL); wname = NULL; if (!must_exist) { /* If we're writing the file and the file already exists, use it. */ wname = histfile_find(TRUE); } if (wname == NULL) wname = histfile_find(must_exist); return (wname); } /* * Read a .lesshst file and call a callback for each line in the file. */ static void read_cmdhist2(void (*action)(void*,struct mlist*,constant char*), void *uparam, int skip_search, int skip_shell) { struct mlist *ml = NULL; char line[CMDBUF_SIZE]; char *filename; FILE *f; int *skip = NULL; filename = histfile_name(TRUE); if (filename == NULL) return; f = fopen(filename, "r"); free(filename); if (f == NULL) return; if (fgets(line, sizeof(line), f) == NULL || strncmp(line, HISTFILE_FIRST_LINE, strlen(HISTFILE_FIRST_LINE)) != 0) { fclose(f); return; } while (fgets(line, sizeof(line), f) != NULL) { char *p; for (p = line; *p != '\0'; p++) { if (*p == '\n' || *p == '\r') { *p = '\0'; break; } } if (strcmp(line, HISTFILE_SEARCH_SECTION) == 0) { ml = &mlist_search; skip = &skip_search; } else if (strcmp(line, HISTFILE_SHELL_SECTION) == 0) { #if SHELL_ESCAPE || PIPEC ml = &mlist_shell; skip = &skip_shell; #else ml = NULL; skip = NULL; #endif } else if (strcmp(line, HISTFILE_MARK_SECTION) == 0) { ml = NULL; } else if (*line == '"') { if (ml != NULL) { if (skip != NULL && *skip > 0) --(*skip); else (*action)(uparam, ml, line+1); } } else if (*line == 'm') { (*action)(uparam, NULL, line); } } fclose(f); } static void read_cmdhist(void (*action)(void*,struct mlist*,constant char*), void *uparam, lbool skip_search, lbool skip_shell) { if (!secure_allow(SF_HISTORY)) return; read_cmdhist2(action, uparam, skip_search, skip_shell); (*action)(uparam, NULL, NULL); /* signal end of file */ } static void addhist_init(void *uparam, struct mlist *ml, constant char *string) { (void) uparam; if (ml != NULL) cmd_addhist(ml, string, 0); else if (string != NULL) restore_mark(string); } #endif /* CMD_HISTORY */ /* * Initialize history from a .lesshist file. */ public void init_cmdhist(void) { #if CMD_HISTORY read_cmdhist(&addhist_init, NULL, 0, 0); #endif /* CMD_HISTORY */ } /* * Write the header for a section of the history file. */ #if CMD_HISTORY static void write_mlist_header(struct mlist *ml, FILE *f) { if (ml == &mlist_search) fprintf(f, "%s\n", HISTFILE_SEARCH_SECTION); #if SHELL_ESCAPE || PIPEC else if (ml == &mlist_shell) fprintf(f, "%s\n", HISTFILE_SHELL_SECTION); #endif } /* * Write all modified entries in an mlist to the history file. */ static void write_mlist(struct mlist *ml, FILE *f) { for (ml = ml->next; ml->string != NULL; ml = ml->next) { if (!ml->modified) continue; fprintf(f, "\"%s\n", ml->string); ml->modified = FALSE; } ml->modified = FALSE; /* entire mlist is now unmodified */ } /* * Make a temp name in the same directory as filename. */ static char * make_tempname(constant char *filename) { char lastch; char *tempname = ecalloc(1, strlen(filename)+1); strcpy(tempname, filename); lastch = tempname[strlen(tempname)-1]; tempname[strlen(tempname)-1] = (lastch == 'Q') ? 'Z' : 'Q'; return tempname; } struct save_ctx { struct mlist *mlist; FILE *fout; }; /* * Copy entries from the saved history file to a new file. * At the end of each mlist, append any new entries * created during this session. */ static void copy_hist(void *uparam, struct mlist *ml, constant char *string) { struct save_ctx *ctx = (struct save_ctx *) uparam; if (ml != NULL && ml != ctx->mlist) { /* We're changing mlists. */ if (ctx->mlist) /* Append any new entries to the end of the current mlist. */ write_mlist(ctx->mlist, ctx->fout); /* Write the header for the new mlist. */ ctx->mlist = ml; write_mlist_header(ctx->mlist, ctx->fout); } if (string == NULL) /* End of file */ { /* Write any sections that were not in the original file. */ if (mlist_search.modified) { write_mlist_header(&mlist_search, ctx->fout); write_mlist(&mlist_search, ctx->fout); } #if SHELL_ESCAPE || PIPEC if (mlist_shell.modified) { write_mlist_header(&mlist_shell, ctx->fout); write_mlist(&mlist_shell, ctx->fout); } #endif } else if (ml != NULL) { /* Copy mlist entry. */ fprintf(ctx->fout, "\"%s\n", string); } /* Skip marks */ } #endif /* CMD_HISTORY */ /* * Make a file readable only by its owner. */ static void make_file_private(FILE *f) { #if HAVE_FCHMOD lbool do_chmod = TRUE; #if HAVE_STAT struct stat statbuf; int r = fstat(fileno(f), &statbuf); if (r < 0 || !S_ISREG(statbuf.st_mode)) /* Don't chmod if not a regular file. */ do_chmod = FALSE; #endif if (do_chmod) fchmod(fileno(f), 0600); #endif } /* * Does the history file need to be updated? */ #if CMD_HISTORY static lbool histfile_modified(void) { if (mlist_search.modified) return TRUE; #if SHELL_ESCAPE || PIPEC if (mlist_shell.modified) return TRUE; #endif if (marks_modified) return TRUE; return FALSE; } #endif /* * Update the .lesshst file. */ public void save_cmdhist(void) { #if CMD_HISTORY char *histname; char *tempname; int skip_search; int skip_shell; struct save_ctx ctx; constant char *s; FILE *fout = NULL; int histsize = 0; if (!secure_allow(SF_HISTORY) || !histfile_modified()) return; histname = histfile_name(0); if (histname == NULL) return; tempname = make_tempname(histname); fout = fopen(tempname, "w"); if (fout != NULL) { make_file_private(fout); s = lgetenv("LESSHISTSIZE"); if (s != NULL) histsize = atoi(s); if (histsize <= 0) histsize = 100; skip_search = mlist_size(&mlist_search) - histsize; #if SHELL_ESCAPE || PIPEC skip_shell = mlist_size(&mlist_shell) - histsize; #endif fprintf(fout, "%s\n", HISTFILE_FIRST_LINE); ctx.fout = fout; ctx.mlist = NULL; read_cmdhist(©_hist, &ctx, skip_search, skip_shell); save_marks(fout, HISTFILE_MARK_SECTION); fclose(fout); #if MSDOS_COMPILER==WIN32C /* * Windows rename doesn't remove an existing file, * making it useless for atomic operations. Sigh. */ remove(histname); #endif rename(tempname, histname); } free(tempname); free(histname); #endif /* CMD_HISTORY */ } less-668/command.c0000444060175306017530000012565314700607612013170 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * User-level command processor. */ #include "less.h" #if MSDOS_COMPILER==WIN32C #include #endif #include "position.h" #include "option.h" #include "cmd.h" extern int erase_char, erase2_char, kill_char; extern int sigs; extern int quit_if_one_screen; extern int one_screen; extern int sc_width; extern int sc_height; extern char *kent; extern int swindow; extern int jump_sline; extern int quitting; extern int wscroll; extern int top_scroll; extern int ignore_eoi; extern int hshift; extern int bs_mode; extern int proc_backspace; extern int show_attn; extern POSITION highest_hilite; extern char *every_first_cmd; extern char version[]; extern struct scrpos initial_scrpos; extern IFILE curr_ifile; extern void *ml_search; extern void *ml_examine; extern int wheel_lines; extern int def_search_type; extern lbool search_wrapped; #if SHELL_ESCAPE || PIPEC extern void *ml_shell; #endif #if EDITOR extern constant char *editproto; #endif #if OSC8_LINK extern char *osc8_uri; #endif extern int shift_count; extern int forw_prompt; extern int incr_search; extern int full_screen; #if MSDOS_COMPILER==WIN32C extern int utf_mode; extern unsigned less_acp; #endif #if SHELL_ESCAPE static char *shellcmd = NULL; /* For holding last shell command for "!!" */ #endif static int mca; /* The multicharacter command (action) */ static int search_type; /* The previous type of search */ static int last_search_type; /* Type of last executed search */ static LINENUM number; /* The number typed by the user */ static long fraction; /* The fractional part of the number */ static struct loption *curropt; static int opt_lower; static int optflag; static lbool optgetname; static POSITION bottompos; static int save_hshift; static int save_bs_mode; static int save_proc_backspace; static int screen_trashed_value = 0; static lbool literal_char = FALSE; #if PIPEC static char pipec; #endif /* Stack of ungotten chars (via ungetcc) */ struct ungot { struct ungot *ug_next; char ug_char; lbool ug_end_command; }; static struct ungot* ungot = NULL; static void multi_search(constant char *pattern, int n, int silent); /* * Move the cursor to start of prompt line before executing a command. * This looks nicer if the command takes a long time before * updating the screen. */ static void cmd_exec(void) { clear_attn(); clear_bot(); flush(); } /* * Indicate we are reading a multi-character command. */ static void set_mca(int action) { mca = action; clear_bot(); clear_cmd(); } /* * Indicate we are not reading a multi-character command. */ static void clear_mca(void) { if (mca == 0) return; mca = 0; } /* * Set up the display to start a new multi-character command. */ static void start_mca(int action, constant char *prompt, void *mlist, int cmdflags) { set_mca(action); cmd_putstr(prompt); set_mlist(mlist, cmdflags); } public int in_mca(void) { return (mca != 0 && mca != A_PREFIX); } /* * Set up the display to start a new search command. */ static void mca_search1(void) { int i; #if HILITE_SEARCH if (search_type & SRCH_FILTER) set_mca(A_FILTER); else #endif if (search_type & SRCH_FORW) set_mca(A_F_SEARCH); else set_mca(A_B_SEARCH); if (search_type & SRCH_NO_MATCH) cmd_putstr("Non-match "); if (search_type & SRCH_FIRST_FILE) cmd_putstr("First-file "); if (search_type & SRCH_PAST_EOF) cmd_putstr("EOF-ignore "); if (search_type & SRCH_NO_MOVE) cmd_putstr("Keep-pos "); if (search_type & SRCH_NO_REGEX) cmd_putstr("Regex-off "); if (search_type & SRCH_WRAP) cmd_putstr("Wrap "); for (i = 1; i <= NUM_SEARCH_COLORS; i++) { if (search_type & SRCH_SUBSEARCH(i)) { char buf[INT_STRLEN_BOUND(int)+8]; SNPRINTF1(buf, sizeof(buf), "Sub-%d ", i); cmd_putstr(buf); } } if (literal_char) cmd_putstr("Lit "); #if HILITE_SEARCH if (search_type & SRCH_FILTER) cmd_putstr("&/"); else #endif if (search_type & SRCH_FORW) cmd_putstr("/"); else cmd_putstr("?"); forw_prompt = 0; } static void mca_search(void) { mca_search1(); set_mlist(ml_search, 0); } /* * Set up the display to start a new toggle-option command. */ static void mca_opt_toggle(void) { int no_prompt = (optflag & OPT_NO_PROMPT); int flag = (optflag & ~OPT_NO_PROMPT); constant char *dash = (flag == OPT_NO_TOGGLE) ? "_" : "-"; set_mca(A_OPT_TOGGLE); cmd_putstr(dash); if (optgetname) cmd_putstr(dash); if (no_prompt) cmd_putstr("(P)"); switch (flag) { case OPT_UNSET: cmd_putstr("+"); break; case OPT_SET: cmd_putstr("!"); break; } forw_prompt = 0; set_mlist(NULL, 0); } /* * Execute a multicharacter command. */ static void exec_mca(void) { constant char *cbuf; char *p; cmd_exec(); cbuf = get_cmdbuf(); if (cbuf == NULL) return; switch (mca) { case A_F_SEARCH: case A_B_SEARCH: multi_search(cbuf, (int) number, 0); break; #if HILITE_SEARCH case A_FILTER: search_type ^= SRCH_NO_MATCH; set_filter_pattern(cbuf, search_type); break; #endif case A_FIRSTCMD: /* * Skip leading spaces or + signs in the string. */ while (*cbuf == '+' || *cbuf == ' ') cbuf++; if (every_first_cmd != NULL) free(every_first_cmd); if (*cbuf == '\0') every_first_cmd = NULL; else every_first_cmd = save(cbuf); break; case A_OPT_TOGGLE: toggle_option(curropt, opt_lower, cbuf, optflag); curropt = NULL; break; case A_F_BRACKET: match_brac(cbuf[0], cbuf[1], 1, (int) number); break; case A_B_BRACKET: match_brac(cbuf[1], cbuf[0], 0, (int) number); break; #if EXAMINE case A_EXAMINE: if (!secure_allow(SF_EXAMINE)) break; p = save(cbuf); edit_list(p); free(p); #if TAGS /* If tag structure is loaded then clean it up. */ cleantags(); #endif break; #endif #if SHELL_ESCAPE case A_SHELL: { /* * !! just uses whatever is in shellcmd. * Otherwise, copy cmdbuf to shellcmd, * expanding any special characters ("%" or "#"). */ constant char *done_msg = (*cbuf == CONTROL('P')) ? NULL : "!done"; if (done_msg == NULL) ++cbuf; if (*cbuf != '!') { if (shellcmd != NULL) free(shellcmd); shellcmd = fexpand(cbuf); } if (!secure_allow(SF_SHELL)) break; if (shellcmd == NULL) shellcmd = ""; lsystem(shellcmd, done_msg); break; } case A_PSHELL: { constant char *done_msg = (*cbuf == CONTROL('P')) ? NULL : "#done"; if (done_msg == NULL) ++cbuf; if (!secure_allow(SF_SHELL)) break; lsystem(pr_expand(cbuf), done_msg); break; } #endif #if PIPEC case A_PIPE: { constant char *done_msg = (*cbuf == CONTROL('P')) ? NULL : "|done"; if (done_msg == NULL) ++cbuf; if (!secure_allow(SF_PIPE)) break; (void) pipe_mark(pipec, cbuf); if (done_msg != NULL) error(done_msg, NULL_PARG); break; } #endif } } /* * Is a character an erase or kill char? */ static lbool is_erase_char(char c) { return (c == erase_char || c == erase2_char || c == kill_char); } /* * Is a character a carriage return or newline? */ static lbool is_newline_char(char c) { return (c == '\n' || c == '\r'); } /* * Handle the first char of an option (after the initial dash). */ static int mca_opt_first_char(char c) { int no_prompt = (optflag & OPT_NO_PROMPT); int flag = (optflag & ~OPT_NO_PROMPT); if (flag == OPT_NO_TOGGLE) { switch (c) { case '_': /* "__" = long option name. */ optgetname = TRUE; mca_opt_toggle(); return (MCA_MORE); } } else { switch (c) { case '+': /* "-+" = UNSET. */ optflag = no_prompt | ((flag == OPT_UNSET) ? OPT_TOGGLE : OPT_UNSET); mca_opt_toggle(); return (MCA_MORE); case '!': /* "-!" = SET */ optflag = no_prompt | ((flag == OPT_SET) ? OPT_TOGGLE : OPT_SET); mca_opt_toggle(); return (MCA_MORE); case CONTROL('P'): optflag ^= OPT_NO_PROMPT; mca_opt_toggle(); return (MCA_MORE); case '-': /* "--" = long option name. */ optgetname = TRUE; mca_opt_toggle(); return (MCA_MORE); } } /* Char was not handled here. */ return (NO_MCA); } /* * Add a char to a long option name. * See if we've got a match for an option name yet. * If so, display the complete name and stop * accepting chars until user hits RETURN. */ static int mca_opt_nonfirst_char(char c) { constant char *p; constant char *oname; lbool ambig; if (curropt != NULL) { /* * Already have a match for the name. * Don't accept anything but erase/kill. */ if (is_erase_char(c)) return (MCA_DONE); return (MCA_MORE); } /* * Add char to cmd buffer and try to match * the option name. */ if (cmd_char(c) == CC_QUIT) return (MCA_DONE); p = get_cmdbuf(); if (p == NULL) return (MCA_MORE); opt_lower = ASCII_IS_LOWER(p[0]); curropt = findopt_name(&p, &oname, &ambig); if (curropt != NULL) { /* * Got a match. * Remember the option and * display the full option name. */ cmd_reset(); mca_opt_toggle(); for (p = oname; *p != '\0'; p++) { c = *p; if (!opt_lower && ASCII_IS_LOWER(c)) c = ASCII_TO_UPPER(c); if (cmd_char(c) != CC_OK) return (MCA_DONE); } } else if (!ambig) { bell(); } return (MCA_MORE); } /* * Handle a char of an option toggle command. */ static int mca_opt_char(char c) { PARG parg; /* * This may be a short option (single char), * or one char of a long option name, * or one char of the option parameter. */ if (curropt == NULL && len_cmdbuf() == 0) { int ret = mca_opt_first_char(c); if (ret != NO_MCA) return (ret); } if (optgetname) { /* We're getting a long option name. */ if (!is_newline_char(c) && c != '=') return (mca_opt_nonfirst_char(c)); if (curropt == NULL) { parg.p_string = get_cmdbuf(); if (parg.p_string == NULL) return (MCA_MORE); error("There is no --%s option", &parg); return (MCA_DONE); } optgetname = FALSE; cmd_reset(); } else { if (is_erase_char(c)) return (NO_MCA); if (curropt != NULL) /* We're getting the option parameter. */ return (NO_MCA); curropt = findopt(c); if (curropt == NULL) { parg.p_string = propt(c); error("There is no %s option", &parg); return (MCA_DONE); } opt_lower = ASCII_IS_LOWER(c); } /* * If the option which was entered does not take a * parameter, toggle the option immediately, * so user doesn't have to hit RETURN. */ if ((optflag & ~OPT_NO_PROMPT) != OPT_TOGGLE || !opt_has_param(curropt)) { toggle_option(curropt, opt_lower, "", optflag); return (MCA_DONE); } /* * Display a prompt appropriate for the option parameter. */ start_mca(A_OPT_TOGGLE, opt_prompt(curropt), NULL, 0); return (MCA_MORE); } /* * Normalize search type. */ public int norm_search_type(int st) { /* WRAP and PAST_EOF are mutually exclusive. */ if ((st & (SRCH_PAST_EOF|SRCH_WRAP)) == (SRCH_PAST_EOF|SRCH_WRAP)) st ^= SRCH_PAST_EOF; return st; } /* * Handle a char of a search command. */ static int mca_search_char(char c) { int flag = 0; /* * Certain characters as the first char of * the pattern have special meaning: * ! Toggle the NO_MATCH flag * * Toggle the PAST_EOF flag * @ Toggle the FIRST_FILE flag */ if (len_cmdbuf() > 0 || literal_char) { literal_char = FALSE; return (NO_MCA); } switch (c) { case CONTROL('E'): /* ignore END of file */ case '*': if (mca != A_FILTER) flag = SRCH_PAST_EOF; search_type &= ~SRCH_WRAP; break; case CONTROL('F'): /* FIRST file */ case '@': if (mca != A_FILTER) flag = SRCH_FIRST_FILE; break; case CONTROL('K'): /* KEEP position */ if (mca != A_FILTER) flag = SRCH_NO_MOVE; break; case CONTROL('S'): { /* SUBSEARCH */ char buf[INT_STRLEN_BOUND(int)+24]; SNPRINTF1(buf, sizeof(buf), "Sub-pattern (1-%d):", NUM_SEARCH_COLORS); clear_bot(); cmd_putstr(buf); flush(); c = getcc(); if (c >= '1' && c <= '0'+NUM_SEARCH_COLORS) flag = SRCH_SUBSEARCH(c-'0'); else flag = -1; /* calls mca_search() below to repaint */ break; } case CONTROL('W'): /* WRAP around */ if (mca != A_FILTER) flag = SRCH_WRAP; break; case CONTROL('R'): /* Don't use REGULAR EXPRESSIONS */ flag = SRCH_NO_REGEX; break; case CONTROL('N'): /* NOT match */ case '!': flag = SRCH_NO_MATCH; break; case CONTROL('L'): literal_char = TRUE; flag = -1; break; } if (flag != 0) { if (flag != -1) search_type = norm_search_type(search_type ^ flag); mca_search(); return (MCA_MORE); } return (NO_MCA); } /* * Handle a character of a multi-character command. */ static int mca_char(char c) { int ret; switch (mca) { case 0: /* * We're not in a multicharacter command. */ return (NO_MCA); case A_PREFIX: /* * In the prefix of a command. * This not considered a multichar command * (even tho it uses cmdbuf, etc.). * It is handled in the commands() switch. */ return (NO_MCA); case A_DIGIT: /* * Entering digits of a number. * Terminated by a non-digit. */ if ((c >= '0' && c <= '9') || c == '.') break; switch (editchar(c, ECF_PEEK|ECF_NOHISTORY|ECF_NOCOMPLETE|ECF_NORIGHTLEFT)) { case A_NOACTION: /* * Ignore this char and get another one. */ return (MCA_MORE); case A_INVALID: /* * Not part of the number. * End the number and treat this char * as a normal command character. */ number = cmd_int(&fraction); clear_mca(); cmd_accept(); return (NO_MCA); } break; case A_OPT_TOGGLE: ret = mca_opt_char(c); if (ret != NO_MCA) return (ret); break; case A_F_SEARCH: case A_B_SEARCH: case A_FILTER: ret = mca_search_char(c); if (ret != NO_MCA) return (ret); break; default: /* Other multicharacter command. */ break; } /* * The multichar command is terminated by a newline. */ if (is_newline_char(c)) { /* * Execute the command. */ exec_mca(); return (MCA_DONE); } /* * Append the char to the command buffer. */ if (cmd_char(c) == CC_QUIT) /* * Abort the multi-char command. */ return (MCA_DONE); switch (mca) { case A_F_BRACKET: case A_B_BRACKET: if (len_cmdbuf() >= 2) { /* * Special case for the bracket-matching commands. * Execute the command after getting exactly two * characters from the user. */ exec_mca(); return (MCA_DONE); } break; case A_F_SEARCH: case A_B_SEARCH: if (incr_search) { /* Incremental search: do a search after every input char. */ int st = (search_type & (SRCH_FORW|SRCH_BACK|SRCH_NO_MATCH|SRCH_NO_REGEX|SRCH_NO_MOVE|SRCH_WRAP|SRCH_SUBSEARCH_ALL)); ssize_t save_updown; constant char *pattern = get_cmdbuf(); if (pattern == NULL) return (MCA_MORE); /* * Must save updown_match because mca_search * reinits it. That breaks history scrolling. * {{ This is ugly. mca_search probably shouldn't call set_mlist. }} */ save_updown = save_updown_match(); cmd_exec(); if (*pattern == '\0') { /* User has backspaced to an empty pattern. */ undo_search(1); } else { if (search(st | SRCH_INCR, pattern, 1) != 0) /* No match, invalid pattern, etc. */ undo_search(1); } /* Redraw the search prompt and search string. */ if (is_screen_trashed() || !full_screen) { clear(); repaint(); } mca_search1(); restore_updown_match(save_updown); cmd_repaint(NULL); } break; } /* * Need another character. */ return (MCA_MORE); } /* * Discard any buffered file data. */ static void clear_buffers(void) { if (!(ch_getflags() & CH_CANSEEK)) return; ch_flush(); clr_linenum(); #if HILITE_SEARCH clr_hilite(); #endif } public void screen_trashed_num(int trashed) { screen_trashed_value = trashed; } public void screen_trashed(void) { screen_trashed_num(1); } public int is_screen_trashed(void) { return screen_trashed_value; } /* * Make sure the screen is displayed. */ static void make_display(void) { /* * If not full_screen, we can't rely on scrolling to fill the screen. * We need to clear and repaint screen before any change. */ if (!full_screen && !(quit_if_one_screen && one_screen)) clear(); /* * If nothing is displayed yet, display starting from initial_scrpos. */ if (empty_screen()) { if (initial_scrpos.pos == NULL_POSITION) jump_loc(ch_zero(), 1); else jump_loc(initial_scrpos.pos, initial_scrpos.ln); } else if (is_screen_trashed() || !full_screen) { int save_top_scroll = top_scroll; int save_ignore_eoi = ignore_eoi; top_scroll = 1; ignore_eoi = 0; if (is_screen_trashed() == 2) { /* Special case used by ignore_eoi: re-open the input file * and jump to the end of the file. */ reopen_curr_ifile(); jump_forw(); } repaint(); top_scroll = save_top_scroll; ignore_eoi = save_ignore_eoi; } } /* * Display the appropriate prompt. */ static void prompt(void) { constant char *p; if (ungot != NULL && !ungot->ug_end_command) { /* * No prompt necessary if commands are from * ungotten chars rather than from the user. */ return; } /* * Make sure the screen is displayed. */ make_display(); bottompos = position(BOTTOM_PLUS_ONE); /* * If we've hit EOF on the last file and the -E flag is set, quit. */ if (get_quit_at_eof() == OPT_ONPLUS && eof_displayed() && !(ch_getflags() & CH_HELPFILE) && next_ifile(curr_ifile) == NULL_IFILE) quit(QUIT_OK); /* * If the entire file is displayed and the -F flag is set, quit. */ if (quit_if_one_screen && entire_file_displayed() && !(ch_getflags() & CH_HELPFILE) && next_ifile(curr_ifile) == NULL_IFILE) quit(QUIT_OK); quit_if_one_screen = FALSE; /* only get one chance at this */ #if MSDOS_COMPILER==WIN32C /* * In Win32, display the file name in the window title. */ if (!(ch_getflags() & CH_HELPFILE)) { WCHAR w[MAX_PATH+16]; p = pr_expand("Less?f - %f."); MultiByteToWideChar(less_acp, 0, p, -1, w, countof(w)); SetConsoleTitleW(w); } #endif /* * Select the proper prompt and display it. */ /* * If the previous action was a forward movement, * don't clear the bottom line of the display; * just print the prompt since the forward movement guarantees * that we're in the right position to display the prompt. * Clearing the line could cause a problem: for example, if the last * line displayed ended at the right screen edge without a newline, * then clearing would clear the last displayed line rather than * the prompt line. */ if (!forw_prompt) clear_bot(); clear_cmd(); forw_prompt = 0; p = pr_string(); #if HILITE_SEARCH if (is_filtering()) putstr("& "); #endif if (search_wrapped) { if (search_type & SRCH_BACK) error("Search hit top; continuing at bottom", NULL_PARG); else error("Search hit bottom; continuing at top", NULL_PARG); search_wrapped = FALSE; } #if OSC8_LINK if (osc8_uri != NULL) { PARG parg; parg.p_string = osc8_uri; error("Link: %s", &parg); free(osc8_uri); osc8_uri = NULL; } #endif if (p == NULL || *p == '\0') { at_enter(AT_NORMAL|AT_COLOR_PROMPT); putchr(':'); at_exit(); } else { #if MSDOS_COMPILER==WIN32C WCHAR w[MAX_PATH*2]; char a[MAX_PATH*2]; MultiByteToWideChar(less_acp, 0, p, -1, w, countof(w)); WideCharToMultiByte(utf_mode ? CP_UTF8 : GetConsoleOutputCP(), 0, w, -1, a, sizeof(a), NULL, NULL); p = a; #endif load_line(p); put_line(); } clear_eol(); } /* * Display the less version message. */ public void dispversion(void) { PARG parg; parg.p_string = version; error("less %s", &parg); } /* * Return a character to complete a partial command, if possible. */ static char getcc_end_command(void) { int ch; switch (mca) { case A_DIGIT: /* We have a number but no command. Treat as #g. */ return ('g'); case A_F_SEARCH: case A_B_SEARCH: case A_FILTER: /* We have "/string" but no newline. Add the \n. */ return ('\n'); default: /* Some other incomplete command. Let user complete it. */ if (ungot != NULL) return ('\0'); ch = getchr(); if (ch < 0) ch = '\0'; return (char) ch; } } /* * Get a command character from the ungotten stack. */ static char get_ungot(lbool *p_end_command) { struct ungot *ug = ungot; char c = ug->ug_char; if (p_end_command != NULL) *p_end_command = ug->ug_end_command; ungot = ug->ug_next; free(ug); return c; } /* * Delete all ungotten characters. */ public void getcc_clear(void) { while (ungot != NULL) (void) get_ungot(NULL); } /* * Get command character. * The character normally comes from the keyboard, * but may come from ungotten characters * (characters previously given to ungetcc or ungetsc). */ static char getccu(void) { int c = 0; while (c == 0 && !ABORT_SIGS()) { if (ungot == NULL) { /* Normal case: no ungotten chars. * Get char from the user. */ c = getchr(); if (c < 0) return ('\0'); } else { /* Ungotten chars available: * Take the top of stack (most recent). */ lbool end_command; c = get_ungot(&end_command); if (end_command) c = getcc_end_command(); } } return ((char) c); } /* * Get a command character, but if we receive the orig sequence, * convert it to the repl sequence. */ static char getcc_repl(char constant *orig, char constant *repl, char (*gr_getc)(void), void (*gr_ungetc)(char)) { char c; char keys[16]; size_t ki = 0; c = (*gr_getc)(); if (orig == NULL || orig[0] == '\0') return c; for (;;) { keys[ki] = c; if (c != orig[ki] || ki >= sizeof(keys)-1) { /* This is not orig we have been receiving. * If we have stashed chars in keys[], * unget them and return the first one. */ while (ki > 0) (*gr_ungetc)(keys[ki--]); return keys[0]; } if (orig[++ki] == '\0') { /* We've received the full orig sequence. * Return the repl sequence. */ ki = strlen(repl)-1; while (ki > 0) (*gr_ungetc)(repl[ki--]); return repl[0]; } /* We've received a partial orig sequence (ki chars of it). * Get next char and see if it continues to match orig. */ c = (*gr_getc)(); } } /* * Get command character. */ public char getcc(void) { /* Replace kent (keypad Enter) with a newline. */ return getcc_repl(kent, "\n", getccu, ungetcc); } /* * "Unget" a command character. * The next getcc() will return this character. */ public void ungetcc(char c) { struct ungot *ug = (struct ungot *) ecalloc(1, sizeof(struct ungot)); ug->ug_char = c; ug->ug_next = ungot; ungot = ug; } /* * "Unget" a command character. * If any other chars are already ungotten, put this one after those. */ static void ungetcc_back1(char c, lbool end_command) { struct ungot *ug = (struct ungot *) ecalloc(1, sizeof(struct ungot)); ug->ug_char = c; ug->ug_end_command = end_command; ug->ug_next = NULL; if (ungot == NULL) ungot = ug; else { struct ungot *pu; for (pu = ungot; pu->ug_next != NULL; pu = pu->ug_next) continue; pu->ug_next = ug; } } public void ungetcc_back(char c) { ungetcc_back1(c, FALSE); } public void ungetcc_end_command(void) { ungetcc_back1('\0', TRUE); } /* * Unget a whole string of command characters. * The next sequence of getcc()'s will return this string. */ public void ungetsc(constant char *s) { while (*s != '\0') ungetcc_back(*s++); } /* * Peek the next command character, without consuming it. */ public char peekcc(void) { char c = getcc(); ungetcc(c); return c; } /* * Search for a pattern, possibly in multiple files. * If SRCH_FIRST_FILE is set, begin searching at the first file. * If SRCH_PAST_EOF is set, continue the search thru multiple files. */ static void multi_search(constant char *pattern, int n, int silent) { int nomore; IFILE save_ifile; lbool changed_file; changed_file = FALSE; save_ifile = save_curr_ifile(); if ((search_type & (SRCH_FORW|SRCH_BACK)) == 0) search_type |= SRCH_FORW; if (search_type & SRCH_FIRST_FILE) { /* * Start at the first (or last) file * in the command line list. */ if (search_type & SRCH_FORW) nomore = edit_first(); else nomore = edit_last(); if (nomore) { unsave_ifile(save_ifile); return; } changed_file = TRUE; search_type &= ~SRCH_FIRST_FILE; } for (;;) { n = search(search_type, pattern, n); /* * The SRCH_NO_MOVE flag doesn't "stick": it gets cleared * after being used once. This allows "n" to work after * using a /@@ search. */ search_type &= ~SRCH_NO_MOVE; last_search_type = search_type; if (n == 0) { /* * Found it. */ unsave_ifile(save_ifile); return; } if (n < 0) /* * Some kind of error in the search. * Error message has been printed by search(). */ break; if ((search_type & SRCH_PAST_EOF) == 0) /* * We didn't find a match, but we're * supposed to search only one file. */ break; /* * Move on to the next file. */ if (search_type & SRCH_FORW) nomore = edit_next(1); else nomore = edit_prev(1); if (nomore) break; changed_file = TRUE; } /* * Didn't find it. * Print an error message if we haven't already. */ if (n > 0 && !silent) error("Pattern not found", NULL_PARG); if (changed_file) { /* * Restore the file we were originally viewing. */ reedit_ifile(save_ifile); } else { unsave_ifile(save_ifile); } } /* * Forward forever, or until a highlighted line appears. */ static int forw_loop(int until_hilite) { POSITION curr_len; if (ch_getflags() & CH_HELPFILE) return (A_NOACTION); cmd_exec(); jump_forw_buffered(); curr_len = ch_length(); highest_hilite = until_hilite ? curr_len : NULL_POSITION; ignore_eoi = 1; while (!sigs) { if (until_hilite && highest_hilite > curr_len) { bell(); break; } make_display(); forward(1, 0, 0); } ignore_eoi = 0; ch_set_eof(); /* * This gets us back in "F mode" after processing * a non-abort signal (e.g. window-change). */ if (sigs && !ABORT_SIGS()) return (until_hilite ? A_F_UNTIL_HILITE : A_F_FOREVER); return (A_NOACTION); } /* * Main command processor. * Accept and execute commands until a quit command. */ public void commands(void) { char c; int action; constant char *cbuf; constant char *msg; int newaction; int save_jump_sline; int save_search_type; constant char *extra; PARG parg; IFILE old_ifile; IFILE new_ifile; constant char *tagfile; search_type = SRCH_FORW; wscroll = (sc_height + 1) / 2; newaction = A_NOACTION; for (;;) { clear_mca(); cmd_accept(); number = 0; curropt = NULL; /* * See if any signals need processing. */ if (sigs) { psignals(); if (quitting) quit(QUIT_SAVED_STATUS); } /* * See if window size changed, for systems that don't * generate SIGWINCH. */ check_winch(); /* * Display prompt and accept a character. */ cmd_reset(); prompt(); if (sigs) continue; if (newaction == A_NOACTION) c = getcc(); again: if (sigs) continue; if (newaction != A_NOACTION) { action = newaction; newaction = A_NOACTION; } else { /* * If we are in a multicharacter command, call mca_char. * Otherwise we call fcmd_decode to determine the * action to be performed. */ if (mca) switch (mca_char(c)) { case MCA_MORE: /* * Need another character. */ c = getcc(); goto again; case MCA_DONE: /* * Command has been handled by mca_char. * Start clean with a prompt. */ continue; case NO_MCA: /* * Not a multi-char command * (at least, not anymore). */ break; } /* * Decode the command character and decide what to do. */ extra = NULL; if (mca) { /* * We're in a multichar command. * Add the character to the command buffer * and display it on the screen. * If the user backspaces past the start * of the line, abort the command. */ if (cmd_char(c) == CC_QUIT || len_cmdbuf() == 0) continue; cbuf = get_cmdbuf(); if (cbuf == NULL) continue; action = fcmd_decode(cbuf, &extra); } else { /* * Don't use cmd_char if we're starting fresh * at the beginning of a command, because we * don't want to echo the command until we know * it is a multichar command. We also don't * want erase_char/kill_char to be treated * as line editing characters. */ constant char tbuf[2] = { c, '\0' }; action = fcmd_decode(tbuf, &extra); } /* * If an "extra" string was returned, * process it as a string of command characters. */ if (extra != NULL) ungetsc(extra); } /* * Clear the cmdbuf string. * (But not if we're in the prefix of a command, * because the partial command string is kept there.) */ if (action != A_PREFIX) cmd_reset(); switch (action) { case A_DIGIT: /* * First digit of a number. */ start_mca(A_DIGIT, ":", NULL, CF_QUIT_ON_ERASE); goto again; case A_F_WINDOW: /* * Forward one window (and set the window size). */ if (number > 0) swindow = (int) number; /* FALLTHRU */ case A_F_SCREEN: /* * Forward one screen. */ if (number <= 0) number = get_swindow(); cmd_exec(); if (show_attn) set_attnpos(bottompos); forward((int) number, 0, 1); break; case A_B_WINDOW: /* * Backward one window (and set the window size). */ if (number > 0) swindow = (int) number; /* FALLTHRU */ case A_B_SCREEN: /* * Backward one screen. */ if (number <= 0) number = get_swindow(); cmd_exec(); backward((int) number, 0, 1); break; case A_F_LINE: /* * Forward N (default 1) line. */ if (number <= 0) number = 1; cmd_exec(); if (show_attn == OPT_ONPLUS && number > 1) set_attnpos(bottompos); forward((int) number, 0, 0); break; case A_B_LINE: /* * Backward N (default 1) line. */ if (number <= 0) number = 1; cmd_exec(); backward((int) number, 0, 0); break; case A_F_MOUSE: /* * Forward wheel_lines lines. */ cmd_exec(); forward(wheel_lines, 0, 0); break; case A_B_MOUSE: /* * Backward wheel_lines lines. */ cmd_exec(); backward(wheel_lines, 0, 0); break; case A_FF_LINE: /* * Force forward N (default 1) line. */ if (number <= 0) number = 1; cmd_exec(); if (show_attn == OPT_ONPLUS && number > 1) set_attnpos(bottompos); forward((int) number, 1, 0); break; case A_BF_LINE: /* * Force backward N (default 1) line. */ if (number <= 0) number = 1; cmd_exec(); backward((int) number, 1, 0); break; case A_FF_SCREEN: /* * Force forward one screen. */ if (number <= 0) number = get_swindow(); cmd_exec(); if (show_attn == OPT_ONPLUS) set_attnpos(bottompos); forward((int) number, 1, 0); break; case A_F_FOREVER: /* * Forward forever, ignoring EOF. */ if (show_attn) set_attnpos(bottompos); newaction = forw_loop(0); break; case A_F_UNTIL_HILITE: newaction = forw_loop(1); break; case A_F_SCROLL: /* * Forward N lines * (default same as last 'd' or 'u' command). */ if (number > 0) wscroll = (int) number; cmd_exec(); if (show_attn == OPT_ONPLUS) set_attnpos(bottompos); forward(wscroll, 0, 0); break; case A_B_SCROLL: /* * Forward N lines * (default same as last 'd' or 'u' command). */ if (number > 0) wscroll = (int) number; cmd_exec(); backward(wscroll, 0, 0); break; case A_FREPAINT: /* * Flush buffers, then repaint screen. * Don't flush the buffers on a pipe! */ clear_buffers(); /* FALLTHRU */ case A_REPAINT: /* * Repaint screen. */ cmd_exec(); repaint(); break; case A_GOLINE: /* * Go to line N, default beginning of file. * If N <= 0, ignore jump_sline in order to avoid * empty lines before the beginning of the file. */ save_jump_sline = jump_sline; if (number <= 0) { number = 1; jump_sline = 0; } cmd_exec(); jump_back(number); jump_sline = save_jump_sline; break; case A_PERCENT: /* * Go to a specified percentage into the file. */ if (number < 0) { number = 0; fraction = 0; } if (number > 100 || (number == 100 && fraction != 0)) { number = 100; fraction = 0; } cmd_exec(); jump_percent((int) number, fraction); break; case A_GOEND: /* * Go to line N, default end of file. */ cmd_exec(); if (number <= 0) jump_forw(); else jump_back(number); break; case A_GOEND_BUF: /* * Go to line N, default last buffered byte. */ cmd_exec(); if (number <= 0) jump_forw_buffered(); else jump_back(number); break; case A_GOPOS: /* * Go to a specified byte position in the file. */ cmd_exec(); if (number < 0) number = 0; jump_line_loc((POSITION) number, jump_sline); break; case A_STAT: /* * Print file name, etc. */ if (ch_getflags() & CH_HELPFILE) break; cmd_exec(); parg.p_string = eq_message(); error("%s", &parg); break; case A_VERSION: /* * Print version number. */ cmd_exec(); dispversion(); break; case A_QUIT: /* * Exit. */ if (curr_ifile != NULL_IFILE && ch_getflags() & CH_HELPFILE) { /* * Quit while viewing the help file * just means return to viewing the * previous file. */ hshift = save_hshift; bs_mode = save_bs_mode; proc_backspace = save_proc_backspace; if (edit_prev(1) == 0) break; } if (extra != NULL) quit(*extra); quit(QUIT_OK); break; /* * Define abbreviation for a commonly used sequence below. */ #define DO_SEARCH() \ if (number <= 0) number = 1; \ mca_search(); \ cmd_exec(); \ multi_search(NULL, (int) number, 0); case A_F_SEARCH: /* * Search forward for a pattern. * Get the first char of the pattern. */ search_type = SRCH_FORW | def_search_type; if (number <= 0) number = 1; literal_char = FALSE; mca_search(); c = getcc(); goto again; case A_B_SEARCH: /* * Search backward for a pattern. * Get the first char of the pattern. */ search_type = SRCH_BACK | def_search_type; if (number <= 0) number = 1; literal_char = FALSE; mca_search(); c = getcc(); goto again; case A_OSC8_F_SEARCH: #if OSC8_LINK cmd_exec(); if (number <= 0) number = 1; osc8_search(SRCH_FORW, NULL, number); #else error("Command not available", NULL_PARG); #endif break; case A_OSC8_B_SEARCH: #if OSC8_LINK cmd_exec(); if (number <= 0) number = 1; osc8_search(SRCH_BACK, NULL, number); #else error("Command not available", NULL_PARG); #endif break; case A_OSC8_OPEN: #if OSC8_LINK if (secure_allow(SF_OSC8_OPEN)) { cmd_exec(); osc8_open(); break; } #endif error("Command not available", NULL_PARG); break; case A_OSC8_JUMP: #if OSC8_LINK cmd_exec(); osc8_jump(); #else error("Command not available", NULL_PARG); #endif break; case A_FILTER: #if HILITE_SEARCH search_type = SRCH_FORW | SRCH_FILTER; literal_char = FALSE; mca_search(); c = getcc(); goto again; #else error("Command not available", NULL_PARG); break; #endif case A_AGAIN_SEARCH: /* * Repeat previous search. */ search_type = last_search_type; DO_SEARCH(); break; case A_T_AGAIN_SEARCH: /* * Repeat previous search, multiple files. */ search_type = last_search_type | SRCH_PAST_EOF; DO_SEARCH(); break; case A_REVERSE_SEARCH: /* * Repeat previous search, in reverse direction. */ save_search_type = search_type = last_search_type; search_type = SRCH_REVERSE(search_type); DO_SEARCH(); last_search_type = save_search_type; break; case A_T_REVERSE_SEARCH: /* * Repeat previous search, * multiple files in reverse direction. */ save_search_type = search_type = last_search_type; search_type = SRCH_REVERSE(search_type) | SRCH_PAST_EOF; DO_SEARCH(); last_search_type = save_search_type; break; case A_UNDO_SEARCH: case A_CLR_SEARCH: /* * Clear search string highlighting. */ undo_search(action == A_CLR_SEARCH); break; case A_HELP: /* * Help. */ if (ch_getflags() & CH_HELPFILE) break; cmd_exec(); save_hshift = hshift; hshift = 0; save_bs_mode = bs_mode; bs_mode = BS_SPECIAL; save_proc_backspace = proc_backspace; proc_backspace = OPT_OFF; (void) edit(FAKE_HELPFILE); break; case A_EXAMINE: /* * Edit a new file. Get the filename. */ #if EXAMINE if (secure_allow(SF_EXAMINE)) { start_mca(A_EXAMINE, "Examine: ", ml_examine, 0); c = getcc(); goto again; } #endif error("Command not available", NULL_PARG); break; case A_VISUAL: /* * Invoke an editor on the input file. */ #if EDITOR if (secure_allow(SF_EDIT)) { if (ch_getflags() & CH_HELPFILE) break; if (strcmp(get_filename(curr_ifile), "-") == 0) { error("Cannot edit standard input", NULL_PARG); break; } if (get_altfilename(curr_ifile) != NULL) { error("WARNING: This file was viewed via LESSOPEN", NULL_PARG); } start_mca(A_SHELL, "!", ml_shell, 0); /* * Expand the editor prototype string * and pass it to the system to execute. * (Make sure the screen is displayed so the * expansion of "+%lm" works.) */ make_display(); cmd_exec(); lsystem(pr_expand(editproto), NULL); break; } #endif error("Command not available", NULL_PARG); break; case A_NEXT_FILE: /* * Examine next file. */ #if TAGS if (ntags()) { error("No next file", NULL_PARG); break; } #endif if (number <= 0) number = 1; if (edit_next((int) number)) { if (get_quit_at_eof() && eof_displayed() && !(ch_getflags() & CH_HELPFILE)) quit(QUIT_OK); parg.p_string = (number > 1) ? "(N-th) " : ""; error("No %snext file", &parg); } break; case A_PREV_FILE: /* * Examine previous file. */ #if TAGS if (ntags()) { error("No previous file", NULL_PARG); break; } #endif if (number <= 0) number = 1; if (edit_prev((int) number)) { parg.p_string = (number > 1) ? "(N-th) " : ""; error("No %sprevious file", &parg); } break; case A_NEXT_TAG: /* * Jump to the next tag in the current tag list. */ #if TAGS if (number <= 0) number = 1; tagfile = nexttag((int) number); if (tagfile == NULL) { error("No next tag", NULL_PARG); break; } cmd_exec(); if (edit(tagfile) == 0) { POSITION pos = tagsearch(); if (pos != NULL_POSITION) jump_loc(pos, jump_sline); } #else error("Command not available", NULL_PARG); #endif break; case A_PREV_TAG: /* * Jump to the previous tag in the current tag list. */ #if TAGS if (number <= 0) number = 1; tagfile = prevtag((int) number); if (tagfile == NULL) { error("No previous tag", NULL_PARG); break; } cmd_exec(); if (edit(tagfile) == 0) { POSITION pos = tagsearch(); if (pos != NULL_POSITION) jump_loc(pos, jump_sline); } #else error("Command not available", NULL_PARG); #endif break; case A_INDEX_FILE: /* * Examine a particular file. */ if (number <= 0) number = 1; if (edit_index((int) number)) error("No such file", NULL_PARG); break; case A_REMOVE_FILE: /* * Remove a file from the input file list. */ if (ch_getflags() & CH_HELPFILE) break; old_ifile = curr_ifile; new_ifile = getoff_ifile(curr_ifile); if (new_ifile == NULL_IFILE) { bell(); break; } if (edit_ifile(new_ifile) != 0) { reedit_ifile(old_ifile); break; } del_ifile(old_ifile); break; case A_OPT_TOGGLE: /* * Change the setting of an option. */ optflag = OPT_TOGGLE; optgetname = FALSE; mca_opt_toggle(); c = getcc(); msg = opt_toggle_disallowed(c); if (msg != NULL) { error(msg, NULL_PARG); break; } goto again; case A_DISP_OPTION: /* * Report the setting of an option. */ optflag = OPT_NO_TOGGLE; optgetname = FALSE; mca_opt_toggle(); c = getcc(); goto again; case A_FIRSTCMD: /* * Set an initial command for new files. */ start_mca(A_FIRSTCMD, "+", NULL, 0); c = getcc(); goto again; case A_SHELL: case A_PSHELL: /* * Shell escape. */ #if SHELL_ESCAPE if (secure_allow(SF_SHELL)) { start_mca(action, (action == A_SHELL) ? "!" : "#", ml_shell, 0); c = getcc(); goto again; } #endif error("Command not available", NULL_PARG); break; case A_SETMARK: case A_SETMARKBOT: /* * Set a mark. */ if (ch_getflags() & CH_HELPFILE) break; start_mca(A_SETMARK, "set mark: ", NULL, 0); c = getcc(); if (is_erase_char(c) || is_newline_char(c)) break; setmark(c, action == A_SETMARKBOT ? BOTTOM : TOP); repaint(); break; case A_CLRMARK: /* * Clear a mark. */ start_mca(A_CLRMARK, "clear mark: ", NULL, 0); c = getcc(); if (is_erase_char(c) || is_newline_char(c)) break; clrmark(c); repaint(); break; case A_GOMARK: /* * Jump to a marked position. */ start_mca(A_GOMARK, "goto mark: ", NULL, 0); c = getcc(); if (is_erase_char(c) || is_newline_char(c)) break; cmd_exec(); gomark(c); break; case A_PIPE: /* * Write part of the input to a pipe to a shell command. */ #if PIPEC if (secure_allow(SF_PIPE)) { start_mca(A_PIPE, "|mark: ", NULL, 0); c = getcc(); if (is_erase_char(c)) break; if (is_newline_char(c)) c = '.'; if (badmark(c)) break; pipec = c; start_mca(A_PIPE, "!", ml_shell, 0); c = getcc(); goto again; } #endif error("Command not available", NULL_PARG); break; case A_B_BRACKET: case A_F_BRACKET: start_mca(action, "Brackets: ", NULL, 0); c = getcc(); goto again; case A_LSHIFT: /* * Shift view left. */ if (number > 0) shift_count = (int) number; else number = (shift_count > 0) ? shift_count : sc_width / 2; if (number > hshift) number = hshift; pos_rehead(); hshift -= (int) number; screen_trashed(); break; case A_RSHIFT: /* * Shift view right. */ if (number > 0) shift_count = (int) number; else number = (shift_count > 0) ? shift_count : sc_width / 2; pos_rehead(); hshift += (int) number; screen_trashed(); break; case A_LLSHIFT: /* * Shift view left to margin. */ pos_rehead(); hshift = 0; screen_trashed(); break; case A_RRSHIFT: /* * Shift view right to view rightmost char on screen. */ pos_rehead(); hshift = rrshift(); screen_trashed(); break; case A_PREFIX: /* * The command is incomplete (more chars are needed). * Display the current char, so the user knows * what's going on, and get another character. */ if (mca != A_PREFIX) { cmd_reset(); start_mca(A_PREFIX, " ", NULL, CF_QUIT_ON_ERASE); (void) cmd_char(c); } c = getcc(); goto again; case A_NOACTION: break; default: bell(); break; } } } less-668/compose.uni0000444060175306017530000002535514700607665013576 0ustar marknmarkn/* Generated by "./mkutable -f2 Mn Me -- unicode/UnicodeData.txt" on Sun Sep 17 17:56:27 PDT 2023 */ { 0x0300, 0x036f }, /* Mn */ { 0x0483, 0x0487 }, /* Mn */ { 0x0488, 0x0489 }, /* Me */ { 0x0591, 0x05bd }, /* Mn */ { 0x05bf, 0x05bf }, /* Mn */ { 0x05c1, 0x05c2 }, /* Mn */ { 0x05c4, 0x05c5 }, /* Mn */ { 0x05c7, 0x05c7 }, /* Mn */ { 0x0610, 0x061a }, /* Mn */ { 0x064b, 0x065f }, /* Mn */ { 0x0670, 0x0670 }, /* Mn */ { 0x06d6, 0x06dc }, /* Mn */ { 0x06df, 0x06e4 }, /* Mn */ { 0x06e7, 0x06e8 }, /* Mn */ { 0x06ea, 0x06ed }, /* Mn */ { 0x0711, 0x0711 }, /* Mn */ { 0x0730, 0x074a }, /* Mn */ { 0x07a6, 0x07b0 }, /* Mn */ { 0x07eb, 0x07f3 }, /* Mn */ { 0x07fd, 0x07fd }, /* Mn */ { 0x0816, 0x0819 }, /* Mn */ { 0x081b, 0x0823 }, /* Mn */ { 0x0825, 0x0827 }, /* Mn */ { 0x0829, 0x082d }, /* Mn */ { 0x0859, 0x085b }, /* Mn */ { 0x0898, 0x089f }, /* Mn */ { 0x08ca, 0x08e1 }, /* Mn */ { 0x08e3, 0x0902 }, /* Mn */ { 0x093a, 0x093a }, /* Mn */ { 0x093c, 0x093c }, /* Mn */ { 0x0941, 0x0948 }, /* Mn */ { 0x094d, 0x094d }, /* Mn */ { 0x0951, 0x0957 }, /* Mn */ { 0x0962, 0x0963 }, /* Mn */ { 0x0981, 0x0981 }, /* Mn */ { 0x09bc, 0x09bc }, /* Mn */ { 0x09c1, 0x09c4 }, /* Mn */ { 0x09cd, 0x09cd }, /* Mn */ { 0x09e2, 0x09e3 }, /* Mn */ { 0x09fe, 0x09fe }, /* Mn */ { 0x0a01, 0x0a02 }, /* Mn */ { 0x0a3c, 0x0a3c }, /* Mn */ { 0x0a41, 0x0a42 }, /* Mn */ { 0x0a47, 0x0a48 }, /* Mn */ { 0x0a4b, 0x0a4d }, /* Mn */ { 0x0a51, 0x0a51 }, /* Mn */ { 0x0a70, 0x0a71 }, /* Mn */ { 0x0a75, 0x0a75 }, /* Mn */ { 0x0a81, 0x0a82 }, /* Mn */ { 0x0abc, 0x0abc }, /* Mn */ { 0x0ac1, 0x0ac5 }, /* Mn */ { 0x0ac7, 0x0ac8 }, /* Mn */ { 0x0acd, 0x0acd }, /* Mn */ { 0x0ae2, 0x0ae3 }, /* Mn */ { 0x0afa, 0x0aff }, /* Mn */ { 0x0b01, 0x0b01 }, /* Mn */ { 0x0b3c, 0x0b3c }, /* Mn */ { 0x0b3f, 0x0b3f }, /* Mn */ { 0x0b41, 0x0b44 }, /* Mn */ { 0x0b4d, 0x0b4d }, /* Mn */ { 0x0b55, 0x0b56 }, /* Mn */ { 0x0b62, 0x0b63 }, /* Mn */ { 0x0b82, 0x0b82 }, /* Mn */ { 0x0bc0, 0x0bc0 }, /* Mn */ { 0x0bcd, 0x0bcd }, /* Mn */ { 0x0c00, 0x0c00 }, /* Mn */ { 0x0c04, 0x0c04 }, /* Mn */ { 0x0c3c, 0x0c3c }, /* Mn */ { 0x0c3e, 0x0c40 }, /* Mn */ { 0x0c46, 0x0c48 }, /* Mn */ { 0x0c4a, 0x0c4d }, /* Mn */ { 0x0c55, 0x0c56 }, /* Mn */ { 0x0c62, 0x0c63 }, /* Mn */ { 0x0c81, 0x0c81 }, /* Mn */ { 0x0cbc, 0x0cbc }, /* Mn */ { 0x0cbf, 0x0cbf }, /* Mn */ { 0x0cc6, 0x0cc6 }, /* Mn */ { 0x0ccc, 0x0ccd }, /* Mn */ { 0x0ce2, 0x0ce3 }, /* Mn */ { 0x0d00, 0x0d01 }, /* Mn */ { 0x0d3b, 0x0d3c }, /* Mn */ { 0x0d41, 0x0d44 }, /* Mn */ { 0x0d4d, 0x0d4d }, /* Mn */ { 0x0d62, 0x0d63 }, /* Mn */ { 0x0d81, 0x0d81 }, /* Mn */ { 0x0dca, 0x0dca }, /* Mn */ { 0x0dd2, 0x0dd4 }, /* Mn */ { 0x0dd6, 0x0dd6 }, /* Mn */ { 0x0e31, 0x0e31 }, /* Mn */ { 0x0e34, 0x0e3a }, /* Mn */ { 0x0e47, 0x0e4e }, /* Mn */ { 0x0eb1, 0x0eb1 }, /* Mn */ { 0x0eb4, 0x0ebc }, /* Mn */ { 0x0ec8, 0x0ece }, /* Mn */ { 0x0f18, 0x0f19 }, /* Mn */ { 0x0f35, 0x0f35 }, /* Mn */ { 0x0f37, 0x0f37 }, /* Mn */ { 0x0f39, 0x0f39 }, /* Mn */ { 0x0f71, 0x0f7e }, /* Mn */ { 0x0f80, 0x0f84 }, /* Mn */ { 0x0f86, 0x0f87 }, /* Mn */ { 0x0f8d, 0x0f97 }, /* Mn */ { 0x0f99, 0x0fbc }, /* Mn */ { 0x0fc6, 0x0fc6 }, /* Mn */ { 0x102d, 0x1030 }, /* Mn */ { 0x1032, 0x1037 }, /* Mn */ { 0x1039, 0x103a }, /* Mn */ { 0x103d, 0x103e }, /* Mn */ { 0x1058, 0x1059 }, /* Mn */ { 0x105e, 0x1060 }, /* Mn */ { 0x1071, 0x1074 }, /* Mn */ { 0x1082, 0x1082 }, /* Mn */ { 0x1085, 0x1086 }, /* Mn */ { 0x108d, 0x108d }, /* Mn */ { 0x109d, 0x109d }, /* Mn */ { 0x1160, 0x11ff }, /* Mn */ { 0x135d, 0x135f }, /* Mn */ { 0x1712, 0x1714 }, /* Mn */ { 0x1732, 0x1733 }, /* Mn */ { 0x1752, 0x1753 }, /* Mn */ { 0x1772, 0x1773 }, /* Mn */ { 0x17b4, 0x17b5 }, /* Mn */ { 0x17b7, 0x17bd }, /* Mn */ { 0x17c6, 0x17c6 }, /* Mn */ { 0x17c9, 0x17d3 }, /* Mn */ { 0x17dd, 0x17dd }, /* Mn */ { 0x180b, 0x180d }, /* Mn */ { 0x180f, 0x180f }, /* Mn */ { 0x1885, 0x1886 }, /* Mn */ { 0x18a9, 0x18a9 }, /* Mn */ { 0x1920, 0x1922 }, /* Mn */ { 0x1927, 0x1928 }, /* Mn */ { 0x1932, 0x1932 }, /* Mn */ { 0x1939, 0x193b }, /* Mn */ { 0x1a17, 0x1a18 }, /* Mn */ { 0x1a1b, 0x1a1b }, /* Mn */ { 0x1a56, 0x1a56 }, /* Mn */ { 0x1a58, 0x1a5e }, /* Mn */ { 0x1a60, 0x1a60 }, /* Mn */ { 0x1a62, 0x1a62 }, /* Mn */ { 0x1a65, 0x1a6c }, /* Mn */ { 0x1a73, 0x1a7c }, /* Mn */ { 0x1a7f, 0x1a7f }, /* Mn */ { 0x1ab0, 0x1abd }, /* Mn */ { 0x1abe, 0x1abe }, /* Me */ { 0x1abf, 0x1ace }, /* Mn */ { 0x1b00, 0x1b03 }, /* Mn */ { 0x1b34, 0x1b34 }, /* Mn */ { 0x1b36, 0x1b3a }, /* Mn */ { 0x1b3c, 0x1b3c }, /* Mn */ { 0x1b42, 0x1b42 }, /* Mn */ { 0x1b6b, 0x1b73 }, /* Mn */ { 0x1b80, 0x1b81 }, /* Mn */ { 0x1ba2, 0x1ba5 }, /* Mn */ { 0x1ba8, 0x1ba9 }, /* Mn */ { 0x1bab, 0x1bad }, /* Mn */ { 0x1be6, 0x1be6 }, /* Mn */ { 0x1be8, 0x1be9 }, /* Mn */ { 0x1bed, 0x1bed }, /* Mn */ { 0x1bef, 0x1bf1 }, /* Mn */ { 0x1c2c, 0x1c33 }, /* Mn */ { 0x1c36, 0x1c37 }, /* Mn */ { 0x1cd0, 0x1cd2 }, /* Mn */ { 0x1cd4, 0x1ce0 }, /* Mn */ { 0x1ce2, 0x1ce8 }, /* Mn */ { 0x1ced, 0x1ced }, /* Mn */ { 0x1cf4, 0x1cf4 }, /* Mn */ { 0x1cf8, 0x1cf9 }, /* Mn */ { 0x1dc0, 0x1dff }, /* Mn */ { 0x20d0, 0x20dc }, /* Mn */ { 0x20dd, 0x20e0 }, /* Me */ { 0x20e1, 0x20e1 }, /* Mn */ { 0x20e2, 0x20e4 }, /* Me */ { 0x20e5, 0x20f0 }, /* Mn */ { 0x2cef, 0x2cf1 }, /* Mn */ { 0x2d7f, 0x2d7f }, /* Mn */ { 0x2de0, 0x2dff }, /* Mn */ { 0x302a, 0x302d }, /* Mn */ { 0x3099, 0x309a }, /* Mn */ { 0xa66f, 0xa66f }, /* Mn */ { 0xa670, 0xa672 }, /* Me */ { 0xa674, 0xa67d }, /* Mn */ { 0xa69e, 0xa69f }, /* Mn */ { 0xa6f0, 0xa6f1 }, /* Mn */ { 0xa802, 0xa802 }, /* Mn */ { 0xa806, 0xa806 }, /* Mn */ { 0xa80b, 0xa80b }, /* Mn */ { 0xa825, 0xa826 }, /* Mn */ { 0xa82c, 0xa82c }, /* Mn */ { 0xa8c4, 0xa8c5 }, /* Mn */ { 0xa8e0, 0xa8f1 }, /* Mn */ { 0xa8ff, 0xa8ff }, /* Mn */ { 0xa926, 0xa92d }, /* Mn */ { 0xa947, 0xa951 }, /* Mn */ { 0xa980, 0xa982 }, /* Mn */ { 0xa9b3, 0xa9b3 }, /* Mn */ { 0xa9b6, 0xa9b9 }, /* Mn */ { 0xa9bc, 0xa9bd }, /* Mn */ { 0xa9e5, 0xa9e5 }, /* Mn */ { 0xaa29, 0xaa2e }, /* Mn */ { 0xaa31, 0xaa32 }, /* Mn */ { 0xaa35, 0xaa36 }, /* Mn */ { 0xaa43, 0xaa43 }, /* Mn */ { 0xaa4c, 0xaa4c }, /* Mn */ { 0xaa7c, 0xaa7c }, /* Mn */ { 0xaab0, 0xaab0 }, /* Mn */ { 0xaab2, 0xaab4 }, /* Mn */ { 0xaab7, 0xaab8 }, /* Mn */ { 0xaabe, 0xaabf }, /* Mn */ { 0xaac1, 0xaac1 }, /* Mn */ { 0xaaec, 0xaaed }, /* Mn */ { 0xaaf6, 0xaaf6 }, /* Mn */ { 0xabe5, 0xabe5 }, /* Mn */ { 0xabe8, 0xabe8 }, /* Mn */ { 0xabed, 0xabed }, /* Mn */ { 0xd7b0, 0xd7c6 }, /* Mn */ { 0xd7cb, 0xd7fb }, /* Mn */ { 0xfb1e, 0xfb1e }, /* Mn */ { 0xfe00, 0xfe0f }, /* Mn */ { 0xfe20, 0xfe2f }, /* Mn */ { 0x101fd, 0x101fd }, /* Mn */ { 0x102e0, 0x102e0 }, /* Mn */ { 0x10376, 0x1037a }, /* Mn */ { 0x10a01, 0x10a03 }, /* Mn */ { 0x10a05, 0x10a06 }, /* Mn */ { 0x10a0c, 0x10a0f }, /* Mn */ { 0x10a38, 0x10a3a }, /* Mn */ { 0x10a3f, 0x10a3f }, /* Mn */ { 0x10ae5, 0x10ae6 }, /* Mn */ { 0x10d24, 0x10d27 }, /* Mn */ { 0x10eab, 0x10eac }, /* Mn */ { 0x10efd, 0x10eff }, /* Mn */ { 0x10f46, 0x10f50 }, /* Mn */ { 0x10f82, 0x10f85 }, /* Mn */ { 0x11001, 0x11001 }, /* Mn */ { 0x11038, 0x11046 }, /* Mn */ { 0x11070, 0x11070 }, /* Mn */ { 0x11073, 0x11074 }, /* Mn */ { 0x1107f, 0x11081 }, /* Mn */ { 0x110b3, 0x110b6 }, /* Mn */ { 0x110b9, 0x110ba }, /* Mn */ { 0x110c2, 0x110c2 }, /* Mn */ { 0x11100, 0x11102 }, /* Mn */ { 0x11127, 0x1112b }, /* Mn */ { 0x1112d, 0x11134 }, /* Mn */ { 0x11173, 0x11173 }, /* Mn */ { 0x11180, 0x11181 }, /* Mn */ { 0x111b6, 0x111be }, /* Mn */ { 0x111c9, 0x111cc }, /* Mn */ { 0x111cf, 0x111cf }, /* Mn */ { 0x1122f, 0x11231 }, /* Mn */ { 0x11234, 0x11234 }, /* Mn */ { 0x11236, 0x11237 }, /* Mn */ { 0x1123e, 0x1123e }, /* Mn */ { 0x11241, 0x11241 }, /* Mn */ { 0x112df, 0x112df }, /* Mn */ { 0x112e3, 0x112ea }, /* Mn */ { 0x11300, 0x11301 }, /* Mn */ { 0x1133b, 0x1133c }, /* Mn */ { 0x11340, 0x11340 }, /* Mn */ { 0x11366, 0x1136c }, /* Mn */ { 0x11370, 0x11374 }, /* Mn */ { 0x11438, 0x1143f }, /* Mn */ { 0x11442, 0x11444 }, /* Mn */ { 0x11446, 0x11446 }, /* Mn */ { 0x1145e, 0x1145e }, /* Mn */ { 0x114b3, 0x114b8 }, /* Mn */ { 0x114ba, 0x114ba }, /* Mn */ { 0x114bf, 0x114c0 }, /* Mn */ { 0x114c2, 0x114c3 }, /* Mn */ { 0x115b2, 0x115b5 }, /* Mn */ { 0x115bc, 0x115bd }, /* Mn */ { 0x115bf, 0x115c0 }, /* Mn */ { 0x115dc, 0x115dd }, /* Mn */ { 0x11633, 0x1163a }, /* Mn */ { 0x1163d, 0x1163d }, /* Mn */ { 0x1163f, 0x11640 }, /* Mn */ { 0x116ab, 0x116ab }, /* Mn */ { 0x116ad, 0x116ad }, /* Mn */ { 0x116b0, 0x116b5 }, /* Mn */ { 0x116b7, 0x116b7 }, /* Mn */ { 0x1171d, 0x1171f }, /* Mn */ { 0x11722, 0x11725 }, /* Mn */ { 0x11727, 0x1172b }, /* Mn */ { 0x1182f, 0x11837 }, /* Mn */ { 0x11839, 0x1183a }, /* Mn */ { 0x1193b, 0x1193c }, /* Mn */ { 0x1193e, 0x1193e }, /* Mn */ { 0x11943, 0x11943 }, /* Mn */ { 0x119d4, 0x119d7 }, /* Mn */ { 0x119da, 0x119db }, /* Mn */ { 0x119e0, 0x119e0 }, /* Mn */ { 0x11a01, 0x11a0a }, /* Mn */ { 0x11a33, 0x11a38 }, /* Mn */ { 0x11a3b, 0x11a3e }, /* Mn */ { 0x11a47, 0x11a47 }, /* Mn */ { 0x11a51, 0x11a56 }, /* Mn */ { 0x11a59, 0x11a5b }, /* Mn */ { 0x11a8a, 0x11a96 }, /* Mn */ { 0x11a98, 0x11a99 }, /* Mn */ { 0x11c30, 0x11c36 }, /* Mn */ { 0x11c38, 0x11c3d }, /* Mn */ { 0x11c3f, 0x11c3f }, /* Mn */ { 0x11c92, 0x11ca7 }, /* Mn */ { 0x11caa, 0x11cb0 }, /* Mn */ { 0x11cb2, 0x11cb3 }, /* Mn */ { 0x11cb5, 0x11cb6 }, /* Mn */ { 0x11d31, 0x11d36 }, /* Mn */ { 0x11d3a, 0x11d3a }, /* Mn */ { 0x11d3c, 0x11d3d }, /* Mn */ { 0x11d3f, 0x11d45 }, /* Mn */ { 0x11d47, 0x11d47 }, /* Mn */ { 0x11d90, 0x11d91 }, /* Mn */ { 0x11d95, 0x11d95 }, /* Mn */ { 0x11d97, 0x11d97 }, /* Mn */ { 0x11ef3, 0x11ef4 }, /* Mn */ { 0x11f00, 0x11f01 }, /* Mn */ { 0x11f36, 0x11f3a }, /* Mn */ { 0x11f40, 0x11f40 }, /* Mn */ { 0x11f42, 0x11f42 }, /* Mn */ { 0x13440, 0x13440 }, /* Mn */ { 0x13447, 0x13455 }, /* Mn */ { 0x16af0, 0x16af4 }, /* Mn */ { 0x16b30, 0x16b36 }, /* Mn */ { 0x16f4f, 0x16f4f }, /* Mn */ { 0x16f8f, 0x16f92 }, /* Mn */ { 0x16fe4, 0x16fe4 }, /* Mn */ { 0x1bc9d, 0x1bc9e }, /* Mn */ { 0x1cf00, 0x1cf2d }, /* Mn */ { 0x1cf30, 0x1cf46 }, /* Mn */ { 0x1d167, 0x1d169 }, /* Mn */ { 0x1d17b, 0x1d182 }, /* Mn */ { 0x1d185, 0x1d18b }, /* Mn */ { 0x1d1aa, 0x1d1ad }, /* Mn */ { 0x1d242, 0x1d244 }, /* Mn */ { 0x1da00, 0x1da36 }, /* Mn */ { 0x1da3b, 0x1da6c }, /* Mn */ { 0x1da75, 0x1da75 }, /* Mn */ { 0x1da84, 0x1da84 }, /* Mn */ { 0x1da9b, 0x1da9f }, /* Mn */ { 0x1daa1, 0x1daaf }, /* Mn */ { 0x1e000, 0x1e006 }, /* Mn */ { 0x1e008, 0x1e018 }, /* Mn */ { 0x1e01b, 0x1e021 }, /* Mn */ { 0x1e023, 0x1e024 }, /* Mn */ { 0x1e026, 0x1e02a }, /* Mn */ { 0x1e08f, 0x1e08f }, /* Mn */ { 0x1e130, 0x1e136 }, /* Mn */ { 0x1e2ae, 0x1e2ae }, /* Mn */ { 0x1e2ec, 0x1e2ef }, /* Mn */ { 0x1e4ec, 0x1e4ef }, /* Mn */ { 0x1e8d0, 0x1e8d6 }, /* Mn */ { 0x1e944, 0x1e94a }, /* Mn */ { 0xe0100, 0xe01ef }, /* Mn */ less-668/configure0000755060175306017530000061111514700607726013316 0ustar marknmarkn#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.72 for less 1. # # # Copyright (C) 1992-1996, 1998-2017, 2020-2023 Free Software Foundation, # Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case e in #( e) case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac ;; esac fi # Reset variables that may have inherited troublesome values from # the environment. # IFS needs to be set, to space, tab, and newline, in precisely that order. # (If _AS_PATH_WALK were called with IFS unset, it would have the # side effect of setting IFS to empty, thus disabling word splitting.) # Quoting is to prevent editors from complaining about space-tab. as_nl=' ' export as_nl IFS=" "" $as_nl" PS1='$ ' PS2='> ' PS4='+ ' # Ensure predictable behavior from utilities with locale-dependent output. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # We cannot yet rely on "unset" to work, but we need these variables # to be unset--not just set to an empty or harmless value--now, to # avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct # also avoids known problems related to "unset" and subshell syntax # in other old shells (e.g. bash 2.01 and pdksh 5.2.14). for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH do eval test \${$as_var+y} \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done # Ensure that fds 0, 1, and 2 are open. if (exec 3>&0) 2>/dev/null; then :; else exec 0&1) 2>/dev/null; then :; else exec 1>/dev/null; fi if (exec 3>&2) ; then :; else exec 2>/dev/null; fi # The user is always right. if ${PATH_SEPARATOR+false} :; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac test -r "$as_dir$0" && as_myself=$as_dir$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as 'sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed 'exec'. printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test \${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case e in #( e) case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ) then : else case e in #( e) exitcode=1; echo positional parameters were not saved. ;; esac fi test x\$exitcode = x0 || exit 1 blah=\$(echo \$(echo blah)) test x\"\$blah\" = xblah || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1" if (eval "$as_required") 2>/dev/null then : as_have_required=yes else case e in #( e) as_have_required=no ;; esac fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null then : else case e in #( e) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && as_run=a "$as_shell" -c "$as_bourne_compatible""$as_required" 2>/dev/null then : CONFIG_SHELL=$as_shell as_have_required=yes if as_run=a "$as_shell" -c "$as_bourne_compatible""$as_suggested" 2>/dev/null then : break 2 fi fi done;; esac as_found=false done IFS=$as_save_IFS if $as_found then : else case e in #( e) if { test -f "$SHELL" || test -f "$SHELL.exe"; } && as_run=a "$SHELL" -c "$as_bourne_compatible""$as_required" 2>/dev/null then : CONFIG_SHELL=$SHELL as_have_required=yes fi ;; esac fi if test "x$CONFIG_SHELL" != x then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed 'exec'. printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno then : printf "%s\n" "$0: This script requires a shell more modern than all" printf "%s\n" "$0: the shells that I found on your system." if test ${ZSH_VERSION+y} ; then printf "%s\n" "$0: In particular, zsh $ZSH_VERSION has bugs and should" printf "%s\n" "$0: be upgraded to zsh 4.3.4 or later." else printf "%s\n" "$0: Please tell bug-autoconf@gnu.org about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi ;; esac fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null then : eval 'as_fn_append () { eval $1+=\$2 }' else case e in #( e) as_fn_append () { eval $1=\$$1\$2 } ;; esac fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null then : eval 'as_fn_arith () { as_val=$(( $* )) }' else case e in #( e) as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } ;; esac fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi printf "%s\n" "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' t clear :clear s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { printf "%s\n" "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } # Determine whether it's possible to make 'echo' print without a newline. # These variables are no longer used directly by Autoconf, but are AC_SUBSTed # for compatibility with existing Makefiles. ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac # For backward compatibility with old third-party macros, we provide # the shell variables $as_echo and $as_echo_n. New code should use # AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively. as_echo='printf %s\n' as_echo_n='printf %s' rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both 'ln -s file dir' and 'ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; 'ln -s' creates a wrapper executable. # In both cases, we have to default to 'cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_sed_cpp="y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g" as_tr_cpp="eval sed '$as_sed_cpp'" # deprecated # Sed expression to map a string onto a valid variable name. as_sed_sh="y%*+%pp%;s%[^_$as_cr_alnum]%_%g" as_tr_sh="eval sed '$as_sed_sh'" # deprecated test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='less' PACKAGE_TARNAME='less' PACKAGE_VERSION='1' PACKAGE_STRING='less 1' PACKAGE_BUGREPORT='' PACKAGE_URL='' ac_unique_file="forwback.c" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_STDIO_H # include #endif #ifdef HAVE_STDLIB_H # include #endif #ifdef HAVE_STRING_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_header_c_list= enable_year2038=no ac_subst_vars='LTLIBOBJS LIBOBJS REGEX_O SECURE_COMPILE INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir runstatedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_largefile with_secure with_regex with_editor enable_year2038 ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: '$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: '$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -runstatedir | --runstatedir | --runstatedi | --runstated \ | --runstate | --runstat | --runsta | --runst | --runs \ | --run | --ru | --r) ac_prev=runstatedir ;; -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ | --run=* | --ru=* | --r=*) runstatedir=$ac_optarg ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: '$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: '$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: '$ac_option' Try '$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: '$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. printf "%s\n" "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && printf "%s\n" "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: '$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but 'cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF 'configure' configures less 1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print 'checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for '--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or '..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, 'make install' will install all the files in '$ac_default_prefix/bin', '$ac_default_prefix/lib' etc. You can specify an installation prefix other than '$ac_default_prefix' using '--prefix', for instance '--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/less] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of less 1:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --disable-largefile omit support for large files --enable-year2038 support timestamps after 2038 Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-secure Compile in secure mode --with-regex=LIB select regular expression library (LIB is one of auto,none,gnu,pcre,pcre2,posix,regcmp,re_comp,regcomp,regcomp-local) [auto] --with-editor=PROGRAM use PROGRAM as the default editor [vi] Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory Use these variables to override the choices made by 'configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to the package provider. _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for configure.gnu first; this name is used for a wrapper for # Metaconfig's "Configure" on case-insensitive file systems. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else printf "%s\n" "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF less configure 1 generated by GNU Autoconf 2.72 Copyright (C) 2023 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest.beam if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext then : ac_retval=0 else case e in #( e) printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 ;; esac fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest.beam conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext } then : ac_retval=0 else case e in #( e) printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 ;; esac fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 printf %s "checking for $2... " >&6; } if eval test \${$3+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO" then : eval "$3=yes" else case e in #( e) eval "$3=no" ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi eval ac_res=\$$3 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_check_type LINENO TYPE VAR INCLUDES # ------------------------------------------- # Tests whether TYPE exists after having included INCLUDES, setting cache # variable VAR accordingly. ac_fn_c_check_type () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 printf %s "checking for $2... " >&6; } if eval test \${$3+y} then : printf %s "(cached) " >&6 else case e in #( e) eval "$3=no" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main (void) { if (sizeof ($2)) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main (void) { if (sizeof (($2))) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : else case e in #( e) eval "$3=yes" ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi eval ac_res=\$$3 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_type # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 printf %s "checking for $2... " >&6; } if eval test \${$3+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (void); below. */ #include #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (void); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main (void) { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : eval "$3=yes" else case e in #( e) eval "$3=no" ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext ;; esac fi eval ac_res=\$$3 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func # ac_fn_c_try_run LINENO # ---------------------- # Try to run conftest.$ac_ext, and return whether this succeeded. Assumes that # executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; } then : ac_retval=0 else case e in #( e) printf "%s\n" "$as_me: program exited with status $ac_status" >&5 printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status ;; esac fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run ac_configure_args_raw= for ac_arg do case $ac_arg in *\'*) ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append ac_configure_args_raw " '$ac_arg'" done case $ac_configure_args_raw in *$as_nl*) ac_safe_unquote= ;; *) ac_unsafe_z='|&;<>()$`\\"*?[ '' ' # This string ends in space, tab. ac_unsafe_a="$ac_unsafe_z#~" ac_safe_unquote="s/ '\\([^$ac_unsafe_a][^$ac_unsafe_z]*\\)'/ \\1/g" ac_configure_args_raw=` printf "%s\n" "$ac_configure_args_raw" | sed "$ac_safe_unquote"`;; esac cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by less $as_me 1, which was generated by GNU Autoconf 2.72. Invocation command line was $ $0$ac_configure_args_raw _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac printf "%s\n" "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Sanitize IFS. IFS=" "" $as_nl" # Save into config.log some information that might help in debugging. { echo printf "%s\n" "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo printf "%s\n" "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac printf "%s\n" "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then printf "%s\n" "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac printf "%s\n" "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then printf "%s\n" "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && printf "%s\n" "$as_me: caught signal $ac_signal" printf "%s\n" "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h printf "%s\n" "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. printf "%s\n" "#define PACKAGE_NAME \"$PACKAGE_NAME\"" >>confdefs.h printf "%s\n" "#define PACKAGE_TARNAME \"$PACKAGE_TARNAME\"" >>confdefs.h printf "%s\n" "#define PACKAGE_VERSION \"$PACKAGE_VERSION\"" >>confdefs.h printf "%s\n" "#define PACKAGE_STRING \"$PACKAGE_STRING\"" >>confdefs.h printf "%s\n" "#define PACKAGE_BUGREPORT \"$PACKAGE_BUGREPORT\"" >>confdefs.h printf "%s\n" "#define PACKAGE_URL \"$PACKAGE_URL\"" >>confdefs.h # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. if test -n "$CONFIG_SITE"; then ac_site_files="$CONFIG_SITE" elif test "x$prefix" != xNONE; then ac_site_files="$prefix/share/config.site $prefix/etc/config.site" else ac_site_files="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" fi for ac_site_file in $ac_site_files do case $ac_site_file in #( */*) : ;; #( *) : ac_site_file=./$ac_site_file ;; esac if test -f "$ac_site_file" && test -r "$ac_site_file"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 printf "%s\n" "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See 'config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 printf "%s\n" "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 printf "%s\n" "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Test code for whether the C compiler supports C89 (global declarations) ac_c_conftest_c89_globals=' /* Does the compiler advertise C89 conformance? Do not test the value of __STDC__, because some compilers set it to 0 while being otherwise adequately conformant. */ #if !defined __STDC__ # error "Compiler does not advertise C89 conformance" #endif #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7 src/conf.sh. */ struct buf { int x; }; struct buf * (*rcsopen) (struct buf *, struct stat *, int); static char *e (char **p, int i) { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* C89 style stringification. */ #define noexpand_stringify(a) #a const char *stringified = noexpand_stringify(arbitrary+token=sequence); /* C89 style token pasting. Exercises some of the corner cases that e.g. old MSVC gets wrong, but not very hard. */ #define noexpand_concat(a,b) a##b #define expand_concat(a,b) noexpand_concat(a,b) extern int vA; extern int vbee; #define aye A #define bee B int *pvA = &expand_concat(v,aye); int *pvbee = &noexpand_concat(v,bee); /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not \xHH hex character constants. These do not provoke an error unfortunately, instead are silently treated as an "x". The following induces an error, until -std is added to get proper ANSI mode. Curiously \x00 != x always comes out true, for an array size at least. It is necessary to write \x00 == 0 to get something that is true only with -std. */ int osf4_cc_array ['\''\x00'\'' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) '\''x'\'' int xlc6_cc_array[FOO(a) == '\''x'\'' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, int *(*)(struct buf *, struct stat *, int), int, int);' # Test code for whether the C compiler supports C89 (body of main). ac_c_conftest_c89_main=' ok |= (argc == 0 || f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]); ' # Test code for whether the C compiler supports C99 (global declarations) ac_c_conftest_c99_globals=' /* Does the compiler advertise C99 conformance? */ #if !defined __STDC_VERSION__ || __STDC_VERSION__ < 199901L # error "Compiler does not advertise C99 conformance" #endif // See if C++-style comments work. #include extern int puts (const char *); extern int printf (const char *, ...); extern int dprintf (int, const char *, ...); extern void *malloc (size_t); extern void free (void *); // Check varargs macros. These examples are taken from C99 6.10.3.5. // dprintf is used instead of fprintf to avoid needing to declare // FILE and stderr. #define debug(...) dprintf (2, __VA_ARGS__) #define showlist(...) puts (#__VA_ARGS__) #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) static void test_varargs_macros (void) { int x = 1234; int y = 5678; debug ("Flag"); debug ("X = %d\n", x); showlist (The first, second, and third items.); report (x>y, "x is %d but y is %d", x, y); } // Check long long types. #define BIG64 18446744073709551615ull #define BIG32 4294967295ul #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) #if !BIG_OK #error "your preprocessor is broken" #endif #if BIG_OK #else #error "your preprocessor is broken" #endif static long long int bignum = -9223372036854775807LL; static unsigned long long int ubignum = BIG64; struct incomplete_array { int datasize; double data[]; }; struct named_init { int number; const wchar_t *name; double average; }; typedef const char *ccp; static inline int test_restrict (ccp restrict text) { // Iterate through items via the restricted pointer. // Also check for declarations in for loops. for (unsigned int i = 0; *(text+i) != '\''\0'\''; ++i) continue; return 0; } // Check varargs and va_copy. static bool test_varargs (const char *format, ...) { va_list args; va_start (args, format); va_list args_copy; va_copy (args_copy, args); const char *str = ""; int number = 0; float fnumber = 0; while (*format) { switch (*format++) { case '\''s'\'': // string str = va_arg (args_copy, const char *); break; case '\''d'\'': // int number = va_arg (args_copy, int); break; case '\''f'\'': // float fnumber = va_arg (args_copy, double); break; default: break; } } va_end (args_copy); va_end (args); return *str && number && fnumber; } ' # Test code for whether the C compiler supports C99 (body of main). ac_c_conftest_c99_main=' // Check bool. _Bool success = false; success |= (argc != 0); // Check restrict. if (test_restrict ("String literal") == 0) success = true; char *restrict newvar = "Another string"; // Check varargs. success &= test_varargs ("s, d'\'' f .", "string", 65, 34.234); test_varargs_macros (); // Check flexible array members. struct incomplete_array *ia = malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); ia->datasize = 10; for (int i = 0; i < ia->datasize; ++i) ia->data[i] = i * 1.234; // Work around memory leak warnings. free (ia); // Check named initializers. struct named_init ni = { .number = 34, .name = L"Test wide string", .average = 543.34343, }; ni.number = 58; int dynamic_array[ni.number]; dynamic_array[0] = argv[0][0]; dynamic_array[ni.number - 1] = 543; // work around unused variable warnings ok |= (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == '\''x'\'' || dynamic_array[ni.number - 1] != 543); ' # Test code for whether the C compiler supports C11 (global declarations) ac_c_conftest_c11_globals=' /* Does the compiler advertise C11 conformance? */ #if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L # error "Compiler does not advertise C11 conformance" #endif // Check _Alignas. char _Alignas (double) aligned_as_double; char _Alignas (0) no_special_alignment; extern char aligned_as_int; char _Alignas (0) _Alignas (int) aligned_as_int; // Check _Alignof. enum { int_alignment = _Alignof (int), int_array_alignment = _Alignof (int[100]), char_alignment = _Alignof (char) }; _Static_assert (0 < -_Alignof (int), "_Alignof is signed"); // Check _Noreturn. int _Noreturn does_not_return (void) { for (;;) continue; } // Check _Static_assert. struct test_static_assert { int x; _Static_assert (sizeof (int) <= sizeof (long int), "_Static_assert does not work in struct"); long int y; }; // Check UTF-8 literals. #define u8 syntax error! char const utf8_literal[] = u8"happens to be ASCII" "another string"; // Check duplicate typedefs. typedef long *long_ptr; typedef long int *long_ptr; typedef long_ptr long_ptr; // Anonymous structures and unions -- taken from C11 6.7.2.1 Example 1. struct anonymous { union { struct { int i; int j; }; struct { int k; long int l; } w; }; int m; } v1; ' # Test code for whether the C compiler supports C11 (body of main). ac_c_conftest_c11_main=' _Static_assert ((offsetof (struct anonymous, i) == offsetof (struct anonymous, w.k)), "Anonymous union alignment botch"); v1.i = 2; v1.w.k = 5; ok |= v1.i != 5; ' # Test code for whether the C compiler supports C11 (complete). ac_c_conftest_c11_program="${ac_c_conftest_c89_globals} ${ac_c_conftest_c99_globals} ${ac_c_conftest_c11_globals} int main (int argc, char **argv) { int ok = 0; ${ac_c_conftest_c89_main} ${ac_c_conftest_c99_main} ${ac_c_conftest_c11_main} return ok; } " # Test code for whether the C compiler supports C99 (complete). ac_c_conftest_c99_program="${ac_c_conftest_c89_globals} ${ac_c_conftest_c99_globals} int main (int argc, char **argv) { int ok = 0; ${ac_c_conftest_c89_main} ${ac_c_conftest_c99_main} return ok; } " # Test code for whether the C compiler supports C89 (complete). ac_c_conftest_c89_program="${ac_c_conftest_c89_globals} int main (int argc, char **argv) { int ok = 0; ${ac_c_conftest_c89_main} return ok; } " as_fn_append ac_header_c_list " stdio.h stdio_h HAVE_STDIO_H" as_fn_append ac_header_c_list " stdlib.h stdlib_h HAVE_STDLIB_H" as_fn_append ac_header_c_list " string.h string_h HAVE_STRING_H" as_fn_append ac_header_c_list " inttypes.h inttypes_h HAVE_INTTYPES_H" as_fn_append ac_header_c_list " stdint.h stdint_h HAVE_STDINT_H" as_fn_append ac_header_c_list " strings.h strings_h HAVE_STRINGS_H" as_fn_append ac_header_c_list " sys/stat.h sys_stat_h HAVE_SYS_STAT_H" as_fn_append ac_header_c_list " sys/types.h sys_types_h HAVE_SYS_TYPES_H" as_fn_append ac_header_c_list " unistd.h unistd_h HAVE_UNISTD_H" as_fn_append ac_header_c_list " ctype.h ctype_h HAVE_CTYPE_H" as_fn_append ac_header_c_list " errno.h errno_h HAVE_ERRNO_H" as_fn_append ac_header_c_list " fcntl.h fcntl_h HAVE_FCNTL_H" as_fn_append ac_header_c_list " limits.h limits_h HAVE_LIMITS_H" as_fn_append ac_header_c_list " stdckdint.h stdckdint_h HAVE_STDCKDINT_H" as_fn_append ac_header_c_list " termcap.h termcap_h HAVE_TERMCAP_H" as_fn_append ac_header_c_list " ncurses/termcap.h ncurses_termcap_h HAVE_NCURSES_TERMCAP_H" as_fn_append ac_header_c_list " ncursesw/termcap.h ncursesw_termcap_h HAVE_NCURSESW_TERMCAP_H" as_fn_append ac_header_c_list " termio.h termio_h HAVE_TERMIO_H" as_fn_append ac_header_c_list " termios.h termios_h HAVE_TERMIOS_H" as_fn_append ac_header_c_list " time.h time_h HAVE_TIME_H" as_fn_append ac_header_c_list " values.h values_h HAVE_VALUES_H" as_fn_append ac_header_c_list " linux/magic.h linux_magic_h HAVE_LINUX_MAGIC_H" as_fn_append ac_header_c_list " sys/ioctl.h sys_ioctl_h HAVE_SYS_IOCTL_H" as_fn_append ac_header_c_list " sys/stream.h sys_stream_h HAVE_SYS_STREAM_H" as_fn_append ac_header_c_list " sys/wait.h sys_wait_h HAVE_SYS_WAIT_H" as_fn_append ac_header_c_list " wctype.h wctype_h HAVE_WCTYPE_H" # Auxiliary files required by this configure script. ac_aux_files="install-sh" # Locations in which to look for auxiliary files. ac_aux_dir_candidates="${srcdir}${PATH_SEPARATOR}${srcdir}/..${PATH_SEPARATOR}${srcdir}/../.." # Search for a directory containing all of the required auxiliary files, # $ac_aux_files, from the $PATH-style list $ac_aux_dir_candidates. # If we don't find one directory that contains all the files we need, # we report the set of missing files from the *first* directory in # $ac_aux_dir_candidates and give up. ac_missing_aux_files="" ac_first_candidate=: printf "%s\n" "$as_me:${as_lineno-$LINENO}: looking for aux files: $ac_aux_files" >&5 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in $ac_aux_dir_candidates do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac as_found=: printf "%s\n" "$as_me:${as_lineno-$LINENO}: trying $as_dir" >&5 ac_aux_dir_found=yes ac_install_sh= for ac_aux in $ac_aux_files do # As a special case, if "install-sh" is required, that requirement # can be satisfied by any of "install-sh", "install.sh", or "shtool", # and $ac_install_sh is set appropriately for whichever one is found. if test x"$ac_aux" = x"install-sh" then if test -f "${as_dir}install-sh"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install-sh found" >&5 ac_install_sh="${as_dir}install-sh -c" elif test -f "${as_dir}install.sh"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install.sh found" >&5 ac_install_sh="${as_dir}install.sh -c" elif test -f "${as_dir}shtool"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}shtool found" >&5 ac_install_sh="${as_dir}shtool install -c" else ac_aux_dir_found=no if $ac_first_candidate; then ac_missing_aux_files="${ac_missing_aux_files} install-sh" else break fi fi else if test -f "${as_dir}${ac_aux}"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}${ac_aux} found" >&5 else ac_aux_dir_found=no if $ac_first_candidate; then ac_missing_aux_files="${ac_missing_aux_files} ${ac_aux}" else break fi fi fi done if test "$ac_aux_dir_found" = yes; then ac_aux_dir="$as_dir" break fi ac_first_candidate=false as_found=false done IFS=$as_save_IFS if $as_found then : else case e in #( e) as_fn_error $? "cannot find required auxiliary files:$ac_missing_aux_files" "$LINENO" 5 ;; esac fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. if test -f "${ac_aux_dir}config.guess"; then ac_config_guess="$SHELL ${ac_aux_dir}config.guess" fi if test -f "${ac_aux_dir}config.sub"; then ac_config_sub="$SHELL ${ac_aux_dir}config.sub" fi if test -f "$ac_aux_dir/configure"; then ac_configure="$SHELL ${ac_aux_dir}configure" fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: '$ac_var' was set to '$ac_old_val' in the previous run" >&5 printf "%s\n" "$as_me: error: '$ac_var' was set to '$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: '$ac_var' was not set in the previous run" >&5 printf "%s\n" "$as_me: error: '$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: '$ac_var' has changed since the previous run:" >&5 printf "%s\n" "$as_me: error: '$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in '$ac_var' since the previous run:" >&5 printf "%s\n" "$as_me: warning: ignoring whitespace changes in '$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: former value: '$ac_old_val'" >&5 printf "%s\n" "$as_me: former value: '$ac_old_val'" >&2;} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: current value: '$ac_new_val'" >&5 printf "%s\n" "$as_me: current value: '$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`printf "%s\n" "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 printf "%s\n" "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run '${MAKE-make} distclean' and/or 'rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_config_headers="$ac_config_headers defines.h" # Checks for programs. ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if test "$as_dir$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir$ac_word${1+' '}$@" fi fi fi ;; esac fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}clang", so it can be a program name with args. set dummy ${ac_tool_prefix}clang; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}clang" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "clang", so it can be a program name with args. set dummy clang; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="clang" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi fi test -z "$CC" && { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See 'config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion -version; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 printf %s "checking whether the C compiler works... " >&6; } ac_link_default=`printf "%s\n" "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then : # Autoconf-2.13 could set the ac_cv_exeext variable to 'no'. # So ignore a value of 'no', otherwise this would lead to 'EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test ${ac_cv_exeext+y} && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an '-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else case e in #( e) ac_file='' ;; esac fi if test -z "$ac_file" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See 'config.log' for more details" "$LINENO" 5; } else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 printf %s "checking for C compiler default output file name... " >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 printf "%s\n" "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 printf %s "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then : # If both 'conftest.exe' and 'conftest' are 'present' (well, observable) # catch 'conftest.exe'. For instance with Cygwin, 'ls conftest' will # work properly (i.e., refer to 'conftest.exe'), while it won't with # 'rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else case e in #( e) { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See 'config.log' for more details" "$LINENO" 5; } ;; esac fi rm -f conftest conftest$ac_cv_exeext { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 printf "%s\n" "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main (void) { FILE *f = fopen ("conftest.out", "w"); if (!f) return 1; return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 printf %s "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error 77 "cannot run C compiled programs. If you meant to cross compile, use '--host'. See 'config.log' for more details" "$LINENO" 5; } fi fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 printf "%s\n" "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext \ conftest.o conftest.obj conftest.out ac_clean_files=$ac_clean_files_save { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 printf %s "checking for suffix of object files... " >&6; } if test ${ac_cv_objext+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else case e in #( e) printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See 'config.log' for more details" "$LINENO" 5; } ;; esac fi rm -f conftest.$ac_cv_objext conftest.$ac_ext ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 printf "%s\n" "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C" >&5 printf %s "checking whether the compiler supports GNU C... " >&6; } if test ${ac_cv_c_compiler_gnu+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_compiler_gnu=yes else case e in #( e) ac_compiler_gnu=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 printf "%s\n" "$ac_cv_c_compiler_gnu" >&6; } ac_compiler_gnu=$ac_cv_c_compiler_gnu if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+y} ac_save_CFLAGS=$CFLAGS { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 printf %s "checking whether $CC accepts -g... " >&6; } if test ${ac_cv_prog_cc_g+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_g=yes else case e in #( e) CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : else case e in #( e) ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 printf "%s\n" "$ac_cv_prog_cc_g" >&6; } if test $ac_test_CFLAGS; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi ac_prog_cc_stdc=no if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C11 features" >&5 printf %s "checking for $CC option to enable C11 features... " >&6; } if test ${ac_cv_prog_cc_c11+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_cv_prog_cc_c11=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c11_program _ACEOF for ac_arg in '' -std=gnu11 do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c11=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c11" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC ;; esac fi if test "x$ac_cv_prog_cc_c11" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else case e in #( e) if test "x$ac_cv_prog_cc_c11" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c11" >&5 printf "%s\n" "$ac_cv_prog_cc_c11" >&6; } CC="$CC $ac_cv_prog_cc_c11" ;; esac fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c11 ac_prog_cc_stdc=c11 ;; esac fi fi if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C99 features" >&5 printf %s "checking for $CC option to enable C99 features... " >&6; } if test ${ac_cv_prog_cc_c99+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_cv_prog_cc_c99=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c99_program _ACEOF for ac_arg in '' -std=gnu99 -std=c99 -c99 -qlanglvl=extc1x -qlanglvl=extc99 -AC99 -D_STDC_C99= do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c99=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c99" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC ;; esac fi if test "x$ac_cv_prog_cc_c99" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else case e in #( e) if test "x$ac_cv_prog_cc_c99" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5 printf "%s\n" "$ac_cv_prog_cc_c99" >&6; } CC="$CC $ac_cv_prog_cc_c99" ;; esac fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c99 ac_prog_cc_stdc=c99 ;; esac fi fi if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C89 features" >&5 printf %s "checking for $CC option to enable C89 features... " >&6; } if test ${ac_cv_prog_cc_c89+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c89_program _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC ;; esac fi if test "x$ac_cv_prog_cc_c89" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else case e in #( e) if test "x$ac_cv_prog_cc_c89" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 printf "%s\n" "$ac_cv_prog_cc_c89" >&6; } CC="$CC $ac_cv_prog_cc_c89" ;; esac fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c89 ac_prog_cc_stdc=c89 ;; esac fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing strerror" >&5 printf %s "checking for library containing strerror... " >&6; } if test ${ac_cv_search_strerror+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char strerror (void); int main (void) { return strerror (); ; return 0; } _ACEOF for ac_lib in '' cposix do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO" then : ac_cv_search_strerror=$ac_res fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext if test ${ac_cv_search_strerror+y} then : break fi done if test ${ac_cv_search_strerror+y} then : else case e in #( e) ac_cv_search_strerror=no ;; esac fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_strerror" >&5 printf "%s\n" "$ac_cv_search_strerror" >&6; } ac_res=$ac_cv_search_strerror if test "$ac_res" != no then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 printf %s "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if test ${ac_cv_path_install+y} then : printf %s "(cached) " >&6 else case e in #( e) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac # Account for fact that we put trailing slashes in our PATH walk. case $as_dir in #(( ./ | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir/" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir ;; esac fi if test ${ac_cv_path_install+y}; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 printf "%s\n" "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' # Checks for compilation model. # Check whether --enable-largefile was given. if test ${enable_largefile+y} then : enableval=$enable_largefile; fi if test "$enable_largefile,$enable_year2038" != no,no then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable large file support" >&5 printf %s "checking for $CC option to enable large file support... " >&6; } if test ${ac_cv_sys_largefile_opts+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_save_CC="$CC" ac_opt_found=no for ac_opt in "none needed" "-D_FILE_OFFSET_BITS=64" "-D_LARGE_FILES=1" "-n32"; do if test x"$ac_opt" != x"none needed" then : CC="$ac_save_CC $ac_opt" fi cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifndef FTYPE # define FTYPE off_t #endif /* Check that FTYPE can represent 2**63 - 1 correctly. We can't simply define LARGE_FTYPE to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ #define LARGE_FTYPE (((FTYPE) 1 << 31 << 31) - 1 + ((FTYPE) 1 << 31 << 31)) int FTYPE_is_large[(LARGE_FTYPE % 2147483629 == 721 && LARGE_FTYPE % 2147483647 == 1) ? 1 : -1]; int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : if test x"$ac_opt" = x"none needed" then : # GNU/Linux s390x and alpha need _FILE_OFFSET_BITS=64 for wide ino_t. CC="$CC -DFTYPE=ino_t" if ac_fn_c_try_compile "$LINENO" then : else case e in #( e) CC="$CC -D_FILE_OFFSET_BITS=64" if ac_fn_c_try_compile "$LINENO" then : ac_opt='-D_FILE_OFFSET_BITS=64' fi rm -f core conftest.err conftest.$ac_objext conftest.beam ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam fi ac_cv_sys_largefile_opts=$ac_opt ac_opt_found=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext test $ac_opt_found = no || break done CC="$ac_save_CC" test $ac_opt_found = yes || ac_cv_sys_largefile_opts="support not detected" ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_opts" >&5 printf "%s\n" "$ac_cv_sys_largefile_opts" >&6; } ac_have_largefile=yes case $ac_cv_sys_largefile_opts in #( "none needed") : ;; #( "supported through gnulib") : ;; #( "support not detected") : ac_have_largefile=no ;; #( "-D_FILE_OFFSET_BITS=64") : printf "%s\n" "#define _FILE_OFFSET_BITS 64" >>confdefs.h ;; #( "-D_LARGE_FILES=1") : printf "%s\n" "#define _LARGE_FILES 1" >>confdefs.h ;; #( "-n32") : CC="$CC -n32" ;; #( *) : as_fn_error $? "internal error: bad value for \$ac_cv_sys_largefile_opts" "$LINENO" 5 ;; esac if test "$enable_year2038" != no then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option for timestamps after 2038" >&5 printf %s "checking for $CC option for timestamps after 2038... " >&6; } if test ${ac_cv_sys_year2038_opts+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_save_CPPFLAGS="$CPPFLAGS" ac_opt_found=no for ac_opt in "none needed" "-D_TIME_BITS=64" "-D__MINGW_USE_VC2005_COMPAT" "-U_USE_32_BIT_TIME_T -D__MINGW_USE_VC2005_COMPAT"; do if test x"$ac_opt" != x"none needed" then : CPPFLAGS="$ac_save_CPPFLAGS $ac_opt" fi cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include /* Check that time_t can represent 2**32 - 1 correctly. */ #define LARGE_TIME_T \\ ((time_t) (((time_t) 1 << 30) - 1 + 3 * ((time_t) 1 << 30))) int verify_time_t_range[(LARGE_TIME_T / 65537 == 65535 && LARGE_TIME_T % 65537 == 0) ? 1 : -1]; int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_sys_year2038_opts="$ac_opt" ac_opt_found=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext test $ac_opt_found = no || break done CPPFLAGS="$ac_save_CPPFLAGS" test $ac_opt_found = yes || ac_cv_sys_year2038_opts="support not detected" ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_year2038_opts" >&5 printf "%s\n" "$ac_cv_sys_year2038_opts" >&6; } ac_have_year2038=yes case $ac_cv_sys_year2038_opts in #( "none needed") : ;; #( "support not detected") : ac_have_year2038=no ;; #( "-D_TIME_BITS=64") : printf "%s\n" "#define _TIME_BITS 64" >>confdefs.h ;; #( "-D__MINGW_USE_VC2005_COMPAT") : printf "%s\n" "#define __MINGW_USE_VC2005_COMPAT 1" >>confdefs.h ;; #( "-U_USE_32_BIT_TIME_T"*) : { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error $? "the 'time_t' type is currently forced to be 32-bit. It will stop working after mid-January 2038. Remove _USE_32BIT_TIME_T from the compiler flags. See 'config.log' for more details" "$LINENO" 5; } ;; #( *) : as_fn_error $? "internal error: bad value for \$ac_cv_sys_year2038_opts" "$LINENO" 5 ;; esac fi fi # Checks for general libraries. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for tgoto in -ltinfo" >&5 printf %s "checking for tgoto in -ltinfo... " >&6; } if test ${ac_cv_lib_tinfo_tgoto+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-ltinfo $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char tgoto (void); int main (void) { return tgoto (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_tinfo_tgoto=yes else case e in #( e) ac_cv_lib_tinfo_tgoto=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_tinfo_tgoto" >&5 printf "%s\n" "$ac_cv_lib_tinfo_tgoto" >&6; } if test "x$ac_cv_lib_tinfo_tgoto" = xyes then : have_tinfo=yes else case e in #( e) have_tinfo=no ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for tgoto in -ltinfow" >&5 printf %s "checking for tgoto in -ltinfow... " >&6; } if test ${ac_cv_lib_tinfow_tgoto+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-ltinfow $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char tgoto (void); int main (void) { return tgoto (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_tinfow_tgoto=yes else case e in #( e) ac_cv_lib_tinfow_tgoto=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_tinfow_tgoto" >&5 printf "%s\n" "$ac_cv_lib_tinfow_tgoto" >&6; } if test "x$ac_cv_lib_tinfow_tgoto" = xyes then : have_tinfow=yes else case e in #( e) have_tinfow=no ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for initscr in -lxcurses" >&5 printf %s "checking for initscr in -lxcurses... " >&6; } if test ${ac_cv_lib_xcurses_initscr+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lxcurses $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char initscr (void); int main (void) { return initscr (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_xcurses_initscr=yes else case e in #( e) ac_cv_lib_xcurses_initscr=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xcurses_initscr" >&5 printf "%s\n" "$ac_cv_lib_xcurses_initscr" >&6; } if test "x$ac_cv_lib_xcurses_initscr" = xyes then : have_xcurses=yes else case e in #( e) have_xcurses=no ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for initscr in -lncursesw" >&5 printf %s "checking for initscr in -lncursesw... " >&6; } if test ${ac_cv_lib_ncursesw_initscr+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lncursesw $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char initscr (void); int main (void) { return initscr (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_ncursesw_initscr=yes else case e in #( e) ac_cv_lib_ncursesw_initscr=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ncursesw_initscr" >&5 printf "%s\n" "$ac_cv_lib_ncursesw_initscr" >&6; } if test "x$ac_cv_lib_ncursesw_initscr" = xyes then : have_ncursesw=yes else case e in #( e) have_ncursesw=no ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for initscr in -lncurses" >&5 printf %s "checking for initscr in -lncurses... " >&6; } if test ${ac_cv_lib_ncurses_initscr+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lncurses $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char initscr (void); int main (void) { return initscr (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_ncurses_initscr=yes else case e in #( e) ac_cv_lib_ncurses_initscr=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ncurses_initscr" >&5 printf "%s\n" "$ac_cv_lib_ncurses_initscr" >&6; } if test "x$ac_cv_lib_ncurses_initscr" = xyes then : have_ncurses=yes else case e in #( e) have_ncurses=no ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for initscr in -lcurses" >&5 printf %s "checking for initscr in -lcurses... " >&6; } if test ${ac_cv_lib_curses_initscr+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char initscr (void); int main (void) { return initscr (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_curses_initscr=yes else case e in #( e) ac_cv_lib_curses_initscr=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_curses_initscr" >&5 printf "%s\n" "$ac_cv_lib_curses_initscr" >&6; } if test "x$ac_cv_lib_curses_initscr" = xyes then : have_curses=yes else case e in #( e) have_curses=no ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for tgetent in -ltermcap" >&5 printf %s "checking for tgetent in -ltermcap... " >&6; } if test ${ac_cv_lib_termcap_tgetent+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char tgetent (void); int main (void) { return tgetent (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_termcap_tgetent=yes else case e in #( e) ac_cv_lib_termcap_tgetent=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_termcap_tgetent" >&5 printf "%s\n" "$ac_cv_lib_termcap_tgetent" >&6; } if test "x$ac_cv_lib_termcap_tgetent" = xyes then : have_termcap=yes else case e in #( e) have_termcap=no ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for tgetent in -ltermlib" >&5 printf %s "checking for tgetent in -ltermlib... " >&6; } if test ${ac_cv_lib_termlib_tgetent+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-ltermlib $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char tgetent (void); int main (void) { return tgetent (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_termlib_tgetent=yes else case e in #( e) ac_cv_lib_termlib_tgetent=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_termlib_tgetent" >&5 printf "%s\n" "$ac_cv_lib_termlib_tgetent" >&6; } if test "x$ac_cv_lib_termlib_tgetent" = xyes then : have_termlib=yes else case e in #( e) have_termlib=no ;; esac fi # Regular expressions (regcmp) are in -lgen on Solaris 2, (but in libc # at least on Solaris 10 (2.10)) and in -lintl on SCO Unix. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing regcmp" >&5 printf %s "checking for library containing regcmp... " >&6; } if test ${ac_cv_search_regcmp+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char regcmp (void); int main (void) { return regcmp (); ; return 0; } _ACEOF for ac_lib in '' gen intl PW do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO" then : ac_cv_search_regcmp=$ac_res fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext if test ${ac_cv_search_regcmp+y} then : break fi done if test ${ac_cv_search_regcmp+y} then : else case e in #( e) ac_cv_search_regcmp=no ;; esac fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_regcmp" >&5 printf "%s\n" "$ac_cv_search_regcmp" >&6; } ac_res=$ac_cv_search_regcmp if test "$ac_res" != no then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi # Checks for header files. ac_header= ac_cache= for ac_item in $ac_header_c_list do if test $ac_cache; then ac_fn_c_check_header_compile "$LINENO" $ac_header ac_cv_header_$ac_cache "$ac_includes_default" if eval test \"x\$ac_cv_header_$ac_cache\" = xyes; then printf "%s\n" "#define $ac_item 1" >> confdefs.h fi ac_header= ac_cache= elif test $ac_header; then ac_cache=$ac_item else ac_header=$ac_item fi done if test $ac_cv_header_stdlib_h = yes && test $ac_cv_header_string_h = yes then : printf "%s\n" "#define STDC_HEADERS 1" >>confdefs.h fi # Checks for typedefs, structures, and compiler characteristics. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether stat file-mode macros are broken" >&5 printf %s "checking whether stat file-mode macros are broken... " >&6; } if test ${ac_cv_header_stat_broken+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if defined S_ISBLK && defined S_IFDIR extern char c1[S_ISBLK (S_IFDIR) ? -1 : 1]; #endif #if defined S_ISBLK && defined S_IFCHR extern char c2[S_ISBLK (S_IFCHR) ? -1 : 1]; #endif #if defined S_ISLNK && defined S_IFREG extern char c3[S_ISLNK (S_IFREG) ? -1 : 1]; #endif #if defined S_ISSOCK && defined S_IFREG extern char c4[S_ISSOCK (S_IFREG) ? -1 : 1]; #endif _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_header_stat_broken=no else case e in #( e) ac_cv_header_stat_broken=yes ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stat_broken" >&5 printf "%s\n" "$ac_cv_header_stat_broken" >&6; } if test $ac_cv_header_stat_broken = yes; then printf "%s\n" "#define STAT_MACROS_BROKEN 1" >>confdefs.h fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 printf %s "checking for an ANSI C-conforming const... " >&6; } if test ${ac_cv_c_const+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { #ifndef __cplusplus /* Ultrix mips cc rejects this sort of thing. */ typedef int charset[2]; const charset cs = { 0, 0 }; /* SunOS 4.1.1 cc rejects this. */ char const *const *pcpcc; char **ppc; /* NEC SVR4.0.2 mips cc rejects this. */ struct point {int x, y;}; static struct point const zero = {0,0}; /* IBM XL C 1.02.0.0 rejects this. It does not let you subtract one const X* pointer from another in an arm of an if-expression whose if-part is not a constant expression */ const char *g = "string"; pcpcc = &g + (g ? g-g : 0); /* HPUX 7.0 cc rejects these. */ ++pcpcc; ppc = (char**) pcpcc; pcpcc = (char const *const *) ppc; { /* SCO 3.2v4 cc rejects this sort of thing. */ char tx; char *t = &tx; char const *s = 0 ? (char *) 0 : (char const *) 0; *t++ = 0; if (s) return 0; } { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ int x[] = {25, 17}; const int *foo = &x[0]; ++foo; } { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ typedef const int *iptr; iptr p = 0; ++p; } { /* IBM XL C 1.02.0.0 rejects this sort of thing, saying "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ struct s { int j; const int *ap[3]; } bx; struct s *b = &bx; b->j = 5; } { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ const int foo = 10; if (!foo) return 0; } return !cs[0] && !zero.x; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_c_const=yes else case e in #( e) ac_cv_c_const=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 printf "%s\n" "$ac_cv_c_const" >&6; } if test $ac_cv_c_const = no; then printf "%s\n" "#define const /**/" >>confdefs.h fi ac_fn_c_check_type "$LINENO" "off_t" "ac_cv_type_off_t" "$ac_includes_default" if test "x$ac_cv_type_off_t" = xyes then : else case e in #( e) printf "%s\n" "#define off_t long int" >>confdefs.h ;; esac fi ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" if test "x$ac_cv_type_size_t" = xyes then : else case e in #( e) printf "%s\n" "#define size_t unsigned int" >>confdefs.h ;; esac fi # Checks for terminal libraries { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for working terminal libraries" >&5 printf %s "checking for working terminal libraries... " >&6; } TERMLIBS= include_termcap_h= if test "x$ac_cv_header_termcap_h" = xyes; then include_termcap_h="#include "; elif test "x$ac_cv_header_ncurses_termcap_h" = xyes; then include_termcap_h="#include "; elif test "x$ac_cv_header_ncursesw_termcap_h" = xyes; then include_termcap_h="#include "; fi # Check for systems where curses is broken. curses_broken=0 if test x`uname -s` = "xHP-UX" >/dev/null 2>&1; then if test x`uname -r` = "xB.11.00" >/dev/null 2>&1; then curses_broken=1 fi if test x`uname -r` = "xB.11.11" >/dev/null 2>&1; then curses_broken=1 fi fi if test $curses_broken = 0; then # -- Try tinfow. if test "x$TERMLIBS" = x; then if test $have_tinfow = yes; then TERMLIBS="-ltinfow" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $include_termcap_h int main (void) { tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : termok=yes else case e in #( e) termok=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi # -- Try tinfo. if test "x$TERMLIBS" = x; then if test $have_tinfo = yes; then TERMLIBS="-ltinfo" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $include_termcap_h int main (void) { tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : termok=yes else case e in #( e) termok=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi # -- Try xcurses. if test "x$TERMLIBS" = x; then if test $have_xcurses = yes; then TERMLIBS="-lxcurses" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $include_termcap_h int main (void) { tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : termok=yes else case e in #( e) termok=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi # -- Try ncursesw. if test "x$TERMLIBS" = x; then if test $have_ncursesw = yes; then TERMLIBS="-lncursesw" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $include_termcap_h int main (void) { tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : termok=yes else case e in #( e) termok=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi # -- Try ncurses. if test "x$TERMLIBS" = x; then if test $have_ncurses = yes; then TERMLIBS="-lncurses" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $include_termcap_h int main (void) { tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : termok=yes else case e in #( e) termok=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi # -- Try curses. if test "x$TERMLIBS" = x; then if test $have_curses = yes; then TERMLIBS="-lcurses" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $include_termcap_h int main (void) { tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : termok=yes else case e in #( e) termok=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi # -- Try curses & termcap. if test "x$TERMLIBS" = x; then if test $have_curses = yes; then if test $have_termcap = yes; then TERMLIBS="-lcurses -ltermcap" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $include_termcap_h int main (void) { tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : termok=yes else case e in #( e) termok=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi fi fi # -- Try termcap. if test "x$TERMLIBS" = x; then if test $have_termcap = yes; then TERMLIBS="-ltermcap" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $include_termcap_h int main (void) { tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : termok=yes else case e in #( e) termok=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi # -- Try termlib. if test "x$TERMLIBS" = x; then if test $have_termlib = yes; then TERMLIBS="-lcurses -ltermlib" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $include_termcap_h int main (void) { tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : termok=yes else case e in #( e) termok=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi if test "x$TERMLIBS" = x; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: Cannot find terminal libraries - configure failed" >&5 printf "%s\n" "Cannot find terminal libraries - configure failed" >&6; } exit 1 fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: using $TERMLIBS" >&5 printf "%s\n" "using $TERMLIBS" >&6; } LIBS="$LIBS $TERMLIBS" # Autoheader templates for symbols defined later by AC_DEFINE. # Checks for identifiers. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for void" >&5 printf %s "checking for void... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { void *foo = 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; }; printf "%s\n" "#define HAVE_VOID 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for const" >&5 printf %s "checking for const... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { const int foo = 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; }; printf "%s\n" "#define HAVE_CONST 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for time_t" >&5 printf %s "checking for time_t... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main (void) { time_t t = 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; }; printf "%s\n" "#define HAVE_TIME_T 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for st_ino in struct stat" >&5 printf %s "checking for st_ino in struct stat... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main (void) { struct stat s; dev_t dev = s.st_dev; ino_t ino = s.st_ino; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; }; printf "%s\n" "#define HAVE_STAT_INO 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext # Checks for ANSI function prototypes. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ANSI function prototypes" >&5 printf %s "checking for ANSI function prototypes... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { int f(int a) { return a; } ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; }; printf "%s\n" "#define HAVE_ANSI_PROTOS 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext # Checks for library functions. ac_fn_c_check_func "$LINENO" "fchmod" "ac_cv_func_fchmod" if test "x$ac_cv_func_fchmod" = xyes then : printf "%s\n" "#define HAVE_FCHMOD 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "fsync" "ac_cv_func_fsync" if test "x$ac_cv_func_fsync" = xyes then : printf "%s\n" "#define HAVE_FSYNC 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "nanosleep" "ac_cv_func_nanosleep" if test "x$ac_cv_func_nanosleep" = xyes then : printf "%s\n" "#define HAVE_NANOSLEEP 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "poll" "ac_cv_func_poll" if test "x$ac_cv_func_poll" = xyes then : printf "%s\n" "#define HAVE_POLL 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "popen" "ac_cv_func_popen" if test "x$ac_cv_func_popen" = xyes then : printf "%s\n" "#define HAVE_POPEN 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "realpath" "ac_cv_func_realpath" if test "x$ac_cv_func_realpath" = xyes then : printf "%s\n" "#define HAVE_REALPATH 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "_setjmp" "ac_cv_func__setjmp" if test "x$ac_cv_func__setjmp" = xyes then : printf "%s\n" "#define HAVE__SETJMP 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "sigprocmask" "ac_cv_func_sigprocmask" if test "x$ac_cv_func_sigprocmask" = xyes then : printf "%s\n" "#define HAVE_SIGPROCMASK 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "sigsetmask" "ac_cv_func_sigsetmask" if test "x$ac_cv_func_sigsetmask" = xyes then : printf "%s\n" "#define HAVE_SIGSETMASK 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "snprintf" "ac_cv_func_snprintf" if test "x$ac_cv_func_snprintf" = xyes then : printf "%s\n" "#define HAVE_SNPRINTF 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "stat" "ac_cv_func_stat" if test "x$ac_cv_func_stat" = xyes then : printf "%s\n" "#define HAVE_STAT 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "strsignal" "ac_cv_func_strsignal" if test "x$ac_cv_func_strsignal" = xyes then : printf "%s\n" "#define HAVE_STRSIGNAL 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "system" "ac_cv_func_system" if test "x$ac_cv_func_system" = xyes then : printf "%s\n" "#define HAVE_SYSTEM 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "ttyname" "ac_cv_func_ttyname" if test "x$ac_cv_func_ttyname" = xyes then : printf "%s\n" "#define HAVE_TTYNAME 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "usleep" "ac_cv_func_usleep" if test "x$ac_cv_func_usleep" = xyes then : printf "%s\n" "#define HAVE_USLEEP 1" >>confdefs.h fi # AC_CHECK_FUNCS may not work for inline functions, so test these separately. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for memcpy" >&5 printf %s "checking for memcpy... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if HAVE_STRING_H #include #endif int main (void) { memcpy(0,0,0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; }; printf "%s\n" "#define HAVE_MEMCPY 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for strchr" >&5 printf %s "checking for strchr... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if HAVE_STRING_H #include #endif int main (void) { strchr("x",'x'); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; }; printf "%s\n" "#define HAVE_STRCHR 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for strstr" >&5 printf %s "checking for strstr... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if HAVE_STRING_H #include #endif int main (void) { strstr("x","x"); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; }; printf "%s\n" "#define HAVE_STRSTR 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext # Some systems have termios.h but not the corresponding functions. ac_fn_c_check_func "$LINENO" "tcgetattr" "ac_cv_func_tcgetattr" if test "x$ac_cv_func_tcgetattr" = xyes then : printf "%s\n" "#define HAVE_TERMIOS_FUNCS 1" >>confdefs.h fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for fileno" >&5 printf %s "checking for fileno... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if HAVE_STDIO_H #include #endif int main (void) { static int x; x = fileno(stdin); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; }; printf "%s\n" "#define HAVE_FILENO 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for strerror" >&5 printf %s "checking for strerror... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if HAVE_STDIO_H #include #endif #if HAVE_STRING_H #include #endif #if HAVE_ERRNO_H #include #endif int main (void) { static char *x; x = strerror(0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; }; printf "%s\n" "#define HAVE_STRERROR 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sys_errlist" >&5 printf %s "checking for sys_errlist... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { extern char *sys_errlist[]; static char **x; x = sys_errlist; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; }; printf "%s\n" "#define HAVE_SYS_ERRLIST 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext ac_fn_c_check_type "$LINENO" "sigset_t" "ac_cv_type_sigset_t" "#include " if test "x$ac_cv_type_sigset_t" = xyes then : printf "%s\n" "#define HAVE_SIGSET_T 1" >>confdefs.h fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sigemptyset" >&5 printf %s "checking for sigemptyset... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main (void) { sigset_t s; sigemptyset(&s); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; }; printf "%s\n" "#define HAVE_SIGEMPTYSET 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext have_errno=no { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for errno" >&5 printf %s "checking for errno... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if HAVE_ERRNO_H #include #endif int main (void) { static int x; x = errno; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes - in errno.h" >&5 printf "%s\n" "yes - in errno.h" >&6; }; printf "%s\n" "#define HAVE_ERRNO 1" >>confdefs.h have_errno=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext if test $have_errno = no; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if HAVE_ERRNO_H #include #endif int main (void) { extern int errno; static int x; x = errno; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes - must define" >&5 printf "%s\n" "yes - must define" >&6; }; printf "%s\n" "#define HAVE_ERRNO 1" >>confdefs.h printf "%s\n" "#define MUST_DEFINE_ERRNO 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for locale" >&5 printf %s "checking for locale... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include int main (void) { setlocale(LC_CTYPE,""); isprint(0); iscntrl(0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; }; printf "%s\n" "#define HAVE_LOCALE 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ctype functions" >&5 printf %s "checking for ctype functions... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if HAVE_CTYPE_H #include #endif int main (void) { static int x; x = isupper(x); x = tolower(x); x = toupper(x); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; }; printf "%s\n" "#define HAVE_UPPER_LOWER 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for wctype functions" >&5 printf %s "checking for wctype functions... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main (void) { iswlower(0); iswupper(0); towlower(0); towupper(0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; }; printf "%s\n" "#define HAVE_WCTYPE 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext # Checks for external variable ospeed in the termcap library. have_ospeed=no { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking termcap for ospeed" >&5 printf %s "checking termcap for ospeed... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #if HAVE_TERMIOS_H #include #endif #if HAVE_TERMCAP_H #include #endif int main (void) { ospeed = 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes - in termcap.h" >&5 printf "%s\n" "yes - in termcap.h" >&6; }; printf "%s\n" "#define HAVE_OSPEED 1" >>confdefs.h have_ospeed=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext if test $have_ospeed = no; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { extern short ospeed; ospeed = 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes - must define" >&5 printf "%s\n" "yes - must define" >&6; }; printf "%s\n" "#define HAVE_OSPEED 1" >>confdefs.h printf "%s\n" "#define MUST_DEFINE_OSPEED 1" >>confdefs.h else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi # Compile in secure mode? # Check whether --with-secure was given. if test ${with_secure+y} then : withval=$with_secure; printf "%s\n" "#define SECURE_COMPILE 1" >>confdefs.h SECURE_COMPILE=1 else case e in #( e) printf "%s\n" "#define SECURE_COMPILE 0" >>confdefs.h SECURE_COMPILE=0 ;; esac fi # Checks for regular expression functions. have_regex=no have_posix_regex=unknown supported_regex="" # Select a regular expression library. WANT_REGEX=auto # Check whether --with-regex was given. if test ${with_regex+y} then : withval=$with_regex; WANT_REGEX="$withval" fi if test $have_regex = no; then if test $WANT_REGEX = auto -o $WANT_REGEX = posix; then # Some versions of Solaris have a regcomp() function, but it doesn't work! # So we run a test program. If we're cross-compiling, do it the old way. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for POSIX regcomp" >&5 printf %s "checking for POSIX regcomp... " >&6; } if test "$cross_compiling" = yes then : have_posix_regex=unknown else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main() { regex_t r; regmatch_t rm; char *text = "xabcy"; if (regcomp(&r, "abc", 0)) return (1); if (regexec(&r, text, 1, &rm, 0)) return (1); #ifndef __WATCOMC__ if (rm.rm_so != 1) return (1); /* check for correct offset */ #else if (rm.rm_sp != text + 1) return (1); /* check for correct offset */ #endif return (0); } _ACEOF if ac_fn_c_try_run "$LINENO" then : have_posix_regex=yes else case e in #( e) have_posix_regex=no ;; esac fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi if test $have_posix_regex = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } printf "%s\n" "#define HAVE_POSIX_REGCOMP 1" >>confdefs.h supported_regex="$supported_regex posix" have_regex=yes elif test $have_posix_regex = unknown; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main (void) { regex_t *r; regfree(r); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } printf "%s\n" "#define HAVE_POSIX_REGCOMP 1" >>confdefs.h have_regex=yes; supported_regex="$supported_regex posix" fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi fi if test $have_regex = no; then if test $WANT_REGEX = auto -o $WANT_REGEX = pcre2; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for pcre2_compile_8 in -lpcre2-8" >&5 printf %s "checking for pcre2_compile_8 in -lpcre2-8... " >&6; } if test ${ac_cv_lib_pcre2_8_pcre2_compile_8+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lpcre2-8 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char pcre2_compile_8 (void); int main (void) { return pcre2_compile_8 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_pcre2_8_pcre2_compile_8=yes else case e in #( e) ac_cv_lib_pcre2_8_pcre2_compile_8=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pcre2_8_pcre2_compile_8" >&5 printf "%s\n" "$ac_cv_lib_pcre2_8_pcre2_compile_8" >&6; } if test "x$ac_cv_lib_pcre2_8_pcre2_compile_8" = xyes then : printf "%s\n" "#define HAVE_PCRE2 1" >>confdefs.h LIBS="$LIBS -lpcre2-8" have_regex=yes; supported_regex="$supported_regex pcre2" fi fi fi if test $have_regex = no; then if test $WANT_REGEX = auto -o $WANT_REGEX = pcre; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for pcre_compile in -lpcre" >&5 printf %s "checking for pcre_compile in -lpcre... " >&6; } if test ${ac_cv_lib_pcre_pcre_compile+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lpcre $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char pcre_compile (void); int main (void) { return pcre_compile (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_pcre_pcre_compile=yes else case e in #( e) ac_cv_lib_pcre_pcre_compile=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pcre_pcre_compile" >&5 printf "%s\n" "$ac_cv_lib_pcre_pcre_compile" >&6; } if test "x$ac_cv_lib_pcre_pcre_compile" = xyes then : printf "%s\n" "#define HAVE_PCRE 1" >>confdefs.h LIBS="$LIBS -lpcre" have_regex=yes; supported_regex="$supported_regex pcre" fi fi fi if test $have_regex = no; then if test $WANT_REGEX = auto -o $WANT_REGEX = gnu; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for re_compile_pattern in -lc" >&5 printf %s "checking for re_compile_pattern in -lc... " >&6; } if test ${ac_cv_lib_c_re_compile_pattern+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lc $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char re_compile_pattern (void); int main (void) { return re_compile_pattern (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_c_re_compile_pattern=yes else case e in #( e) ac_cv_lib_c_re_compile_pattern=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_re_compile_pattern" >&5 printf "%s\n" "$ac_cv_lib_c_re_compile_pattern" >&6; } if test "x$ac_cv_lib_c_re_compile_pattern" = xyes then : printf "%s\n" "#define HAVE_GNU_REGEX 1" >>confdefs.h have_regex=yes; supported_regex="$supported_regex gnu" fi fi fi if test $have_regex = no; then if test $WANT_REGEX = auto -o $WANT_REGEX = regcmp; then ac_fn_c_check_func "$LINENO" "regcmp" "ac_cv_func_regcmp" if test "x$ac_cv_func_regcmp" = xyes then : printf "%s\n" "#define HAVE_REGCMP 1" >>confdefs.h have_regex=yes; supported_regex="$supported_regex regcmp" fi fi fi if test $have_regex = no; then if test $WANT_REGEX = auto -o $WANT_REGEX = regcomp; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for V8 regcomp" >&5 printf %s "checking for V8 regcomp... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include "regexp.h" int main (void) { regcomp(""); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; }; printf "%s\n" "#define HAVE_V8_REGCOMP 1" >>confdefs.h have_regex=yes; supported_regex="$supported_regex regcomp" else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi fi if test $have_regex = no && test -f ${srcdir}/regexp.c; then if test $WANT_REGEX = auto -o $WANT_REGEX = regcomp-local; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: using V8 regcomp -- local source" >&5 printf "%s\n" "using V8 regcomp -- local source" >&6; }; printf "%s\n" "#define HAVE_V8_REGCOMP 1" >>confdefs.h supported_regex="$supported_regex regcomp-local" printf "%s\n" "#define HAVE_REGEXEC2 1" >>confdefs.h REGEX_O='regexp.$(O)' have_regex=yes fi fi if test $have_regex = no; then if test $WANT_REGEX = auto -o $WANT_REGEX = re_comp; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for re_comp" >&5 printf %s "checking for re_comp... " >&6; } ac_fn_c_check_func "$LINENO" "re_comp" "ac_cv_func_re_comp" if test "x$ac_cv_func_re_comp" = xyes then : printf "%s\n" "#define HAVE_RE_COMP 1" >>confdefs.h have_regex=yes; supported_regex="$supported_regex re_comp" fi fi fi if test $have_regex = no; then if test $WANT_REGEX = auto -o $WANT_REGEX = none; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: using no regex" >&5 printf "%s\n" "using no regex" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cannot find regular expression library" >&5 printf "%s\n" "$as_me: WARNING: cannot find regular expression library" >&2;} fi printf "%s\n" "#define NO_REGEX 1" >>confdefs.h supported_regex="$supported_regex none" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: regular expression library: $supported_regex" >&5 printf "%s\n" "regular expression library: $supported_regex" >&6; } # Check whether --with-editor was given. if test ${with_editor+y} then : withval=$with_editor; printf "%s\n" "#define EDIT_PGM \"$withval\"" >>confdefs.h else case e in #( e) printf "%s\n" "#define EDIT_PGM \"vi\"" >>confdefs.h ;; esac fi ac_config_files="$ac_config_files Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # 'ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* 'ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # 'set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # 'set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test ${\1+y} || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 printf "%s\n" "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 printf "%s\n" "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`printf "%s\n" "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs # Check whether --enable-year2038 was given. if test ${enable_year2038+y} then : enableval=$enable_year2038; fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 printf "%s\n" "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case e in #( e) case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac ;; esac fi # Reset variables that may have inherited troublesome values from # the environment. # IFS needs to be set, to space, tab, and newline, in precisely that order. # (If _AS_PATH_WALK were called with IFS unset, it would have the # side effect of setting IFS to empty, thus disabling word splitting.) # Quoting is to prevent editors from complaining about space-tab. as_nl=' ' export as_nl IFS=" "" $as_nl" PS1='$ ' PS2='> ' PS4='+ ' # Ensure predictable behavior from utilities with locale-dependent output. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # We cannot yet rely on "unset" to work, but we need these variables # to be unset--not just set to an empty or harmless value--now, to # avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct # also avoids known problems related to "unset" and subshell syntax # in other old shells (e.g. bash 2.01 and pdksh 5.2.14). for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH do eval test \${$as_var+y} \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done # Ensure that fds 0, 1, and 2 are open. if (exec 3>&0) 2>/dev/null; then :; else exec 0&1) 2>/dev/null; then :; else exec 1>/dev/null; fi if (exec 3>&2) ; then :; else exec 2>/dev/null; fi # The user is always right. if ${PATH_SEPARATOR+false} :; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac test -r "$as_dir$0" && as_myself=$as_dir$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as 'sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi printf "%s\n" "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null then : eval 'as_fn_append () { eval $1+=\$2 }' else case e in #( e) as_fn_append () { eval $1=\$$1\$2 } ;; esac fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null then : eval 'as_fn_arith () { as_val=$(( $* )) }' else case e in #( e) as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } ;; esac fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits # Determine whether it's possible to make 'echo' print without a newline. # These variables are no longer used directly by Autoconf, but are AC_SUBSTed # for compatibility with existing Makefiles. ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac # For backward compatibility with old third-party macros, we provide # the shell variables $as_echo and $as_echo_n. New code should use # AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively. as_echo='printf %s\n' as_echo_n='printf %s' rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both 'ln -s file dir' and 'ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; 'ln -s' creates a wrapper executable. # In both cases, we have to default to 'cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_sed_cpp="y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g" as_tr_cpp="eval sed '$as_sed_cpp'" # deprecated # Sed expression to map a string onto a valid variable name. as_sed_sh="y%*+%pp%;s%[^_$as_cr_alnum]%_%g" as_tr_sh="eval sed '$as_sed_sh'" # deprecated exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by less $as_me 1, which was generated by GNU Autoconf 2.72. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ '$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Report bugs to the package provider." _ACEOF ac_cs_config=`printf "%s\n" "$ac_configure_args" | sed "$ac_safe_unquote"` ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\''/g"` cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ less config.status 1 configured by $0, generated by GNU Autoconf 2.72, with options \\"\$ac_cs_config\\" Copyright (C) 2023 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) printf "%s\n" "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) printf "%s\n" "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: '$1' Try '$0 --help' for more information.";; --help | --hel | -h ) printf "%s\n" "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: '$1' Try '$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \printf "%s\n" "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX printf "%s\n" "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "defines.h") CONFIG_HEADERS="$CONFIG_HEADERS defines.h" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; *) as_fn_error $? "invalid argument: '$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test ${CONFIG_FILES+y} || CONFIG_FILES=$config_files test ${CONFIG_HEADERS+y} || CONFIG_HEADERS=$config_headers fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to '$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with './config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with './config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script 'defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS " shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag '$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain ':'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: '$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`printf "%s\n" "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is 'configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` printf "%s\n" "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 printf "%s\n" "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`printf "%s\n" "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 printf "%s\n" "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when '$srcdir' = '.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable 'datarootdir' which seems to be undefined. Please make sure it is defined" >&5 printf "%s\n" "$as_me: WARNING: $ac_file contains a reference to the variable 'datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { printf "%s\n" "/* $configure_input */" >&1 \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 printf "%s\n" "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else printf "%s\n" "/* $configure_input */" >&1 \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi less-668/configure.ac0000444060175306017530000005570114700607642013673 0ustar marknmarkn# Process this file with autoconf to produce a configure script. # Copyright (C) 1984-2024 Mark Nudelman # # You may distribute under the terms of either the GNU General Public # License or the Less License, as specified in the README file. # # For more information about less, or for information on how to # contact the author, see the README file. # Autoconf initialization. AC_INIT([less],[1]) AC_CONFIG_SRCDIR([forwback.c]) AC_CONFIG_HEADERS([defines.h]) # Checks for programs. AC_PROG_CC AC_SEARCH_LIBS([strerror],[cposix]) AC_PROG_GCC_TRADITIONAL AC_PROG_INSTALL # Checks for compilation model. AC_SYS_LARGEFILE # Checks for general libraries. AC_CHECK_LIB(tinfo, tgoto, [have_tinfo=yes], [have_tinfo=no]) AC_CHECK_LIB(tinfow, tgoto, [have_tinfow=yes], [have_tinfow=no]) AC_CHECK_LIB(xcurses, initscr, [have_xcurses=yes], [have_xcurses=no]) AC_CHECK_LIB(ncursesw, initscr, [have_ncursesw=yes], [have_ncursesw=no]) AC_CHECK_LIB(ncurses, initscr, [have_ncurses=yes], [have_ncurses=no]) AC_CHECK_LIB(curses, initscr, [have_curses=yes], [have_curses=no]) AC_CHECK_LIB(termcap, tgetent, [have_termcap=yes], [have_termcap=no]) AC_CHECK_LIB(termlib, tgetent, [have_termlib=yes], [have_termlib=no]) # Regular expressions (regcmp) are in -lgen on Solaris 2, (but in libc # at least on Solaris 10 (2.10)) and in -lintl on SCO Unix. AC_SEARCH_LIBS([regcmp], [gen intl PW]) # Checks for header files. AC_CHECK_HEADERS_ONCE([ctype.h errno.h fcntl.h inttypes.h limits.h stdckdint.h stdio.h stdlib.h string.h termcap.h ncurses/termcap.h ncursesw/termcap.h termio.h termios.h time.h unistd.h values.h linux/magic.h sys/ioctl.h sys/stream.h sys/types.h sys/wait.h time.h wctype.h]) # Checks for typedefs, structures, and compiler characteristics. AC_HEADER_STAT AC_C_CONST AC_TYPE_OFF_T AC_TYPE_SIZE_T # Checks for terminal libraries AC_MSG_CHECKING([for working terminal libraries]) TERMLIBS= include_termcap_h= if test "x$ac_cv_header_termcap_h" = xyes; then include_termcap_h="#include "; elif test "x$ac_cv_header_ncurses_termcap_h" = xyes; then include_termcap_h="#include "; elif test "x$ac_cv_header_ncursesw_termcap_h" = xyes; then include_termcap_h="#include "; fi # Check for systems where curses is broken. curses_broken=0 if test x`uname -s` = "xHP-UX" >/dev/null 2>&1; then if test x`uname -r` = "xB.11.00" >/dev/null 2>&1; then curses_broken=1 fi if test x`uname -r` = "xB.11.11" >/dev/null 2>&1; then curses_broken=1 fi fi if test $curses_broken = 0; then # -- Try tinfow. if test "x$TERMLIBS" = x; then if test $have_tinfow = yes; then TERMLIBS="-ltinfow" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" AC_LINK_IFELSE([AC_LANG_PROGRAM([[$include_termcap_h]], [[tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);]])],[termok=yes],[termok=no]) LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi # -- Try tinfo. if test "x$TERMLIBS" = x; then if test $have_tinfo = yes; then TERMLIBS="-ltinfo" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" AC_LINK_IFELSE([AC_LANG_PROGRAM([[$include_termcap_h]], [[tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);]])],[termok=yes],[termok=no]) LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi # -- Try xcurses. if test "x$TERMLIBS" = x; then if test $have_xcurses = yes; then TERMLIBS="-lxcurses" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" AC_LINK_IFELSE([AC_LANG_PROGRAM([[$include_termcap_h]], [[tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);]])],[termok=yes],[termok=no]) LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi # -- Try ncursesw. if test "x$TERMLIBS" = x; then if test $have_ncursesw = yes; then TERMLIBS="-lncursesw" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" AC_LINK_IFELSE([AC_LANG_PROGRAM([[$include_termcap_h]], [[tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);]])],[termok=yes],[termok=no]) LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi # -- Try ncurses. if test "x$TERMLIBS" = x; then if test $have_ncurses = yes; then TERMLIBS="-lncurses" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" AC_LINK_IFELSE([AC_LANG_PROGRAM([[$include_termcap_h]], [[tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);]])],[termok=yes],[termok=no]) LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi # -- Try curses. if test "x$TERMLIBS" = x; then if test $have_curses = yes; then TERMLIBS="-lcurses" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" AC_LINK_IFELSE([AC_LANG_PROGRAM([[$include_termcap_h]], [[tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);]])],[termok=yes],[termok=no]) LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi # -- Try curses & termcap. if test "x$TERMLIBS" = x; then if test $have_curses = yes; then if test $have_termcap = yes; then TERMLIBS="-lcurses -ltermcap" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" AC_LINK_IFELSE([AC_LANG_PROGRAM([[$include_termcap_h]], [[tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);]])],[termok=yes],[termok=no]) LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi fi fi # -- Try termcap. if test "x$TERMLIBS" = x; then if test $have_termcap = yes; then TERMLIBS="-ltermcap" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" AC_LINK_IFELSE([AC_LANG_PROGRAM([[$include_termcap_h]], [[tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);]])],[termok=yes],[termok=no]) LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi # -- Try termlib. if test "x$TERMLIBS" = x; then if test $have_termlib = yes; then TERMLIBS="-lcurses -ltermlib" SAVE_LIBS=$LIBS LIBS="$LIBS $TERMLIBS" AC_LINK_IFELSE([AC_LANG_PROGRAM([[$include_termcap_h]], [[tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);]])],[termok=yes],[termok=no]) LIBS=$SAVE_LIBS if test $termok = no; then TERMLIBS=""; fi fi fi if test "x$TERMLIBS" = x; then AC_MSG_RESULT(Cannot find terminal libraries - configure failed) exit 1 fi AC_MSG_RESULT(using $TERMLIBS) LIBS="$LIBS $TERMLIBS" # Autoheader templates for symbols defined later by AC_DEFINE. AH_TEMPLATE([HAVE_GNU_REGEX], [GNU regex library]) AH_TEMPLATE([HAVE_POSIX_REGCOMP], [POSIX regcomp() and regex.h]) AH_TEMPLATE([HAVE_PCRE], [PCRE (Perl-compatible regular expression) library]) AH_TEMPLATE([HAVE_PCRE2], [PCRE2 (Perl-compatible regular expression) library]) AH_TEMPLATE([HAVE_RE_COMP], [BSD re_comp()]) AH_TEMPLATE([HAVE_REGCMP], [System V regcmp()]) AH_TEMPLATE([HAVE_V8_REGCOMP], [Henry Spencer V8 regcomp() and regexp.h]) AH_TEMPLATE([NO_REGEX], [pattern matching is supported, but without metacharacters.]) AH_TEMPLATE([HAVE_REGEXEC2], []) AH_TEMPLATE([HAVE_VOID], [Define HAVE_VOID if your compiler supports the "void" type.]) AH_TEMPLATE([HAVE_CONST], [Define HAVE_CONST if your compiler supports the "const" modifier.]) AH_TEMPLATE([HAVE_STAT_INO], [Define HAVE_STAT_INO if your struct stat has st_ino and st_dev.]) AH_TEMPLATE([HAVE_TIME_T], [Define HAVE_TIME_T if your system supports the "time_t" type.]) AH_TEMPLATE([HAVE_STRERROR], [Define HAVE_STRERROR if you have the strerror() function.]) AH_TEMPLATE([HAVE_FILENO], [Define HAVE_FILENO if you have the fileno() macro.]) AH_TEMPLATE([HAVE_ERRNO], [Define HAVE_ERRNO if you have the errno variable.]) AH_TEMPLATE([MUST_DEFINE_ERRNO], [Define MUST_DEFINE_ERRNO if you have errno but it is not define in errno.h.]) AH_TEMPLATE([HAVE_SYS_ERRLIST], [Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable.]) AH_TEMPLATE([HAVE_OSPEED], [Define HAVE_OSPEED if your termcap library has the ospeed variable.]) AH_TEMPLATE([MUST_DEFINE_OSPEED], [Define MUST_DEFINE_OSPEED if you have ospeed but it is not defined in termcap.h.]) AH_TEMPLATE([HAVE_LOCALE], [Define HAVE_LOCALE if you have locale.h and setlocale.]) AH_TEMPLATE([HAVE_TERMIOS_FUNCS], [Define HAVE_TERMIOS_FUNCS if you have tcgetattr/tcsetattr.]) AH_TEMPLATE([HAVE_UPPER_LOWER], [Define HAVE_UPPER_LOWER if you have isupper, islower, toupper, tolower.]) AH_TEMPLATE([HAVE_WCTYPE], [Define HAVE_WCTYPE if you have iswupper, iswlower, towupper, towlower.]) AH_TEMPLATE([HAVE_SIGSET_T], [Define HAVE_SIGSET_T you have the sigset_t type.]) AH_TEMPLATE([HAVE_SIGEMPTYSET], [Define HAVE_SIGEMPTYSET if you have the sigemptyset macro.]) AH_TEMPLATE([EDIT_PGM], [Define EDIT_PGM to your editor.]) AH_TEMPLATE([SECURE_COMPILE], [Define SECURE_COMPILE=1 to build a secure version of less.]) # Checks for identifiers. AC_MSG_CHECKING(for void) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[void *foo = 0;]])],[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_VOID)],[AC_MSG_RESULT(no)]) AC_MSG_CHECKING(for const) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[const int foo = 0;]])],[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_CONST)],[AC_MSG_RESULT(no)]) AC_MSG_CHECKING(for time_t) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include ]], [[time_t t = 0;]])],[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_TIME_T)],[AC_MSG_RESULT(no)]) AC_MSG_CHECKING(for st_ino in struct stat) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include #include ]], [[struct stat s; dev_t dev = s.st_dev; ino_t ino = s.st_ino;]])],[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_STAT_INO)],[AC_MSG_RESULT(no)]) # Checks for ANSI function prototypes. AC_MSG_CHECKING(for ANSI function prototypes) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[int f(int a) { return a; }]])],[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_ANSI_PROTOS)],[AC_MSG_RESULT(no)]) # Checks for library functions. AC_CHECK_FUNCS([fchmod fsync nanosleep poll popen realpath _setjmp sigprocmask sigsetmask snprintf stat strsignal system ttyname usleep]) # AC_CHECK_FUNCS may not work for inline functions, so test these separately. AC_MSG_CHECKING(for memcpy) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #if HAVE_STRING_H #include #endif]], [[memcpy(0,0,0);]])],[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_MEMCPY)],[AC_MSG_RESULT(no)]) AC_MSG_CHECKING(for strchr) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #if HAVE_STRING_H #include #endif]], [[strchr("x",'x');]])],[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_STRCHR)],[AC_MSG_RESULT(no)]) AC_MSG_CHECKING(for strstr) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #if HAVE_STRING_H #include #endif]], [[strstr("x","x");]])],[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_STRSTR)],[AC_MSG_RESULT(no)]) # Some systems have termios.h but not the corresponding functions. AC_CHECK_FUNC(tcgetattr, AC_DEFINE(HAVE_TERMIOS_FUNCS)) AC_MSG_CHECKING(for fileno) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #if HAVE_STDIO_H #include #endif]], [[static int x; x = fileno(stdin);]])],[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_FILENO)],[AC_MSG_RESULT(no)]) AC_MSG_CHECKING(for strerror) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #if HAVE_STDIO_H #include #endif #if HAVE_STRING_H #include #endif #if HAVE_ERRNO_H #include #endif]], [[static char *x; x = strerror(0);]])],[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_STRERROR)],[AC_MSG_RESULT(no)]) AC_MSG_CHECKING(for sys_errlist) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[extern char *sys_errlist[]; static char **x; x = sys_errlist;]])],[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SYS_ERRLIST)],[AC_MSG_RESULT(no)]) AC_CHECK_TYPES([sigset_t],,,[#include ]) AC_MSG_CHECKING(for sigemptyset) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include ]], [[sigset_t s; sigemptyset(&s);]])],[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SIGEMPTYSET)],[AC_MSG_RESULT(no)]) have_errno=no AC_MSG_CHECKING(for errno) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #if HAVE_ERRNO_H #include #endif]], [[static int x; x = errno;]])],[AC_MSG_RESULT(yes - in errno.h); AC_DEFINE(HAVE_ERRNO) have_errno=yes],[]) if test $have_errno = no; then AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #if HAVE_ERRNO_H #include #endif]], [[extern int errno; static int x; x = errno;]])],[AC_MSG_RESULT(yes - must define); AC_DEFINE(HAVE_ERRNO) AC_DEFINE(MUST_DEFINE_ERRNO)],[AC_MSG_RESULT(no)]) fi AC_MSG_CHECKING(for locale) AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include #include #include ]], [[setlocale(LC_CTYPE,""); isprint(0); iscntrl(0);]])],[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_LOCALE)],[AC_MSG_RESULT(no)]) AC_MSG_CHECKING(for ctype functions) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #if HAVE_CTYPE_H #include #endif]], [[static int x; x = isupper(x); x = tolower(x); x = toupper(x);]])],[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_UPPER_LOWER)],[AC_MSG_RESULT(no)]) AC_MSG_CHECKING(for wctype functions) AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include ]], [[iswlower(0); iswupper(0); towlower(0); towupper(0);]])],[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_WCTYPE)],[AC_MSG_RESULT(no)]) # Checks for external variable ospeed in the termcap library. have_ospeed=no AC_MSG_CHECKING(termcap for ospeed) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include #if HAVE_TERMIOS_H #include #endif #if HAVE_TERMCAP_H #include #endif]], [[ospeed = 0;]])],[AC_MSG_RESULT(yes - in termcap.h); AC_DEFINE(HAVE_OSPEED) have_ospeed=yes],[]) if test $have_ospeed = no; then AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[extern short ospeed; ospeed = 0;]])],[AC_MSG_RESULT(yes - must define); AC_DEFINE(HAVE_OSPEED) AC_DEFINE(MUST_DEFINE_OSPEED)],[AC_MSG_RESULT(no)]) fi # Compile in secure mode? AC_ARG_WITH(secure, [ --with-secure Compile in secure mode], AC_DEFINE(SECURE_COMPILE, 1) AC_SUBST(SECURE_COMPILE,1), AC_DEFINE(SECURE_COMPILE, 0) AC_SUBST(SECURE_COMPILE,0)) # Checks for regular expression functions. have_regex=no have_posix_regex=unknown supported_regex="" # Select a regular expression library. WANT_REGEX=auto AC_ARG_WITH(regex, [ --with-regex=LIB select regular expression library (LIB is one of auto,none,gnu,pcre,pcre2,posix,regcmp,re_comp,regcomp,regcomp-local) [[auto]]], WANT_REGEX="$withval") if test $have_regex = no; then if test $WANT_REGEX = auto -o $WANT_REGEX = posix; then # Some versions of Solaris have a regcomp() function, but it doesn't work! # So we run a test program. If we're cross-compiling, do it the old way. AC_MSG_CHECKING(for POSIX regcomp) AC_RUN_IFELSE([AC_LANG_SOURCE([[ #include #include int main() { regex_t r; regmatch_t rm; char *text = "xabcy"; if (regcomp(&r, "abc", 0)) return (1); if (regexec(&r, text, 1, &rm, 0)) return (1); #ifndef __WATCOMC__ if (rm.rm_so != 1) return (1); /* check for correct offset */ #else if (rm.rm_sp != text + 1) return (1); /* check for correct offset */ #endif return (0); }]])],[have_posix_regex=yes],[have_posix_regex=no],[have_posix_regex=unknown]) if test $have_posix_regex = yes; then AC_MSG_RESULT(yes) AC_DEFINE(HAVE_POSIX_REGCOMP) supported_regex="$supported_regex posix" have_regex=yes elif test $have_posix_regex = unknown; then AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include #include ]], [[regex_t *r; regfree(r);]])],[AC_MSG_RESULT(yes) AC_DEFINE(HAVE_POSIX_REGCOMP) have_regex=yes; supported_regex="$supported_regex posix"],[]) else AC_MSG_RESULT(no) fi fi fi if test $have_regex = no; then if test $WANT_REGEX = auto -o $WANT_REGEX = pcre2; then AC_CHECK_LIB(pcre2-8, pcre2_compile_8, [AC_DEFINE(HAVE_PCRE2) LIBS="$LIBS -lpcre2-8" have_regex=yes; supported_regex="$supported_regex pcre2"], []) fi fi if test $have_regex = no; then if test $WANT_REGEX = auto -o $WANT_REGEX = pcre; then AC_CHECK_LIB(pcre, pcre_compile, [AC_DEFINE(HAVE_PCRE) LIBS="$LIBS -lpcre" have_regex=yes; supported_regex="$supported_regex pcre"], []) fi fi if test $have_regex = no; then if test $WANT_REGEX = auto -o $WANT_REGEX = gnu; then AC_CHECK_LIB(c, re_compile_pattern, [AC_DEFINE(HAVE_GNU_REGEX) have_regex=yes; supported_regex="$supported_regex gnu"], []) fi fi if test $have_regex = no; then if test $WANT_REGEX = auto -o $WANT_REGEX = regcmp; then AC_CHECK_FUNC(regcmp, [AC_DEFINE(HAVE_REGCMP) have_regex=yes; supported_regex="$supported_regex regcmp"],[]) fi fi if test $have_regex = no; then if test $WANT_REGEX = auto -o $WANT_REGEX = regcomp; then AC_MSG_CHECKING(for V8 regcomp) AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include "regexp.h"]], [[regcomp("");]])],[AC_MSG_RESULT(yes); AC_DEFINE(HAVE_V8_REGCOMP) have_regex=yes; supported_regex="$supported_regex regcomp"],[AC_MSG_RESULT(no)]) fi fi if test $have_regex = no && test -f ${srcdir}/regexp.c; then if test $WANT_REGEX = auto -o $WANT_REGEX = regcomp-local; then AC_MSG_RESULT(using V8 regcomp -- local source); AC_DEFINE(HAVE_V8_REGCOMP) supported_regex="$supported_regex regcomp-local" AC_DEFINE(HAVE_REGEXEC2) REGEX_O='regexp.$(O)' AC_SUBST(REGEX_O) have_regex=yes fi fi if test $have_regex = no; then if test $WANT_REGEX = auto -o $WANT_REGEX = re_comp; then AC_MSG_CHECKING(for re_comp) AC_CHECK_FUNC(re_comp, [AC_DEFINE(HAVE_RE_COMP) have_regex=yes; supported_regex="$supported_regex re_comp"],[]) fi fi if test $have_regex = no; then if test $WANT_REGEX = auto -o $WANT_REGEX = none; then AC_MSG_RESULT(using no regex) else AC_MSG_WARN(cannot find regular expression library) fi AC_DEFINE(NO_REGEX) supported_regex="$supported_regex none" fi AC_MSG_RESULT(regular expression library: $supported_regex) AC_ARG_WITH(editor, [ --with-editor=PROGRAM use PROGRAM as the default editor [[vi]]], AC_DEFINE_UNQUOTED(EDIT_PGM, "$withval"), AC_DEFINE(EDIT_PGM, "vi")) AH_TOP([ /* Unix definition file for less. -*- C -*- * * This file has 3 sections: * User preferences. * Settings always true on Unix. * Settings automatically determined by configure. * * * * * * * WARNING * * * * * * * If you edit defines.h by hand, do "touch stamp-h" before you run make * so config.status doesn't overwrite your changes. */ /* User preferences. */ /* * SECURE is 1 if you wish to disable a bunch of features in order to * be safe to run by unprivileged users. * SECURE_COMPILE is set by the --with-secure configure option. */ #define SECURE SECURE_COMPILE /* * SHELL_ESCAPE is 1 if you wish to allow shell escapes. * (This is possible only if your system supplies the system() function.) */ #define SHELL_ESCAPE (!SECURE) /* * EXAMINE is 1 if you wish to allow examining files by name from within less. */ #define EXAMINE (!SECURE) /* * TAB_COMPLETE_FILENAME is 1 if you wish to allow the TAB key * to complete filenames at prompts. */ #define TAB_COMPLETE_FILENAME (!SECURE) /* * CMD_HISTORY is 1 if you wish to allow keys to cycle through * previous commands at prompts. */ #define CMD_HISTORY 1 /* * HILITE_SEARCH is 1 if you wish to have search targets to be * displayed in standout mode. */ #define HILITE_SEARCH 1 /* * EDITOR is 1 if you wish to allow editor invocation (the "v" command). * (This is possible only if your system supplies the system() function.) * EDIT_PGM is the name of the (default) editor to be invoked. */ #define EDITOR (!SECURE) /* * TAGS is 1 if you wish to support tag files. */ #define TAGS (!SECURE) /* * USERFILE is 1 if you wish to allow a .less file to specify * user-defined key bindings. */ #define USERFILE (!SECURE) /* * GLOB is 1 if you wish to have shell metacharacters expanded in filenames. * This will generally work if your system provides the "popen" function * and the "echo" shell command. */ #define GLOB (!SECURE) /* * PIPEC is 1 if you wish to have the "|" command * which allows the user to pipe data into a shell command. */ #define PIPEC (!SECURE && HAVE_POPEN) /* * LOGFILE is 1 if you wish to allow the -o option (to create log files). */ #define LOGFILE (!SECURE) /* * OSC8_SEARCH is 1 if you wish to allow the ^O^O and related commands * (to open OSC8 hyperlinks). */ #define OSC8_LINK 1 /* * GNU_OPTIONS is 1 if you wish to support the GNU-style command * line options --help and --version. */ #define GNU_OPTIONS 1 /* * ONLY_RETURN is 1 if you want RETURN to be the only input which * will continue past an error message. * Otherwise, any key will continue past an error message. */ #define ONLY_RETURN 0 /* * LESSKEYFILE is the filename of the default lesskey output file * (in the HOME directory). * LESSKEYFILE_SYS is the filename of the system-wide lesskey output file. * DEF_LESSKEYINFILE is the filename of the default lesskey input * (in the HOME directory). * LESSHISTFILE is the filename of the history file * (in the HOME directory). */ #define LESSKEYFILE ".less" #define LESSKEYFILE_SYS SYSDIR "/sysless" #define DEF_LESSKEYINFILE ".lesskey" #define LESSKEYINFILE_SYS SYSDIR "/syslesskey" #define LESSHISTFILE ".lesshst" /* Settings always true on Unix. */ /* * Define MSDOS_COMPILER if compiling under Microsoft C. */ #define MSDOS_COMPILER 0 /* * Pathname separator character. */ #define PATHNAME_SEP "/" /* * The value returned from tgetent on success. * Some HP-UX systems return 0 on success. */ #define TGETENT_OK 1 /* * HAVE_ANSI_PROTOS is 1 if your compiler supports ANSI function prototypes. */ #define HAVE_ANSI_PROTOS 1 /* * HAVE_SYS_TYPES_H is 1 if your system has . */ #define HAVE_SYS_TYPES_H 1 /* * Define if you have the header file. */ #undef HAVE_SGSTAT_H /* * HAVE_PERROR is 1 if your system has the perror() call. * (Actually, if it has sys_errlist, sys_nerr and errno.) */ #define HAVE_PERROR 1 /* * HAVE_TIME is 1 if your system has the time() call. */ #define HAVE_TIME 1 /* * HAVE_SHELL is 1 if your system supports a SHELL command interpreter. */ #define HAVE_SHELL 1 /* * Default shell metacharacters and meta-escape character. */ #define DEF_METACHARS "; *?\t\n'\"()<>[]|&^`#\\$%=~{}," #define DEF_METAESCAPE "\\" /* * HAVE_DUP is 1 if your system has the dup() call. */ #define HAVE_DUP 1 /* Define to 1 if you have the memcpy() function. */ #define HAVE_MEMCPY 1 /* Define to 1 if you have the strchr() function. */ #define HAVE_STRCHR 1 /* Define to 1 if you have the strstr() function. */ #define HAVE_STRSTR 1 /* Define to 1 to support reading lesskey source files (not just binary). */ #define HAVE_LESSKEYSRC 1 /* * Sizes of various buffers. */ #if 0 /* old sizes for small memory machines */ #define CMDBUF_SIZE 512 /* Buffer for multichar commands */ #define UNGOT_SIZE 100 /* Max chars to unget() */ #define LINEBUF_SIZE 1024 /* Max size of line in input file */ #define OUTBUF_SIZE 1024 /* Output buffer */ #define PROMPT_SIZE 200 /* Max size of prompt string */ #define TERMBUF_SIZE 2048 /* Termcap buffer for tgetent */ #define TERMSBUF_SIZE 1024 /* Buffer to hold termcap strings */ #define TAGLINE_SIZE 512 /* Max size of line in tags file */ #define TABSTOP_MAX 32 /* Max number of custom tab stops */ #else /* more reasonable sizes for modern machines */ #define CMDBUF_SIZE 2048 /* Buffer for multichar commands */ #define UNGOT_SIZE 200 /* Max chars to unget() */ #define LINEBUF_SIZE 1024 /* Initial max size of line in input file */ #define OUTBUF_SIZE 1024 /* Output buffer */ #define PROMPT_SIZE 2048 /* Max size of prompt string */ #define TERMBUF_SIZE 2048 /* Termcap buffer for tgetent */ #define TERMSBUF_SIZE 1024 /* Buffer to hold termcap strings */ #define TAGLINE_SIZE 1024 /* Max size of line in tags file */ #define TABSTOP_MAX 128 /* Max number of custom tab stops */ #endif /* Define as the return type of signal handlers (int or void). */ #define RETSIGTYPE void /* Settings automatically determined by configure. */ ]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT less-668/COPYING0000444060175306017530000010451514700607636012441 0ustar marknmarkn GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . less-668/cvt.c0000444060175306017530000000532114700607613012334 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Routines to convert text in various ways. Used by search. */ #include "less.h" #include "charset.h" extern int utf_mode; /* * Get the length of a buffer needed to convert a string. */ public size_t cvt_length(size_t len, int ops) { (void) ops; if (utf_mode) /* * Just copying a string in UTF-8 mode can cause it to grow * in length. * Four output bytes for one input byte is the worst case. */ len *= 4; return (len + 1); } /* * Allocate a chpos array for use by cvt_text. */ public int * cvt_alloc_chpos(size_t len) { size_t i; int *chpos = (int *) ecalloc(len, sizeof(int)); /* Initialize all entries to an invalid position. */ for (i = 0; i < len; i++) chpos[i] = -1; return (chpos); } /* * Convert text. Perform the transformations specified by ops. * Returns converted text in odst. The original offset of each * odst character (when it was in osrc) is returned in the chpos array. */ public void cvt_text(mutable char *odst, constant char *osrc, mutable int *chpos, mutable size_t *lenp, int ops) { char *dst; char *edst = odst; constant char *src; constant char *src_end; LWCHAR ch; if (lenp != NULL) src_end = osrc + *lenp; else src_end = osrc + strlen(osrc); for (src = osrc, dst = odst; src < src_end; ) { size_t src_pos = ptr_diff(src, osrc); size_t dst_pos = ptr_diff(dst, odst); struct ansi_state *pansi; ch = step_charc(&src, +1, src_end); if ((ops & CVT_BS) && ch == '\b' && dst > odst) { /* Delete backspace and preceding char. */ do { dst--; } while (dst > odst && utf_mode && !IS_ASCII_OCTET(*dst) && !IS_UTF8_LEAD(*dst)); } else if ((ops & CVT_ANSI) && (pansi = ansi_start(ch)) != NULL) { /* Skip to end of ANSI escape sequence. */ while (src < src_end) { if (ansi_step(pansi, ch) != ANSI_MID) break; ch = (LWCHAR) *src++; /* {{ would step_char work? }} */ } ansi_done(pansi); } else { /* Just copy the char to the destination buffer. */ char *cdst = dst; if ((ops & CVT_TO_LC) && IS_UPPER(ch)) ch = TO_LOWER(ch); put_wchar(&dst, ch); /* Record the original position of the char. */ if (chpos != NULL) { while (cdst++ < dst) chpos[dst_pos++] = (int) src_pos; /*{{type-issue}}*/ } } if (dst > edst) edst = dst; } if ((ops & CVT_CRLF) && edst > odst && edst[-1] == '\r') edst--; *edst = '\0'; if (lenp != NULL) *lenp = ptr_diff(edst, odst); /* FIXME: why was this here? if (chpos != NULL) chpos[dst - odst] = src - osrc; */ } less-668/decode.c0000444060175306017530000010157114700607613012767 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Routines to decode user commands. * * This is all table driven. * A command table is a sequence of command descriptors. * Each command descriptor is a sequence of bytes with the following format: * ...<0> * The characters c1,c2,...,cN are the command string; that is, * the characters which the user must type. * It is terminated by a null <0> byte. * The byte after the null byte is the action code associated * with the command string. * If an action byte is OR-ed with A_EXTRA, this indicates * that the option byte is followed by an extra string. * * There may be many command tables. * The first (default) table is built-in. * Other tables are read in from "lesskey" files. * All the tables are linked together and are searched in order. */ #include "less.h" #include "cmd.h" #include "lesskey.h" extern int erase_char, erase2_char, kill_char; extern int mousecap; extern int sc_height; #if USERFILE /* "content" is lesskey source, never binary. */ static void add_content_table(int (*call_lesskey)(constant char *, lbool), constant char *envname, lbool sysvar); static int add_hometable(int (*call_lesskey)(constant char *, lbool), constant char *envname, constant char *def_filename, lbool sysvar); #endif /* USERFILE */ #define SK(k) \ SK_SPECIAL_KEY, (k), 6, 1, 1, 1 /* * Command table is ordered roughly according to expected * frequency of use, so the common commands are near the beginning. */ static unsigned char cmdtable[] = { '\r',0, A_F_LINE, '\n',0, A_F_LINE, 'e',0, A_F_LINE, 'j',0, A_F_LINE, SK(SK_DOWN_ARROW),0, A_F_LINE, CONTROL('E'),0, A_F_LINE, CONTROL('N'),0, A_F_LINE, 'k',0, A_B_LINE, 'y',0, A_B_LINE, CONTROL('Y'),0, A_B_LINE, SK(SK_CONTROL_K),0, A_B_LINE, CONTROL('P'),0, A_B_LINE, SK(SK_UP_ARROW),0, A_B_LINE, 'J',0, A_FF_LINE, 'K',0, A_BF_LINE, 'Y',0, A_BF_LINE, 'd',0, A_F_SCROLL, CONTROL('D'),0, A_F_SCROLL, 'u',0, A_B_SCROLL, CONTROL('U'),0, A_B_SCROLL, ESC,'[','M',0, A_X11MOUSE_IN, ESC,'[','<',0, A_X116MOUSE_IN, ' ',0, A_F_SCREEN, 'f',0, A_F_SCREEN, CONTROL('F'),0, A_F_SCREEN, CONTROL('V'),0, A_F_SCREEN, SK(SK_PAGE_DOWN),0, A_F_SCREEN, 'b',0, A_B_SCREEN, CONTROL('B'),0, A_B_SCREEN, ESC,'v',0, A_B_SCREEN, SK(SK_PAGE_UP),0, A_B_SCREEN, 'z',0, A_F_WINDOW, 'w',0, A_B_WINDOW, ESC,' ',0, A_FF_SCREEN, 'F',0, A_F_FOREVER, ESC,'F',0, A_F_UNTIL_HILITE, 'R',0, A_FREPAINT, 'r',0, A_REPAINT, CONTROL('R'),0, A_REPAINT, CONTROL('L'),0, A_REPAINT, ESC,'u',0, A_UNDO_SEARCH, ESC,'U',0, A_CLR_SEARCH, 'g',0, A_GOLINE, SK(SK_HOME),0, A_GOLINE, '<',0, A_GOLINE, ESC,'<',0, A_GOLINE, 'p',0, A_PERCENT, '%',0, A_PERCENT, ESC,'(',0, A_LSHIFT, ESC,')',0, A_RSHIFT, ESC,'{',0, A_LLSHIFT, ESC,'}',0, A_RRSHIFT, SK(SK_RIGHT_ARROW),0, A_RSHIFT, SK(SK_LEFT_ARROW),0, A_LSHIFT, SK(SK_CTL_RIGHT_ARROW),0, A_RRSHIFT, SK(SK_CTL_LEFT_ARROW),0, A_LLSHIFT, '{',0, A_F_BRACKET|A_EXTRA, '{','}',0, '}',0, A_B_BRACKET|A_EXTRA, '{','}',0, '(',0, A_F_BRACKET|A_EXTRA, '(',')',0, ')',0, A_B_BRACKET|A_EXTRA, '(',')',0, '[',0, A_F_BRACKET|A_EXTRA, '[',']',0, ']',0, A_B_BRACKET|A_EXTRA, '[',']',0, ESC,CONTROL('F'),0, A_F_BRACKET, ESC,CONTROL('B'),0, A_B_BRACKET, 'G',0, A_GOEND, ESC,'G',0, A_GOEND_BUF, ESC,'>',0, A_GOEND, '>',0, A_GOEND, SK(SK_END),0, A_GOEND, 'P',0, A_GOPOS, '0',0, A_DIGIT, '1',0, A_DIGIT, '2',0, A_DIGIT, '3',0, A_DIGIT, '4',0, A_DIGIT, '5',0, A_DIGIT, '6',0, A_DIGIT, '7',0, A_DIGIT, '8',0, A_DIGIT, '9',0, A_DIGIT, '.',0, A_DIGIT, '=',0, A_STAT, CONTROL('G'),0, A_STAT, ':','f',0, A_STAT, '/',0, A_F_SEARCH, '?',0, A_B_SEARCH, ESC,'/',0, A_F_SEARCH|A_EXTRA, '*',0, ESC,'?',0, A_B_SEARCH|A_EXTRA, '*',0, 'n',0, A_AGAIN_SEARCH, ESC,'n',0, A_T_AGAIN_SEARCH, 'N',0, A_REVERSE_SEARCH, ESC,'N',0, A_T_REVERSE_SEARCH, '&',0, A_FILTER, 'm',0, A_SETMARK, 'M',0, A_SETMARKBOT, ESC,'m',0, A_CLRMARK, '\'',0, A_GOMARK, CONTROL('X'),CONTROL('X'),0, A_GOMARK, 'E',0, A_EXAMINE, ':','e',0, A_EXAMINE, CONTROL('X'),CONTROL('V'),0, A_EXAMINE, ':','n',0, A_NEXT_FILE, ':','p',0, A_PREV_FILE, CONTROL('O'),CONTROL('N'),0, A_OSC8_F_SEARCH, CONTROL('O'),'n',0, A_OSC8_F_SEARCH, CONTROL('O'),CONTROL('P'),0, A_OSC8_B_SEARCH, CONTROL('O'),'p',0, A_OSC8_B_SEARCH, CONTROL('O'),CONTROL('O'),0, A_OSC8_OPEN, CONTROL('O'),'o',0, A_OSC8_OPEN, CONTROL('O'),CONTROL('L'),0, A_OSC8_JUMP, CONTROL('O'),'l',0, A_OSC8_JUMP, 't',0, A_NEXT_TAG, 'T',0, A_PREV_TAG, ':','x',0, A_INDEX_FILE, ':','d',0, A_REMOVE_FILE, '-',0, A_OPT_TOGGLE, ':','t',0, A_OPT_TOGGLE|A_EXTRA, 't',0, 's',0, A_OPT_TOGGLE|A_EXTRA, 'o',0, '_',0, A_DISP_OPTION, '|',0, A_PIPE, 'v',0, A_VISUAL, '!',0, A_SHELL, '#',0, A_PSHELL, '+',0, A_FIRSTCMD, 'H',0, A_HELP, 'h',0, A_HELP, SK(SK_F1),0, A_HELP, 'V',0, A_VERSION, 'q',0, A_QUIT, 'Q',0, A_QUIT, ':','q',0, A_QUIT, ':','Q',0, A_QUIT, 'Z','Z',0, A_QUIT }; static unsigned char edittable[] = { '\t',0, EC_F_COMPLETE, /* TAB */ '\17',0, EC_B_COMPLETE, /* BACKTAB */ SK(SK_BACKTAB),0, EC_B_COMPLETE, /* BACKTAB */ ESC,'\t',0, EC_B_COMPLETE, /* ESC TAB */ CONTROL('L'),0, EC_EXPAND, /* CTRL-L */ CONTROL('V'),0, EC_LITERAL, /* BACKSLASH */ CONTROL('A'),0, EC_LITERAL, /* BACKSLASH */ ESC,'l',0, EC_RIGHT, /* ESC l */ SK(SK_RIGHT_ARROW),0, EC_RIGHT, /* RIGHTARROW */ ESC,'h',0, EC_LEFT, /* ESC h */ SK(SK_LEFT_ARROW),0, EC_LEFT, /* LEFTARROW */ ESC,'b',0, EC_W_LEFT, /* ESC b */ ESC,SK(SK_LEFT_ARROW),0, EC_W_LEFT, /* ESC LEFTARROW */ SK(SK_CTL_LEFT_ARROW),0, EC_W_LEFT, /* CTRL-LEFTARROW */ ESC,'w',0, EC_W_RIGHT, /* ESC w */ ESC,SK(SK_RIGHT_ARROW),0, EC_W_RIGHT, /* ESC RIGHTARROW */ SK(SK_CTL_RIGHT_ARROW),0, EC_W_RIGHT, /* CTRL-RIGHTARROW */ ESC,'i',0, EC_INSERT, /* ESC i */ SK(SK_INSERT),0, EC_INSERT, /* INSERT */ ESC,'x',0, EC_DELETE, /* ESC x */ SK(SK_DELETE),0, EC_DELETE, /* DELETE */ ESC,'X',0, EC_W_DELETE, /* ESC X */ ESC,SK(SK_DELETE),0, EC_W_DELETE, /* ESC DELETE */ SK(SK_CTL_DELETE),0, EC_W_DELETE, /* CTRL-DELETE */ SK(SK_CTL_BACKSPACE),0, EC_W_BACKSPACE, /* CTRL-BACKSPACE */ ESC,SK(SK_BACKSPACE),0, EC_W_BACKSPACE, /* ESC BACKSPACE */ ESC,'0',0, EC_HOME, /* ESC 0 */ SK(SK_HOME),0, EC_HOME, /* HOME */ ESC,'$',0, EC_END, /* ESC $ */ SK(SK_END),0, EC_END, /* END */ ESC,'k',0, EC_UP, /* ESC k */ SK(SK_UP_ARROW),0, EC_UP, /* UPARROW */ ESC,'j',0, EC_DOWN, /* ESC j */ SK(SK_DOWN_ARROW),0, EC_DOWN, /* DOWNARROW */ CONTROL('G'),0, EC_ABORT, /* CTRL-G */ ESC,'[','M',0, EC_X11MOUSE, /* X11 mouse report */ ESC,'[','<',0, EC_X116MOUSE, /* X11 1006 mouse report */ }; static unsigned char dflt_vartable[] = { 'L','E','S','S','_','O','S','C','8','_','m','a','n', 0, EV_OK|A_EXTRA, /* echo '%o' | sed -e "s,^man\:\\([^(]*\\)( *\\([^)]*\\)\.*,-man '\\2' '\\1'," -e"t X" -e"s,\.*,-echo Invalid man link," -e"\: X" */ 'e','c','h','o',' ','\'','%','o','\'',' ','|',' ','s','e','d',' ','-','e',' ','"','s',',','^','m','a','n','\\',':','\\','\\','(','[','^','(',']','*','\\','\\',')','(',' ','*','\\','\\','(','[','^',')',']','*','\\','\\',')','\\','.','*',',','-','m','a','n',' ','\'','\\','\\','2','\'',' ','\'','\\','\\','1','\'',',','"',' ','-','e','"','t',' ','X','"',' ','-','e','"','s',',','\\','.','*',',','-','e','c','h','o',' ','I','n','v','a','l','i','d',' ','m','a','n',' ','l','i','n','k',',','"',' ','-','e','"','\\',':',' ','X','"', 0, 'L','E','S','S','_','O','S','C','8','_','f','i','l','e', 0, EV_OK|A_EXTRA, /* eval `echo '%o' | sed -e "s,^file://\\([^/]*\\)\\(.*\\),_H=\\1;_P=\\2;_E=0," -e"t X" -e"s,.*,_E=1," -e": X"`; if [ "$_E" = 1 ]; then echo -echo Invalid file link; elif [ -z "$_H" -o "$_H" = localhost -o "$_H" = $HOSTNAME ]; then echo ":e $_P"; else echo -echo Cannot open remote file on "$_H"; fi */ 'e','v','a','l',' ','`','e','c','h','o',' ','\'','%','o','\'',' ','|',' ','s','e','d',' ','-','e',' ','"','s',',','^','f','i','l','e','\\',':','/','/','\\','\\','(','[','^','/',']','*','\\','\\',')','\\','\\','(','\\','.','*','\\','\\',')',',','_','H','=','\\','\\','1',';','_','P','=','\\','\\','2',';','_','E','=','0',',','"',' ','-','e','"','t',' ','X','"',' ','-','e','"','s',',','\\','.','*',',','_','E','=','1',',','"',' ','-','e','"','\\',':',' ','X','"','`',';',' ','i','f',' ','[',' ','"','$','_','E','"',' ','=',' ','1',' ',']',';',' ','t','h','e','n',' ','e','c','h','o',' ','-','e','c','h','o',' ','I','n','v','a','l','i','d',' ','f','i','l','e',' ','l','i','n','k',';',' ','e','l','i','f',' ','[',' ','-','z',' ','"','$','_','H','"',' ','-','o',' ','"','$','_','H','"',' ','=',' ','l','o','c','a','l','h','o','s','t',' ','-','o',' ','"','$','_','H','"',' ','=',' ','$','H','O','S','T','N','A','M','E',' ',']',';',' ','t','h','e','n',' ','e','c','h','o',' ','"','\\',':','e',' ','$','_','P','"',';',' ','e','l','s','e',' ','e','c','h','o',' ','-','e','c','h','o',' ','C','a','n','n','o','t',' ','o','p','e','n',' ','r','e','m','o','t','e',' ','f','i','l','e',' ','o','n',' ','"','$','_','H','"',';',' ','f','i', 0, }; /* * Structure to support a list of command tables. */ struct tablelist { struct tablelist *t_next; unsigned char *t_start; unsigned char *t_end; }; /* * List of command tables and list of line-edit tables. */ static struct tablelist *list_fcmd_tables = NULL; static struct tablelist *list_ecmd_tables = NULL; static struct tablelist *list_var_tables = NULL; static struct tablelist *list_sysvar_tables = NULL; /* * Expand special key abbreviations in a command table. */ static void expand_special_keys(unsigned char *table, size_t len) { unsigned char *fm; unsigned char *to; int a; constant char *repl; size_t klen; for (fm = table; fm < table + len; ) { /* * Rewrite each command in the table with any * special key abbreviations expanded. */ for (to = fm; *fm != '\0'; ) { if (*fm != SK_SPECIAL_KEY) { *to++ = *fm++; continue; } /* * After SK_SPECIAL_KEY, next byte is the type * of special key (one of the SK_* constants), * and the byte after that is the number of bytes, * N, reserved by the abbreviation (including the * SK_SPECIAL_KEY and key type bytes). * Replace all N bytes with the actual bytes * output by the special key on this terminal. */ repl = special_key_str(fm[1]); klen = fm[2] & 0377; fm += klen; if (repl == NULL || strlen(repl) > klen) repl = "\377"; while (*repl != '\0') *to++ = (unsigned char) *repl++; /*{{type-issue}}*/ } *to++ = '\0'; /* * Fill any unused bytes between end of command and * the action byte with A_SKIP. */ while (to <= fm) *to++ = A_SKIP; fm++; a = *fm++ & 0377; if (a & A_EXTRA) { while (*fm++ != '\0') continue; } } } /* * Expand special key abbreviations in a list of command tables. */ static void expand_cmd_table(struct tablelist *tlist) { struct tablelist *t; for (t = tlist; t != NULL; t = t->t_next) { expand_special_keys(t->t_start, ptr_diff(t->t_end, t->t_start)); } } /* * Expand special key abbreviations in all command tables. */ public void expand_cmd_tables(void) { expand_cmd_table(list_fcmd_tables); expand_cmd_table(list_ecmd_tables); expand_cmd_table(list_var_tables); expand_cmd_table(list_sysvar_tables); } /* * Initialize the command lists. */ public void init_cmds(void) { /* * Add the default command tables. */ add_fcmd_table(cmdtable, sizeof(cmdtable)); add_ecmd_table(edittable, sizeof(edittable)); add_sysvar_table(dflt_vartable, sizeof(dflt_vartable)); #if USERFILE #ifdef BINDIR /* For backwards compatibility */ /* Try to add tables in the OLD system lesskey file. */ add_hometable(lesskey, NULL, BINDIR "/.sysless", TRUE); #endif /* * Try to load lesskey source file or binary file. * If the source file succeeds, don't load binary file. * The binary file is likely to have been generated from * a (possibly out of date) copy of the src file, * so loading it is at best redundant. */ /* * Try to add tables in system lesskey src file. */ #if HAVE_LESSKEYSRC if (add_hometable(lesskey_src, "LESSKEYIN_SYSTEM", LESSKEYINFILE_SYS, TRUE) != 0) #endif { /* * Try to add the tables in the system lesskey binary file. */ add_hometable(lesskey, "LESSKEY_SYSTEM", LESSKEYFILE_SYS, TRUE); } /* * Try to add tables in the lesskey src file "$HOME/.lesskey". */ #if HAVE_LESSKEYSRC if (add_hometable(lesskey_src, "LESSKEYIN", DEF_LESSKEYINFILE, FALSE) != 0) #endif { /* * Try to add the tables in the standard lesskey binary file "$HOME/.less". */ add_hometable(lesskey, "LESSKEY", LESSKEYFILE, FALSE); } add_content_table(lesskey_content, "LESSKEY_CONTENT_SYSTEM", TRUE); add_content_table(lesskey_content, "LESSKEY_CONTENT", FALSE); #endif /* USERFILE */ } /* * Add a command table. */ static int add_cmd_table(struct tablelist **tlist, unsigned char *buf, size_t len) { struct tablelist *t; if (len == 0) return (0); /* * Allocate a tablelist structure, initialize it, * and link it into the list of tables. */ if ((t = (struct tablelist *) calloc(1, sizeof(struct tablelist))) == NULL) { return (-1); } t->t_start = buf; t->t_end = buf + len; t->t_next = NULL; if (*tlist == NULL) *tlist = t; else { struct tablelist *e; for (e = *tlist; e->t_next != NULL; e = e->t_next) continue; e->t_next = t; } return (0); } /* * Remove the last command table in a list. */ static void pop_cmd_table(struct tablelist **tlist) { struct tablelist *t; if (*tlist == NULL) return; if ((*tlist)->t_next == NULL) { t = *tlist; *tlist = NULL; } else { struct tablelist *e; for (e = *tlist; e->t_next->t_next != NULL; e = e->t_next) continue; t = e->t_next; e->t_next = NULL; } free(t); } /* * Add a command table. */ public void add_fcmd_table(unsigned char *buf, size_t len) { if (add_cmd_table(&list_fcmd_tables, buf, len) < 0) error("Warning: some commands disabled", NULL_PARG); } /* * Add an editing command table. */ public void add_ecmd_table(unsigned char *buf, size_t len) { if (add_cmd_table(&list_ecmd_tables, buf, len) < 0) error("Warning: some edit commands disabled", NULL_PARG); } /* * Add an environment variable table. */ static void add_var_table(struct tablelist **tlist, unsigned char *buf, size_t len) { struct xbuffer xbuf; xbuf_init(&xbuf); expand_evars((char*)buf, len, &xbuf); /*{{unsigned-issue}}*/ /* {{ We leak the table in buf. expand_evars scribbled in it so it's useless anyway. }} */ if (add_cmd_table(tlist, xbuf.data, xbuf.end) < 0) error("Warning: environment variables from lesskey file unavailable", NULL_PARG); } public void add_uvar_table(unsigned char *buf, size_t len) { add_var_table(&list_var_tables, buf, len); } public void add_sysvar_table(unsigned char *buf, size_t len) { add_var_table(&list_sysvar_tables, buf, len); } /* * Return action for a mouse wheel down event. */ static int mouse_wheel_down(void) { return ((mousecap == OPT_ONPLUS) ? A_B_MOUSE : A_F_MOUSE); } /* * Return action for a mouse wheel up event. */ static int mouse_wheel_up(void) { return ((mousecap == OPT_ONPLUS) ? A_F_MOUSE : A_B_MOUSE); } /* * Return action for the left mouse button trigger. */ static int mouse_button_left(int x, int y) { /* * {{ It would be better to return an action and then do this * in commands() but it's nontrivial to pass y to it. }} */ #if OSC8_LINK if (osc8_click(y, x)) return (A_NOACTION); #else (void) x; #endif /* OSC8_LINK */ if (y < sc_height-1) { setmark('#', y); screen_trashed(); } return (A_NOACTION); } /* * Return action for the right mouse button trigger. */ static int mouse_button_right(int x, int y) { (void) x; /* * {{ unlike mouse_button_left, we could return an action, * but keep it near mouse_button_left for readability. }} */ if (y < sc_height-1) { gomark('#'); screen_trashed(); } return (A_NOACTION); } /* * Read a decimal integer. Return the integer and set *pterm to the terminating char. */ static int getcc_int(char *pterm) { int num = 0; int digits = 0; for (;;) { char ch = getcc(); if (ch < '0' || ch > '9') { if (pterm != NULL) *pterm = ch; if (digits == 0) return (-1); return (num); } if (ckd_mul(&num, num, 10) || ckd_add(&num, num, ch - '0')) return -1; ++digits; } } /* * Read suffix of mouse input and return the action to take. * The prefix ("\e[M") has already been read. */ static int x11mouse_action(int skip) { static int prev_b = X11MOUSE_BUTTON_REL; int b = getcc() - X11MOUSE_OFFSET; int x = getcc() - X11MOUSE_OFFSET-1; int y = getcc() - X11MOUSE_OFFSET-1; if (skip) return (A_NOACTION); switch (b) { default: prev_b = b; return (A_NOACTION); case X11MOUSE_WHEEL_DOWN: return mouse_wheel_down(); case X11MOUSE_WHEEL_UP: return mouse_wheel_up(); case X11MOUSE_BUTTON_REL: /* to trigger on button-up, we check the last button-down */ switch (prev_b) { case X11MOUSE_BUTTON1: return mouse_button_left(x, y); /* is BUTTON2 the rightmost with 2-buttons mouse? */ case X11MOUSE_BUTTON2: case X11MOUSE_BUTTON3: return mouse_button_right(x, y); } return (A_NOACTION); } } /* * Read suffix of mouse input and return the action to take. * The prefix ("\e[<") has already been read. */ static int x116mouse_action(int skip) { char ch; int x, y; int b = getcc_int(&ch); if (b < 0 || ch != ';') return (A_NOACTION); x = getcc_int(&ch) - 1; if (x < 0 || ch != ';') return (A_NOACTION); y = getcc_int(&ch) - 1; if (y < 0) return (A_NOACTION); if (skip) return (A_NOACTION); switch (b) { case X11MOUSE_WHEEL_DOWN: return mouse_wheel_down(); case X11MOUSE_WHEEL_UP: return mouse_wheel_up(); case X11MOUSE_BUTTON1: if (ch != 'm') return (A_NOACTION); return mouse_button_left(x, y); default: if (ch != 'm') return (A_NOACTION); /* any other button release */ return mouse_button_right(x, y); } } /* * Search a single command table for the command string in cmd. */ static int cmd_search(constant char *cmd, constant char *table, constant char *endtable, constant char **sp) { constant char *p; constant char *q; int a = A_INVALID; *sp = NULL; for (p = table, q = cmd; p < endtable; p++, q++) { if (*p == *q) { /* * Current characters match. * If we're at the end of the string, we've found it. * Return the action code, which is the character * after the null at the end of the string * in the command table. */ if (*p == '\0') { a = *++p & 0377; while (a == A_SKIP) a = *++p & 0377; if (a == A_END_LIST) { /* * We get here only if the original * cmd string passed in was empty (""). * I don't think that can happen, * but just in case ... */ return (A_UINVALID); } /* * Check for an "extra" string. */ if (a & A_EXTRA) { *sp = ++p; while (*p != '\0') ++p; a &= ~A_EXTRA; } if (a == A_X11MOUSE_IN) a = x11mouse_action(0); else if (a == A_X116MOUSE_IN) a = x116mouse_action(0); q = cmd-1; } } else if (*q == '\0') { /* * Hit the end of the user's command, * but not the end of the string in the command table. * The user's command is incomplete. */ if (a == A_INVALID) a = A_PREFIX; q = cmd-1; } else { /* * Not a match. * Skip ahead to the next command in the * command table, and reset the pointer * to the beginning of the user's command. */ if (*p == '\0' && p[1] == A_END_LIST) { /* * A_END_LIST is a special marker that tells * us to abort the cmd search. * Negative action means accept this action * without searching any more cmd tables. */ return -a; } while (*p++ != '\0') continue; while (*p == A_SKIP) p++; if (*p & A_EXTRA) while (*++p != '\0') continue; q = cmd-1; } } return (a); } /* * Decode a command character and return the associated action. * The "extra" string, if any, is returned in sp. */ static int cmd_decode(struct tablelist *tlist, constant char *cmd, constant char **sp) { struct tablelist *t; int action = A_INVALID; /* * Search for the cmd thru all the command tables. * If we find it more than once, take the last one. */ *sp = NULL; for (t = tlist; t != NULL; t = t->t_next) { constant char *tsp; int taction = cmd_search(cmd, (char *) t->t_start, (char *) t->t_end, &tsp); if (taction == A_UINVALID) taction = A_INVALID; if (taction != A_INVALID) { *sp = tsp; if (taction < 0) return (-taction); action = taction; } } return (action); } /* * Decode a command from the cmdtables list. */ public int fcmd_decode(constant char *cmd, constant char **sp) { return (cmd_decode(list_fcmd_tables, cmd, sp)); } /* * Decode a command from the edittables list. */ public int ecmd_decode(constant char *cmd, constant char **sp) { return (cmd_decode(list_ecmd_tables, cmd, sp)); } /* * Get the value of an environment variable. * Looks first in the lesskey file, then in the real environment. */ public constant char * lgetenv(constant char *var) { int a; constant char *s; a = cmd_decode(list_var_tables, var, &s); if (a == EV_OK) return (s); s = getenv(var); if (s != NULL && *s != '\0') return (s); a = cmd_decode(list_sysvar_tables, var, &s); if (a == EV_OK) return (s); return (NULL); } /* * Like lgetenv, but also uses a buffer partially filled with an env table. */ public constant char * lgetenv_ext(constant char *var, unsigned char *env_buf, size_t env_buf_len) { constant char *r; size_t e; size_t env_end = 0; for (e = 0;;) { for (; e < env_buf_len; e++) if (env_buf[e] == '\0') break; if (e >= env_buf_len) break; if (env_buf[++e] & A_EXTRA) { for (e = e+1; e < env_buf_len; e++) if (env_buf[e] == '\0') break; } e++; if (e >= env_buf_len) break; env_end = e; } /* Temporarily add env_buf to var_tables, do the lookup, then remove it. */ add_uvar_table(env_buf, env_end); r = lgetenv(var); pop_cmd_table(&list_var_tables); return r; } /* * Is a string null or empty? */ public lbool isnullenv(constant char *s) { return (s == NULL || *s == '\0'); } #if USERFILE /* * Get an "integer" from a lesskey file. * Integers are stored in a funny format: * two bytes, low order first, in radix KRADIX. */ static size_t gint(unsigned char **sp) { size_t n; n = *(*sp)++; n += *(*sp)++ * KRADIX; return (n); } /* * Process an old (pre-v241) lesskey file. */ static int old_lesskey(unsigned char *buf, size_t len) { /* * Old-style lesskey file. * The file must end with either * ...,cmd,0,action * or ...,cmd,0,action|A_EXTRA,string,0 * So the last byte or the second to last byte must be zero. */ if (buf[len-1] != '\0' && buf[len-2] != '\0') return (-1); add_fcmd_table(buf, len); return (0); } /* * Process a new (post-v241) lesskey file. */ static int new_lesskey(unsigned char *buf, size_t len, lbool sysvar) { unsigned char *p; unsigned char *end; int c; size_t n; /* * New-style lesskey file. * Extract the pieces. */ if (buf[len-3] != C0_END_LESSKEY_MAGIC || buf[len-2] != C1_END_LESSKEY_MAGIC || buf[len-1] != C2_END_LESSKEY_MAGIC) return (-1); p = buf + 4; end = buf + len; for (;;) { c = *p++; switch (c) { case CMD_SECTION: n = gint(&p); if (p+n >= end) return (-1); add_fcmd_table(p, n); p += n; break; case EDIT_SECTION: n = gint(&p); if (p+n >= end) return (-1); add_ecmd_table(p, n); p += n; break; case VAR_SECTION: n = gint(&p); if (p+n >= end) return (-1); if (sysvar) add_sysvar_table(p, n); else add_uvar_table(p, n); p += n; break; case END_SECTION: return (0); default: /* * Unrecognized section type. */ return (-1); } } } /* * Set up a user command table, based on a "lesskey" file. */ public int lesskey(constant char *filename, lbool sysvar) { unsigned char *buf; POSITION len; ssize_t n; int f; if (!secure_allow(SF_LESSKEY)) return (1); /* * Try to open the lesskey file. */ f = open(filename, OPEN_READ); if (f < 0) return (1); /* * Read the file into a buffer. * We first figure out the size of the file and allocate space for it. * {{ Minimal error checking is done here. * A garbage .less file will produce strange results. * To avoid a large amount of error checking code here, we * rely on the lesskey program to generate a good .less file. }} */ len = filesize(f); if (len == NULL_POSITION || len < 3) { /* * Bad file (valid file must have at least 3 chars). */ close(f); return (-1); } if ((buf = (unsigned char *) calloc((size_t)len, sizeof(char))) == NULL) { close(f); return (-1); } if (less_lseek(f, (less_off_t)0, SEEK_SET) == BAD_LSEEK) { free(buf); close(f); return (-1); } n = read(f, buf, (size_t) len); close(f); if (n != len) { free(buf); return (-1); } /* * Figure out if this is an old-style (before version 241) * or new-style lesskey file format. */ if (len < 4 || buf[0] != C0_LESSKEY_MAGIC || buf[1] != C1_LESSKEY_MAGIC || buf[2] != C2_LESSKEY_MAGIC || buf[3] != C3_LESSKEY_MAGIC) return (old_lesskey(buf, (size_t) len)); return (new_lesskey(buf, (size_t) len, sysvar)); } #if HAVE_LESSKEYSRC static int lesskey_text(constant char *filename, lbool sysvar, lbool content) { static struct lesskey_tables tables; if (!secure_allow(SF_LESSKEY)) return (1); int r = content ? parse_lesskey_content(filename, &tables) : parse_lesskey(filename, &tables); if (r != 0) return (r); add_fcmd_table(tables.cmdtable.buf.data, tables.cmdtable.buf.end); add_ecmd_table(tables.edittable.buf.data, tables.edittable.buf.end); if (sysvar) add_sysvar_table(tables.vartable.buf.data, tables.vartable.buf.end); else add_uvar_table(tables.vartable.buf.data, tables.vartable.buf.end); return (0); } public int lesskey_src(constant char *filename, lbool sysvar) { return lesskey_text(filename, sysvar, FALSE); } public int lesskey_content(constant char *content, lbool sysvar) { return lesskey_text(content, sysvar, TRUE); } void lesskey_parse_error(char *s) { PARG parg; parg.p_string = s; error("%s", &parg); } #endif /* HAVE_LESSKEYSRC */ /* * Add a lesskey file. */ static int add_hometable(int (*call_lesskey)(constant char *, lbool), constant char *envname, constant char *def_filename, lbool sysvar) { char *filename = NULL; constant char *efilename; int r; if (envname != NULL && (efilename = lgetenv(envname)) != NULL) filename = save(efilename); else if (sysvar) /* def_filename is full path */ filename = save(def_filename); else /* def_filename is just basename */ { /* Remove first char (normally a dot) unless stored in $HOME. */ constant char *xdg = lgetenv("XDG_CONFIG_HOME"); if (!isnullenv(xdg)) filename = dirfile(xdg, &def_filename[1], 1); if (filename == NULL) { constant char *home = lgetenv("HOME"); if (!isnullenv(home)) { char *cfg_dir = dirfile(home, ".config", 0); filename = dirfile(cfg_dir, &def_filename[1], 1); free(cfg_dir); } } if (filename == NULL) filename = homefile(def_filename); } if (filename == NULL) return -1; r = (*call_lesskey)(filename, sysvar); free(filename); return (r); } /* * Add the content of a lesskey source file. */ static void add_content_table(int (*call_lesskey)(constant char *, lbool), constant char *envname, lbool sysvar) { (void) call_lesskey; /* not used */ constant char *content = lgetenv(envname); if (isnullenv(content)) return; lesskey_content(content, sysvar); } #endif /* USERFILE */ /* * See if a char is a special line-editing command. */ public int editchar(char c, int flags) { int action; int nch; constant char *s; char usercmd[MAX_CMDLEN+1]; /* * An editing character could actually be a sequence of characters; * for example, an escape sequence sent by pressing the uparrow key. * To match the editing string, we use the command decoder * but give it the edit-commands command table * This table is constructed to match the user's keyboard. */ if (c == erase_char || c == erase2_char) return (EC_BACKSPACE); if (c == kill_char) { #if MSDOS_COMPILER==WIN32C if (!win32_kbhit()) #endif return (EC_LINEKILL); } /* * Collect characters in a buffer. * Start with the one we have, and get more if we need them. */ nch = 0; do { if (nch > 0) c = getcc(); usercmd[nch] = c; usercmd[nch+1] = '\0'; nch++; action = ecmd_decode(usercmd, &s); } while (action == A_PREFIX && nch < MAX_CMDLEN); if (action == EC_X11MOUSE) return (x11mouse_action(1)); if (action == EC_X116MOUSE) return (x116mouse_action(1)); if (flags & ECF_NORIGHTLEFT) { switch (action) { case EC_RIGHT: case EC_LEFT: action = A_INVALID; break; } } #if CMD_HISTORY if (flags & ECF_NOHISTORY) { /* * The caller says there is no history list. * Reject any history-manipulation action. */ switch (action) { case EC_UP: case EC_DOWN: action = A_INVALID; break; } } #endif #if TAB_COMPLETE_FILENAME if (flags & ECF_NOCOMPLETE) { /* * The caller says we don't want any filename completion cmds. * Reject them. */ switch (action) { case EC_F_COMPLETE: case EC_B_COMPLETE: case EC_EXPAND: action = A_INVALID; break; } } #endif if ((flags & ECF_PEEK) || action == A_INVALID) { /* * We're just peeking, or we didn't understand the command. * Unget all the characters we read in the loop above. * This does NOT include the original character that was * passed in as a parameter. */ while (nch > 1) { ungetcc(usercmd[--nch]); } } else { if (s != NULL) ungetsc(s); } return action; } less-668/defines.ds0000644060175306017530000002536014700607715013353 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* DOS definition file for less. */ /* * This file has 2 sections: * User preferences. * Settings always true for MS-DOS systems. */ /* User preferences. */ /* * SECURE is 1 if you wish to disable a bunch of features in order to * be safe to run by unprivileged users. */ #define SECURE 0 /* * SHELL_ESCAPE is 1 if you wish to allow shell escapes. * (This is possible only if your system supplies the system() function.) */ #define SHELL_ESCAPE (!SECURE) /* * EXAMINE is 1 if you wish to allow examining files by name from within less. */ #define EXAMINE (!SECURE) /* * TAB_COMPLETE_FILENAME is 1 if you wish to allow the TAB key * to complete filenames at prompts. */ #define TAB_COMPLETE_FILENAME (!SECURE) /* * CMD_HISTORY is 1 if you wish to allow keys to cycle through * previous commands at prompts. */ #define CMD_HISTORY 1 /* * HILITE_SEARCH is 1 if you wish to have search targets to be * displayed in standout mode. */ #define HILITE_SEARCH 1 /* * EDITOR is 1 if you wish to allow editor invocation (the "v" command). * (This is possible only if your system supplies the system() function.) * EDIT_PGM is the name of the (default) editor to be invoked. */ #define EDITOR (!SECURE) #define EDIT_PGM "vi" /* * TAGS is 1 if you wish to support tag files. */ #define TAGS (!SECURE) /* * USERFILE is 1 if you wish to allow a .less file to specify * user-defined key bindings. */ #define USERFILE (!SECURE) /* * GLOB is 1 if you wish to have shell metacharacters expanded in filenames. * This will generally work if your system provides the "popen" function * and the "echo" shell command. */ #ifdef __DJGPP__ #define GLOB (!SECURE) #else #define GLOB 0 #endif /* * PIPEC is 1 if you wish to have the "|" command * which allows the user to pipe data into a shell command. */ #ifdef __DJGPP__ #define PIPEC (!SECURE) #else #define PIPEC 0 #endif /* * LOGFILE is 1 if you wish to allow the -o option (to create log files). */ #define LOGFILE (!SECURE) /* * OSC8_SEARCH is 1 if you wish to allow the ^O^O and related commands * (to open OSC8 hyperlinks). */ #define OSC8_LINK 1 /* * GNU_OPTIONS is 1 if you wish to support the GNU-style command * line options --help and --version. */ #define GNU_OPTIONS 1 /* * ONLY_RETURN is 1 if you want RETURN to be the only input which * will continue past an error message. * Otherwise, any key will continue past an error message. */ #define ONLY_RETURN 0 /* * LESSKEYFILE is the filename of the default lesskey output file * (in the HOME directory). * LESSKEYFILE_SYS is the filename of the system-wide lesskey output file. * DEF_LESSKEYINFILE is the filename of the default lesskey input * (in the HOME directory). * LESSHISTFILE is the filename of the history file * (in the HOME directory). */ #define LESSKEYFILE "_less" #define LESSKEYFILE_SYS "c:\\_sysless" #define DEF_LESSKEYINFILE "_lesskey" #define LESSKEYINFILE_SYS "c:\\_syslesskey" #define LESSHISTFILE "_lesshst" /* Settings always true for MS-DOS systems. */ /* * Define MSDOS_COMPILER if compiling for MS-DOS. */ #ifdef __DJGPP__ #define MSDOS_COMPILER DJGPPC #else #ifdef __BORLANDC__ #define MSDOS_COMPILER BORLANDC #else #define MSDOS_COMPILER MSOFTC #endif #endif /* * Pathname separator character. */ #define PATHNAME_SEP "\\" /* * HAVE_ANSI_PROTOS is 1 if your compiler supports ANSI function prototypes. */ #define HAVE_ANSI_PROTOS 1 /* * HAVE_SYS_TYPES_H is 1 if your system has . */ #define HAVE_SYS_TYPES_H 1 /* * Define if you have the header file. */ #define HAVE_SGSTAT_H 0 /* * HAVE_PERROR is 1 if your system has the perror() call. * (Actually, if it has sys_errlist, sys_nerr and errno.) */ #define HAVE_PERROR 1 /* * HAVE_TIME is 1 if your system has the time() call. */ #define HAVE_TIME 1 /* * HAVE_SHELL is 1 if your system supports a SHELL command interpreter. */ #define HAVE_SHELL 0 /* * Default shell metacharacters and meta-escape character. */ #define DEF_METACHARS "; *?\t\n'\"()<>|&" #define DEF_METAESCAPE "" /* * HAVE_DUP is 1 if your system has the dup() call. */ #define HAVE_DUP 1 /* Define to 1 to support reading lesskey source files (not just binary). */ #define HAVE_LESSKEYSRC 1 /* * Sizes of various buffers. */ #if 0 /* old sizes for small memory machines #define CMDBUF_SIZE 512 /* Buffer for multichar commands */ #define UNGOT_SIZE 100 /* Max chars to unget() */ #define LINEBUF_SIZE 1024 /* Max size of line in input file */ #define OUTBUF_SIZE 1024 /* Output buffer */ #define PROMPT_SIZE 200 /* Max size of prompt string */ #define TERMBUF_SIZE 2048 /* Termcap buffer for tgetent */ #define TERMSBUF_SIZE 1024 /* Buffer to hold termcap strings */ #define TAGLINE_SIZE 512 /* Max size of line in tags file */ #define TABSTOP_MAX 32 /* Max number of custom tab stops */ #else /* more reasonable sizes for modern machines */ #define CMDBUF_SIZE 2048 /* Buffer for multichar commands */ #define UNGOT_SIZE 200 /* Max chars to unget() */ #define LINEBUF_SIZE 1024 /* Initial max size of line in input file */ #define OUTBUF_SIZE 1024 /* Output buffer */ #define PROMPT_SIZE 2048 /* Max size of prompt string */ #define TERMBUF_SIZE 2048 /* Termcap buffer for tgetent */ #define TERMSBUF_SIZE 1024 /* Buffer to hold termcap strings */ #define TAGLINE_SIZE 1024 /* Max size of line in tags file */ #define TABSTOP_MAX 128 /* Max number of custom tab stops */ #endif /* Define to `long' if doesn't define. */ #if MSDOS_COMPILER==BORLANDC #define off_t long #endif /* Define if you need to in order for stat and other things to work. */ /* #undef _POSIX_SOURCE */ /* Define as the return type of signal handlers (int or void). */ #define RETSIGTYPE void /* * Regular expression library. * Define exactly one of the following to be 1: * HAVE_POSIX_REGCOMP: POSIX regcomp() and regex.h * HAVE_RE_COMP: BSD re_comp() * HAVE_REGCMP: System V regcmp() * HAVE_V8_REGCOMP: Henry Spencer V8 regcomp() and regexp.h * NO_REGEX: pattern matching is supported, but without metacharacters. */ /* #undef HAVE_POSIX_REGCOMP */ /* #undef HAVE_RE_COMP */ /* #undef HAVE_REGCMP */ /* #undef HAVE_V8_REGCOMP */ #if MSDOS_COMPILER==DJGPPC #define HAVE_POSIX_REGCOMP 1 #else #define NO_REGEX 1 #endif /* Define HAVE_VOID if your compiler supports the "void" type. */ #define HAVE_VOID 1 /* Define HAVE_CONST if your compiler supports the "const" modifier. */ #define HAVE_CONST 1 /* Define HAVE_TIME_T if your system supports the "time_t" type. */ #define HAVE_TIME_T 1 /* Define HAVE_STRERROR if you have the strerror() function. */ #define HAVE_STRERROR 1 /* Define HAVE_FILENO if you have the fileno() macro. */ #define HAVE_FILENO 1 /* Define HAVE_ERRNO if you have the errno variable */ /* Define MUST_DEFINE_ERRNO if you have errno but it is not defined * in errno.h */ #if MSDOS_COMPILER==MSOFTC || MSDOS_COMPILER==DJGPPC #define HAVE_ERRNO 1 #define MUST_DEFINE_ERRNO 0 #else #define HAVE_ERRNO 1 #define MUST_DEFINE_ERRNO 1 #endif /* Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable */ #define HAVE_SYS_ERRLIST 1 /* Define HAVE_OSPEED if your termcap library has the ospeed variable */ /* Define MUST_DEFINE_OSPEED if you have ospeed but it is not defined * in termcap.h. */ #define HAVE_OSPEED 0 #define MUST_DEFINE_OSPEED 0 /* Define HAVE_LOCALE if you have locale.h and setlocale. */ #define HAVE_LOCALE 0 /* Define HAVE_TERMIOS_FUNCS if you have tcgetattr/tcsetattr */ #define HAVE_TERMIOS_FUNCS 0 /* Define HAVE_UPPER_LOWER if you have isupper, islower, toupper, tolower */ #define HAVE_UPPER_LOWER 1 /* Define if you have the _setjmp function. */ #if MSDOS_COMPILER==MSOFTC || MSDOS_COMPILER==DJGPPC #define HAVE__SETJMP 0 #else #define HAVE__SETJMP 1 #endif /* Define if you have the memcpy function. */ #define HAVE_MEMCPY 1 /* Define if you have the popen function. */ #if MSDOS_COMPILER==DJGPPC #define HAVE_POPEN 1 #else #define HAVE_POPEN 0 #endif /* Define if you have the sigsetmask function. */ #define HAVE_SIGSETMASK 0 /* Define if you have the sigprocmask function. */ #define HAVE_SIGPROCMASK 0 /* Define if you have the sigset_t type and sigemptyset macro */ #define HAVE_SIGSET_T 0 #define HAVE_SIGEMPTYSET 0 /* Define if you have the stat function. */ #define HAVE_STAT 1 /* Define if you have the strchr function. */ #define HAVE_STRCHR 1 /* Define if you have the system function. */ #define HAVE_SYSTEM 1 /* Define if you have the snprintf function. */ #define HAVE_SNPRINTF 0 /* Define if you have the header file. */ #define HAVE_CTYPE_H 1 /* Define if you have the header file. */ #define HAVE_WCTYPE_H 0 /* Define if you have the header file. */ #define HAVE_ERRNO_H 1 /* Define if you have the header file. */ #define HAVE_FCNTL_H 1 /* Define if you have the header file. */ #define HAVE_LIMITS_H 1 /* Define if you have the header file. */ #define HAVE_STDIO_H 1 /* Define if you have the header file. */ #define HAVE_STDLIB_H 1 /* Define if you have the header file. */ #define HAVE_STRING_H 1 /* Define if you have the header file. */ #define HAVE_SYS_IOCTL_H 0 /* Define if you have the header file. */ #define HAVE_SYS_PTEM_H 0 /* Define if you have the header file. */ #define HAVE_SYS_STREAM_H 0 /* Define if you have the header file. */ #define HAVE_TERMCAP_H 0 /* Define if you have the header file. */ #define HAVE_TERMIO_H 0 /* Define if you have the header file. */ #define HAVE_TERMIOS_H 0 /* Define if you have the header file. */ #define HAVE_TIME_H 1 /* Define if you have the header file. */ #if MSDOS_COMPILER==DJGPPC #define HAVE_UNISTD_H 1 #else #define HAVE_UNISTD_H 0 #endif /* Define if you have the header file. */ #if MSDOS_COMPILER==MSOFTC #define HAVE_VALUES_H 0 #else #define HAVE_VALUES_H 1 #endif #if MSDOS_COMPILER == MSOFTC && _MSC_VER >= 700 /* * The names of these things changed in Microsoft C version 7.0. */ #define videoconfig _videoconfig #define rccoord _rccoord #define O_RDONLY _O_RDONLY #define O_WRONLY _O_WRONLY #define O_APPEND _O_APPEND #define O_BINARY _O_BINARY #define O_TEXT _O_TEXT #define find_t _find_t #define stat _stat #define S_IFMT _S_IFMT #define S_IFDIR _S_IFDIR #define S_IFREG _S_IFREG #define dup _dup #define open _open #define lseek _lseek #define write _write #define creat _creat #define fstat _fstat #define isatty _isatty #define close _close #define read _read #define ungetch _ungetch #define kbhit _kbhit #define getch _getch #endif less-668/defines.h.in0000444060175306017530000003132714700607655013602 0ustar marknmarkn/* defines.h.in. Generated from configure.ac by autoheader. */ /* Unix definition file for less. -*- C -*- * * This file has 3 sections: * User preferences. * Settings always true on Unix. * Settings automatically determined by configure. * * * * * * * WARNING * * * * * * * If you edit defines.h by hand, do "touch stamp-h" before you run make * so config.status doesn't overwrite your changes. */ /* User preferences. */ /* * SECURE is 1 if you wish to disable a bunch of features in order to * be safe to run by unprivileged users. * SECURE_COMPILE is set by the --with-secure configure option. */ #define SECURE SECURE_COMPILE /* * SHELL_ESCAPE is 1 if you wish to allow shell escapes. * (This is possible only if your system supplies the system() function.) */ #define SHELL_ESCAPE (!SECURE) /* * EXAMINE is 1 if you wish to allow examining files by name from within less. */ #define EXAMINE (!SECURE) /* * TAB_COMPLETE_FILENAME is 1 if you wish to allow the TAB key * to complete filenames at prompts. */ #define TAB_COMPLETE_FILENAME (!SECURE) /* * CMD_HISTORY is 1 if you wish to allow keys to cycle through * previous commands at prompts. */ #define CMD_HISTORY 1 /* * HILITE_SEARCH is 1 if you wish to have search targets to be * displayed in standout mode. */ #define HILITE_SEARCH 1 /* * EDITOR is 1 if you wish to allow editor invocation (the "v" command). * (This is possible only if your system supplies the system() function.) * EDIT_PGM is the name of the (default) editor to be invoked. */ #define EDITOR (!SECURE) /* * TAGS is 1 if you wish to support tag files. */ #define TAGS (!SECURE) /* * USERFILE is 1 if you wish to allow a .less file to specify * user-defined key bindings. */ #define USERFILE (!SECURE) /* * GLOB is 1 if you wish to have shell metacharacters expanded in filenames. * This will generally work if your system provides the "popen" function * and the "echo" shell command. */ #define GLOB (!SECURE) /* * PIPEC is 1 if you wish to have the "|" command * which allows the user to pipe data into a shell command. */ #define PIPEC (!SECURE && HAVE_POPEN) /* * LOGFILE is 1 if you wish to allow the -o option (to create log files). */ #define LOGFILE (!SECURE) /* * OSC8_SEARCH is 1 if you wish to allow the ^O^O and related commands * (to open OSC8 hyperlinks). */ #define OSC8_LINK 1 /* * GNU_OPTIONS is 1 if you wish to support the GNU-style command * line options --help and --version. */ #define GNU_OPTIONS 1 /* * ONLY_RETURN is 1 if you want RETURN to be the only input which * will continue past an error message. * Otherwise, any key will continue past an error message. */ #define ONLY_RETURN 0 /* * LESSKEYFILE is the filename of the default lesskey output file * (in the HOME directory). * LESSKEYFILE_SYS is the filename of the system-wide lesskey output file. * DEF_LESSKEYINFILE is the filename of the default lesskey input * (in the HOME directory). * LESSHISTFILE is the filename of the history file * (in the HOME directory). */ #define LESSKEYFILE ".less" #define LESSKEYFILE_SYS SYSDIR "/sysless" #define DEF_LESSKEYINFILE ".lesskey" #define LESSKEYINFILE_SYS SYSDIR "/syslesskey" #define LESSHISTFILE ".lesshst" /* Settings always true on Unix. */ /* * Define MSDOS_COMPILER if compiling under Microsoft C. */ #define MSDOS_COMPILER 0 /* * Pathname separator character. */ #define PATHNAME_SEP "/" /* * The value returned from tgetent on success. * Some HP-UX systems return 0 on success. */ #define TGETENT_OK 1 /* * HAVE_ANSI_PROTOS is 1 if your compiler supports ANSI function prototypes. */ #define HAVE_ANSI_PROTOS 1 /* * HAVE_SYS_TYPES_H is 1 if your system has . */ #define HAVE_SYS_TYPES_H 1 /* * Define if you have the header file. */ #undef HAVE_SGSTAT_H /* * HAVE_PERROR is 1 if your system has the perror() call. * (Actually, if it has sys_errlist, sys_nerr and errno.) */ #define HAVE_PERROR 1 /* * HAVE_TIME is 1 if your system has the time() call. */ #define HAVE_TIME 1 /* * HAVE_SHELL is 1 if your system supports a SHELL command interpreter. */ #define HAVE_SHELL 1 /* * Default shell metacharacters and meta-escape character. */ #define DEF_METACHARS "; *?\t\n'\"()<>[]|&^`#\\$%=~{}," #define DEF_METAESCAPE "\\" /* * HAVE_DUP is 1 if your system has the dup() call. */ #define HAVE_DUP 1 /* Define to 1 if you have the memcpy() function. */ #define HAVE_MEMCPY 1 /* Define to 1 if you have the strchr() function. */ #define HAVE_STRCHR 1 /* Define to 1 if you have the strstr() function. */ #define HAVE_STRSTR 1 /* Define to 1 to support reading lesskey source files (not just binary). */ #define HAVE_LESSKEYSRC 1 /* * Sizes of various buffers. */ #if 0 /* old sizes for small memory machines */ #define CMDBUF_SIZE 512 /* Buffer for multichar commands */ #define UNGOT_SIZE 100 /* Max chars to unget() */ #define LINEBUF_SIZE 1024 /* Max size of line in input file */ #define OUTBUF_SIZE 1024 /* Output buffer */ #define PROMPT_SIZE 200 /* Max size of prompt string */ #define TERMBUF_SIZE 2048 /* Termcap buffer for tgetent */ #define TERMSBUF_SIZE 1024 /* Buffer to hold termcap strings */ #define TAGLINE_SIZE 512 /* Max size of line in tags file */ #define TABSTOP_MAX 32 /* Max number of custom tab stops */ #else /* more reasonable sizes for modern machines */ #define CMDBUF_SIZE 2048 /* Buffer for multichar commands */ #define UNGOT_SIZE 200 /* Max chars to unget() */ #define LINEBUF_SIZE 1024 /* Initial max size of line in input file */ #define OUTBUF_SIZE 1024 /* Output buffer */ #define PROMPT_SIZE 2048 /* Max size of prompt string */ #define TERMBUF_SIZE 2048 /* Termcap buffer for tgetent */ #define TERMSBUF_SIZE 1024 /* Buffer to hold termcap strings */ #define TAGLINE_SIZE 1024 /* Max size of line in tags file */ #define TABSTOP_MAX 128 /* Max number of custom tab stops */ #endif /* Define as the return type of signal handlers (int or void). */ #define RETSIGTYPE void /* Settings automatically determined by configure. */ /* Define EDIT_PGM to your editor. */ #undef EDIT_PGM /* Define HAVE_CONST if your compiler supports the "const" modifier. */ #undef HAVE_CONST /* Define to 1 if you have the header file. */ #undef HAVE_CTYPE_H /* Define HAVE_ERRNO if you have the errno variable. */ #undef HAVE_ERRNO /* Define to 1 if you have the header file. */ #undef HAVE_ERRNO_H /* Define to 1 if you have the 'fchmod' function. */ #undef HAVE_FCHMOD /* Define to 1 if you have the header file. */ #undef HAVE_FCNTL_H /* Define HAVE_FILENO if you have the fileno() macro. */ #undef HAVE_FILENO /* Define to 1 if you have the 'fsync' function. */ #undef HAVE_FSYNC /* GNU regex library */ #undef HAVE_GNU_REGEX /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_LIMITS_H /* Define to 1 if you have the header file. */ #undef HAVE_LINUX_MAGIC_H /* Define HAVE_LOCALE if you have locale.h and setlocale. */ #undef HAVE_LOCALE /* Define to 1 if you have the 'nanosleep' function. */ #undef HAVE_NANOSLEEP /* Define to 1 if you have the header file. */ #undef HAVE_NCURSESW_TERMCAP_H /* Define to 1 if you have the header file. */ #undef HAVE_NCURSES_TERMCAP_H /* Define HAVE_OSPEED if your termcap library has the ospeed variable. */ #undef HAVE_OSPEED /* PCRE (Perl-compatible regular expression) library */ #undef HAVE_PCRE /* PCRE2 (Perl-compatible regular expression) library */ #undef HAVE_PCRE2 /* Define to 1 if you have the 'poll' function. */ #undef HAVE_POLL /* Define to 1 if you have the 'popen' function. */ #undef HAVE_POPEN /* POSIX regcomp() and regex.h */ #undef HAVE_POSIX_REGCOMP /* Define to 1 if you have the 'realpath' function. */ #undef HAVE_REALPATH /* System V regcmp() */ #undef HAVE_REGCMP /* */ #undef HAVE_REGEXEC2 /* BSD re_comp() */ #undef HAVE_RE_COMP /* Define HAVE_SIGEMPTYSET if you have the sigemptyset macro. */ #undef HAVE_SIGEMPTYSET /* Define to 1 if you have the 'sigprocmask' function. */ #undef HAVE_SIGPROCMASK /* Define to 1 if you have the 'sigsetmask' function. */ #undef HAVE_SIGSETMASK /* Define to 1 if the system has the type 'sigset_t'. */ #undef HAVE_SIGSET_T /* Define to 1 if you have the 'snprintf' function. */ #undef HAVE_SNPRINTF /* Define to 1 if you have the 'stat' function. */ #undef HAVE_STAT /* Define HAVE_STAT_INO if your struct stat has st_ino and st_dev. */ #undef HAVE_STAT_INO /* Define to 1 if you have the header file. */ #undef HAVE_STDCKDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDIO_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define HAVE_STRERROR if you have the strerror() function. */ #undef HAVE_STRERROR /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the 'strsignal' function. */ #undef HAVE_STRSIGNAL /* Define to 1 if you have the 'system' function. */ #undef HAVE_SYSTEM /* Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable. */ #undef HAVE_SYS_ERRLIST /* Define to 1 if you have the header file. */ #undef HAVE_SYS_IOCTL_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STREAM_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_WAIT_H /* Define to 1 if you have the header file. */ #undef HAVE_TERMCAP_H /* Define HAVE_TERMIOS_FUNCS if you have tcgetattr/tcsetattr. */ #undef HAVE_TERMIOS_FUNCS /* Define to 1 if you have the header file. */ #undef HAVE_TERMIOS_H /* Define to 1 if you have the header file. */ #undef HAVE_TERMIO_H /* Define to 1 if you have the header file. */ #undef HAVE_TIME_H /* Define HAVE_TIME_T if your system supports the "time_t" type. */ #undef HAVE_TIME_T /* Define to 1 if you have the 'ttyname' function. */ #undef HAVE_TTYNAME /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define HAVE_UPPER_LOWER if you have isupper, islower, toupper, tolower. */ #undef HAVE_UPPER_LOWER /* Define to 1 if you have the 'usleep' function. */ #undef HAVE_USLEEP /* Henry Spencer V8 regcomp() and regexp.h */ #undef HAVE_V8_REGCOMP /* Define to 1 if you have the header file. */ #undef HAVE_VALUES_H /* Define HAVE_VOID if your compiler supports the "void" type. */ #undef HAVE_VOID /* Define HAVE_WCTYPE if you have iswupper, iswlower, towupper, towlower. */ #undef HAVE_WCTYPE /* Define to 1 if you have the header file. */ #undef HAVE_WCTYPE_H /* Define to 1 if you have the '_setjmp' function. */ #undef HAVE__SETJMP /* Define MUST_DEFINE_ERRNO if you have errno but it is not define in errno.h. */ #undef MUST_DEFINE_ERRNO /* Define MUST_DEFINE_OSPEED if you have ospeed but it is not defined in termcap.h. */ #undef MUST_DEFINE_OSPEED /* pattern matching is supported, but without metacharacters. */ #undef NO_REGEX /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define SECURE_COMPILE=1 to build a secure version of less. */ #undef SECURE_COMPILE /* Define to 1 if the 'S_IS*' macros in do not work properly. */ #undef STAT_MACROS_BROKEN /* Define to 1 if all of the C89 standard headers exist (not just the ones required in a freestanding environment). This macro is provided for backward compatibility; new code need not use it. */ #undef STDC_HEADERS /* Number of bits in a file offset, on hosts where this is settable. */ #undef _FILE_OFFSET_BITS /* Define to 1 on platforms where this makes off_t a 64-bit type. */ #undef _LARGE_FILES /* Number of bits in time_t, on hosts where this is settable. */ #undef _TIME_BITS /* Define to 1 on platforms where this makes time_t a 64-bit type. */ #undef __MINGW_USE_VC2005_COMPAT /* Define to empty if 'const' does not conform to ANSI C. */ #undef const /* Define to 'long int' if does not define. */ #undef off_t /* Define as 'unsigned int' if doesn't define. */ #undef size_t less-668/defines.o20000644060175306017530000002266714700607720013270 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* OS/2 definition file for less. */ /* * This file has 2 sections: * User preferences. * Settings always true for the emx compiler for OS/2 systems. */ /* User preferences. */ /* * SECURE is 1 if you wish to disable a bunch of features in order to * be safe to run by unprivileged users. */ #define SECURE 0 /* * SHELL_ESCAPE is 1 if you wish to allow shell escapes. * (This is possible only if your system supplies the system() function.) */ #define SHELL_ESCAPE (!SECURE) /* * EXAMINE is 1 if you wish to allow examining files by name from within less. */ #define EXAMINE (!SECURE) /* * TAB_COMPLETE_FILENAME is 1 if you wish to allow the TAB key * to complete filenames at prompts. */ #define TAB_COMPLETE_FILENAME (!SECURE) /* * CMD_HISTORY is 1 if you wish to allow keys to cycle through * previous commands at prompts. */ #define CMD_HISTORY 1 /* * HILITE_SEARCH is 1 if you wish to have search targets to be * displayed in standout mode. */ #define HILITE_SEARCH 1 /* * EDITOR is 1 if you wish to allow editor invocation (the "v" command). * (This is possible only if your system supplies the system() function.) * EDIT_PGM is the name of the (default) editor to be invoked. */ #define EDITOR (!SECURE) #define EDIT_PGM "vi" /* * TAGS is 1 if you wish to support tag files. */ #define TAGS (!SECURE) /* * USERFILE is 1 if you wish to allow a .less file to specify * user-defined key bindings. */ #define USERFILE (!SECURE) /* * GLOB is 1 if you wish to have shell metacharacters expanded in filenames. * This will generally work if your system provides the "popen" function * and the "echo" shell command. */ #define GLOB (!SECURE) /* * PIPEC is 1 if you wish to have the "|" command * which allows the user to pipe data into a shell command. */ #define PIPEC (!SECURE) /* * LOGFILE is 1 if you wish to allow the -o option (to create log files). */ #define LOGFILE (!SECURE) /* * OSC8_SEARCH is 1 if you wish to allow the ^O^O and related commands * (to open OSC8 hyperlinks). */ #define OSC8_LINK 1 /* * GNU_OPTIONS is 1 if you wish to support the GNU-style command * line options --help and --version. */ #define GNU_OPTIONS 1 /* * ONLY_RETURN is 1 if you want RETURN to be the only input which * will continue past an error message. * Otherwise, any key will continue past an error message. */ #define ONLY_RETURN 0 /* * LESSKEYFILE is the filename of the default lesskey output file * (in the HOME directory). * LESSKEYFILE_SYS is the filename of the system-wide lesskey output file. * DEF_LESSKEYINFILE is the filename of the default lesskey input * (in the HOME directory). * LESSHISTFILE is the filename of the history file * (in the HOME directory). */ #define LESSKEYFILE "less.ini" #define LESSKEYFILE_SYS "C:\\sysless.ini" #define DEF_LESSKEYINFILE "lesskey.ini" #define LESSKEYINFILE_SYS "C:\\syslesskey.ini" #define LESSHISTFILE "lesshst.ini" /* Settings always true for the emx compiler for OS/2 systems. */ #define OS2 1 /* * Pathname separator character. */ #define PATHNAME_SEP "\\" /* * HAVE_ANSI_PROTOS is 1 if your compiler supports ANSI function prototypes. */ #define HAVE_ANSI_PROTOS 1 /* * HAVE_SYS_TYPES_H is 1 if your system has . */ #define HAVE_SYS_TYPES_H 1 /* * Define if you have the header file. */ #define HAVE_SGSTAT_H 0 /* * HAVE_PERROR is 1 if your system has the perror() call. * (Actually, if it has sys_errlist, sys_nerr and errno.) */ #define HAVE_PERROR 1 /* * HAVE_TIME is 1 if your system has the time() call. */ #define HAVE_TIME 1 /* * HAVE_SHELL is 1 if your system supports a SHELL command interpreter. */ #define HAVE_SHELL 0 /* * Default shell metacharacters and meta-escape character. */ #define DEF_METACHARS "; *?\t\n'\"()<>|&" #define DEF_METAESCAPE "" /* * HAVE_DUP is 1 if your system has the dup() call. */ #define HAVE_DUP 1 /* Define to 1 to support reading lesskey source files (not just binary). */ #define HAVE_LESSKEYSRC 1 /* * Sizes of various buffers. */ #if 0 /* old sizes for small memory machines #define CMDBUF_SIZE 512 /* Buffer for multichar commands */ #define UNGOT_SIZE 100 /* Max chars to unget() */ #define LINEBUF_SIZE 1024 /* Max size of line in input file */ #define OUTBUF_SIZE 1024 /* Output buffer */ #define PROMPT_SIZE 200 /* Max size of prompt string */ #define TERMBUF_SIZE 2048 /* Termcap buffer for tgetent */ #define TERMSBUF_SIZE 1024 /* Buffer to hold termcap strings */ #define TAGLINE_SIZE 512 /* Max size of line in tags file */ #define TABSTOP_MAX 32 /* Max number of custom tab stops */ #else /* more reasonable sizes for modern machines */ #define CMDBUF_SIZE 2048 /* Buffer for multichar commands */ #define UNGOT_SIZE 200 /* Max chars to unget() */ #define LINEBUF_SIZE 1024 /* Initial max size of line in input file */ #define OUTBUF_SIZE 1024 /* Output buffer */ #define PROMPT_SIZE 2048 /* Max size of prompt string */ #define TERMBUF_SIZE 2048 /* Termcap buffer for tgetent */ #define TERMSBUF_SIZE 1024 /* Buffer to hold termcap strings */ #define TAGLINE_SIZE 1024 /* Max size of line in tags file */ #define TABSTOP_MAX 128 /* Max number of custom tab stops */ #endif /* Define to `long' if doesn't define. */ /* #define off_t long */ /* Define if you need to in order for stat and other things to work. */ /* #undef _POSIX_SOURCE */ /* Define as the return type of signal handlers (int or void). */ #define RETSIGTYPE void /* * Regular expression library. * Define exactly one of the following to be 1: * HAVE_POSIX_REGCOMP: POSIX regcomp() and regex.h * HAVE_RE_COMP: BSD re_comp() * HAVE_REGCMP: System V regcmp() * HAVE_V8_REGCOMP: Henry Spencer V8 regcomp() and regexp.h * NO_REGEX: pattern matching is supported, but without metacharacters. */ /* #undef HAVE_POSIX_REGCOMP */ /* #undef HAVE_RE_COMP */ /* #undef HAVE_REGCMP */ #define HAVE_V8_REGCOMP 1 /* #undef NO_REGEX */ #define HAVE_REGEXEC2 1 /* Define HAVE_VOID if your compiler supports the "void" type. */ #define HAVE_VOID 1 /* Define HAVE_CONST if your compiler supports the "const" modifier. */ #define HAVE_CONST 1 /* Define HAVE_TIME_T if your system supports the "time_t" type. */ #define HAVE_TIME_T 1 /* Define HAVE_STRERROR if you have the strerror() function. */ #define HAVE_STRERROR 1 /* Define HAVE_FILENO if you have the fileno() macro. */ #define HAVE_FILENO 1 /* Define HAVE_ERRNO if you have the errno variable */ /* Define MUST_DEFINE_ERRNO if you have errno but it is not define * in errno.h */ #define HAVE_ERRNO 1 /* #undef MUST_DEFINE_ERRNO */ /* Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable */ #define HAVE_SYS_ERRLIST 1 /* Define HAVE_OSPEED if your termcap library has the ospeed variable */ #define HAVE_OSPEED 1 /* Define MUST_DEFINE_OSPEED if you have ospeed but it is not defined * in termcap.h. */ #define MUST_DEFINE_OSPEED 0 /* Define HAVE_LOCALE if you have locale.h and setlocale. */ #define HAVE_LOCALE 1 /* Define HAVE_TERMIOS_FUNCS if you have tcgetattr/tcsetattr */ #define HAVE_TERMIOS_FUNCS 1 /* Define HAVE_UPPER_LOWER if you have isupper, islower, toupper, tolower */ #define HAVE_UPPER_LOWER 1 /* Define if you have the _setjmp function. */ #define HAVE__SETJMP 0 /* Define if you have the memcpy function. */ #define HAVE_MEMCPY 1 /* Define if you have the popen function. */ #define HAVE_POPEN 1 /* Define if you have the sigsetmask function. */ #define HAVE_SIGSETMASK 0 /* Define if you have the sigprocmask function. */ #define HAVE_SIGPROCMASK 1 /* Define if you have the sigset_t type and sigemptyset macro */ #define HAVE_SIGSET_T 1 #define HAVE_SIGEMPTYSET 1 /* Define if you have the stat function. */ #define HAVE_STAT 1 /* Define if you have the strchr function. */ #define HAVE_STRCHR 1 /* Define if you have the strstr function. */ #define HAVE_STRSTR 1 /* Define if you have the system function. */ #define HAVE_SYSTEM 1 /* Define if you have the snprintf function. */ #define HAVE_SNPRINTF 0 /* Define if you have the header file. */ #define HAVE_CTYPE_H 1 /* Define if you have the header file. */ #define HAVE_WCTYPE_H 0 /* Define if you have the header file. */ #define HAVE_ERRNO_H 1 /* Define if you have the header file. */ #define HAVE_FCNTL_H 1 /* Define if you have the header file. */ #define HAVE_LIMITS_H 1 /* Define if you have the header file. */ #define HAVE_STDIO_H 1 /* Define if you have the header file. */ #define HAVE_STDLIB_H 1 /* Define if you have the header file. */ #define HAVE_STRING_H 1 /* Define if you have the header file. */ #define HAVE_SYS_IOCTL_H 1 /* Define if you have the header file. */ #define HAVE_SYS_PTEM_H 0 /* Define if you have the header file. */ #define HAVE_SYS_STREAM_H 0 /* Define if you have the header file. */ #define HAVE_TERMCAP_H 1 /* Define if you have the header file. */ #define HAVE_TERMIO_H 1 /* Define if you have the header file. */ #define HAVE_TERMIOS_H 1 /* Define if you have the header file. */ #define HAVE_TIME_H 1 /* Define if you have the header file. */ #define HAVE_UNISTD_H 1 /* Define if you have the header file. */ #define HAVE_VALUES_H 0 less-668/defines.o90000644060175306017530000002302714700607721013267 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* OS/9 definition file for less. */ /* * This file has 2 sections: * User preferences. * Settings always true for OS-9 systems. */ /* User preferences. */ /* * SECURE is 1 if you wish to disable a bunch of features in order to * be safe to run by unprivileged users. */ #define SECURE 0 /* * SHELL_ESCAPE is 1 if you wish to allow shell escapes. * (This is possible only if your system supplies the system() function.) */ #define SHELL_ESCAPE (!SECURE) /* * EXAMINE is 1 if you wish to allow examining files by name from within less. */ #define EXAMINE (!SECURE) /* * TAB_COMPLETE_FILENAME is 1 if you wish to allow the TAB key * to complete filenames at prompts. */ #define TAB_COMPLETE_FILENAME 1 /* * CMD_HISTORY is 1 if you wish to allow keys to cycle through * previous commands at prompts. */ #define CMD_HISTORY 1 /* * HILITE_SEARCH is 1 if you wish to have search targets to be * displayed in standout mode. */ #define HILITE_SEARCH 1 /* * EDITOR is 1 if you wish to allow editor invocation (the "v" command). * (This is possible only if your system supplies the system() function.) * EDIT_PGM is the name of the (default) editor to be invoked. */ #define EDITOR (!SECURE) #define EDIT_PGM "umacs" /* * TAGS is 1 if you wish to support tag files. */ #define TAGS (!SECURE) /* * USERFILE is 1 if you wish to allow a .less file to specify * user-defined key bindings. */ #define USERFILE (!SECURE) /* * GLOB is 1 if you wish to have shell metacharacters expanded in filenames. * This will generally work if your system provides the "popen" function * and the "echo" shell command. */ #define GLOB (!SECURE) /* * PIPEC is 1 if you wish to have the "|" command * which allows the user to pipe data into a shell command. */ #define PIPEC (!SECURE) /* * LOGFILE is 1 if you wish to allow the -o option (to create log files). */ #define LOGFILE (!SECURE) /* * OSC8_SEARCH is 1 if you wish to allow the ^O^O and related commands * (to open OSC8 hyperlinks). */ #define OSC8_LINK 1 /* * GNU_OPTIONS is 1 if you wish to support the GNU-style command * line options --help and --version. */ #define GNU_OPTIONS 1 /* * ONLY_RETURN is 1 if you want RETURN to be the only input which * will continue past an error message. * Otherwise, any key will continue past an error message. */ #define ONLY_RETURN 0 /* * LESSKEYFILE is the filename of the default lesskey output file * (in the HOME directory). * LESSKEYFILE_SYS is the filename of the system-wide lesskey output file. * DEF_LESSKEYINFILE is the filename of the default lesskey input * (in the HOME directory). * LESSHISTFILE is the filename of the history file * (in the HOME directory). */ #define LESSKEYFILE ".less" #define LESSKEYFILE_SYS "/.sysless" #define DEF_LESSKEYINFILE ".lesskey" #define LESSKEYINFILE_SYS "/.syslesskey" #define LESSHISTFILE ".lesshst" /* Settings always true for OS-9. */ /* This is not needed; it is defined by the compiler. */ /* #define _OSK 1 */ #define OS2 0 #define MSDOS_COMPILER 0 /* * Pathname separator character. */ #define PATHNAME_SEP "/" /* * HAVE_ANSI_PROTOS is 1 if your compiler supports ANSI function prototypes. */ #define HAVE_ANSI_PROTOS 1 /* * HAVE_SYS_TYPES_H is 1 if your system has . */ #define HAVE_SYS_TYPES_H 0 /* * Define if you have the header file. */ #define HAVE_SGSTAT_H 1 /* * HAVE_PERROR is 1 if your system has the perror() call. * (Actually, if it has sys_errlist, sys_nerr and errno.) */ #if _OSK_MWC32 #define HAVE_PERROR 0 #else #define HAVE_PERROR 1 #endif /* * HAVE_TIME is 1 if your system has the time() call. */ #define HAVE_TIME 1 /* * HAVE_SHELL is 1 if your system supports a SHELL command interpreter. */ #define HAVE_SHELL 0 /* * Default shell metacharacters and meta-escape character. */ #define DEF_METACHARS "; \t\n'\"()<>|&^`#\\" #define DEF_METAESCAPE "\\" /* * HAVE_DUP is 1 if your system has the dup() call. */ #define HAVE_DUP 0 /* Define to 1 to support reading lesskey source files (not just binary). */ #define HAVE_LESSKEYSRC 1 /* * Sizes of various buffers. */ #if 0 /* old sizes for small memory machines #define CMDBUF_SIZE 512 /* Buffer for multichar commands */ #define UNGOT_SIZE 100 /* Max chars to unget() */ #define LINEBUF_SIZE 1024 /* Max size of line in input file */ #define OUTBUF_SIZE 1024 /* Output buffer */ #define PROMPT_SIZE 200 /* Max size of prompt string */ #define TERMBUF_SIZE 2048 /* Termcap buffer for tgetent */ #define TERMSBUF_SIZE 1024 /* Buffer to hold termcap strings */ #define TAGLINE_SIZE 512 /* Max size of line in tags file */ #define TABSTOP_MAX 32 /* Max number of custom tab stops */ #else /* more reasonable sizes for modern machines */ #define CMDBUF_SIZE 2048 /* Buffer for multichar commands */ #define UNGOT_SIZE 200 /* Max chars to unget() */ #define LINEBUF_SIZE 1024 /* Initial max size of line in input file */ #define OUTBUF_SIZE 1024 /* Output buffer */ #define PROMPT_SIZE 2048 /* Max size of prompt string */ #define TERMBUF_SIZE 2048 /* Termcap buffer for tgetent */ #define TERMSBUF_SIZE 1024 /* Buffer to hold termcap strings */ #define TAGLINE_SIZE 1024 /* Max size of line in tags file */ #define TABSTOP_MAX 128 /* Max number of custom tab stops */ #endif /* Define to `long' if doesn't define. */ #define off_t long /* Define if you need to in order for stat and other things to work. */ #define _POSIX_SOURCE 0 /* Define as the return type of signal handlers (int or void). */ #if _OSK_MWC32 #define RETSIGTYPE int #else #define RETSIGTYPE void #endif /* * Regular expression library. * Define exactly one of the following to be 1: * HAVE_POSIX_REGCOMP: POSIX regcomp() and regex.h * HAVE_RE_COMP: BSD re_comp() * HAVE_REGCMP: System V regcmp() * HAVE_V8_REGCOMP: Henry Spencer V8 regcomp() and regexp.h * NO_REGEX: pattern matching is supported, but without metacharacters. */ #define HAVE_POSIX_REGCOMP 0 #define HAVE_RE_COMP 0 #define HAVE_REGCMP 0 #define HAVE_V8_REGCOMP 1 #define NO_REGEX 0 #define HAVE_REGEXEC2 1 /* Define HAVE_VOID if your compiler supports the "void" type. */ #define HAVE_VOID 1 /* Define HAVE_CONST if your compiler supports the "const" modifier. */ #define HAVE_CONST 0 /* Define HAVE_TIME_T if your system supports the "time_t" type. */ #define HAVE_TIME_T 1 /* Define HAVE_STRERROR if you have the strerror() function. */ #define HAVE_STRERROR 0 /* Define HAVE_FILENO if you have the fileno() macro. */ #define HAVE_FILENO 1 /* Define HAVE_ERRNO if you have the errno variable */ /* Define MUST_DEFINE_ERRNO if you have errno but it is not define * in errno.h */ #define HAVE_ERRNO 1 #define MUST_DEFINE_ERRNO 0 /* Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable */ #define HAVE_SYS_ERRLIST 0 /* Define HAVE_OSPEED if your termcap library has the ospeed variable */ /* Define MUST_DEFINE_OSPEED if you have ospeed but it is not defined * in termcap.h. */ #define HAVE_OSPEED 0 #define MUST_DEFINE_OSPEED 0 /* Define HAVE_LOCALE if you have locale.h and setlocale. */ #define HAVE_LOCALE 0 /* Define HAVE_TERMIOS_FUNCS if you have tcgetattr/tcsetattr */ #define HAVE_TERMIOS_FUNCS 0 /* Define HAVE_UPPER_LOWER if you have isupper, islower, toupper, tolower */ #define HAVE_UPPER_LOWER 1 /* Define if you have the _setjmp function. */ #define HAVE__SETJMP 1 /* Define if you have the memcpy function. */ #define HAVE_MEMCPY 1 /* Define if you have the popen function. */ #define HAVE_POPEN 1 /* Define if you have the sigsetmask function. */ #define HAVE_SIGSETMASK 0 /* Define if you have the sigprocmask function. */ #define HAVE_SIGPROCMASK 0 /* Define if you have the sigset_t type and sigemptyset macro */ #define HAVE_SIGSET_T 0 #define HAVE_SIGEMPTYSET 0 /* Define if you have the stat function. */ #define HAVE_STAT 0 /* Define if you have the strchr function. */ #define HAVE_STRCHR 0 /* Define if you have the system function. */ #define HAVE_SYSTEM 1 /* Define if you have the snprintf function. */ #define HAVE_SNPRINTF 0 /* Define if you have the header file. */ #define HAVE_CTYPE_H 1 /* Define if you have the header file. */ #define HAVE_WCTYPE_H 0 /* Define if you have the header file. */ #define HAVE_ERRNO_H 1 /* Define if you have the header file. */ #define HAVE_FCNTL_H 0 /* Define if you have the header file. */ #define HAVE_LIMITS_H 0 /* Define if you have the header file. */ #define HAVE_STDIO_H 1 /* Define if you have the header file. */ #define HAVE_STRING_H 1 /* Define if you have the header file. */ #if _OSK_MWC32 #define HAVE_STDLIB_H 0 #else #define HAVE_STDLIB_H 1 #endif /* Define if you have the header file. */ #define HAVE_SYS_IOCTL_H 0 /* Define if you have the header file. */ #define HAVE_SYS_PTEM_H 0 /* Define if you have the header file. */ #define HAVE_SYS_STREAM_H 0 /* Define if you have the header file. */ #define HAVE_TERMCAP_H 1 /* Define if you have the header file. */ #define HAVE_TERMIO_H 0 /* Define if you have the header file. */ #define HAVE_TERMIOS_H 0 /* Define if you have the header file. */ #define HAVE_TIME_H 1 /* Define if you have the header file. */ #define HAVE_UNISTD_H 0 /* Define if you have the header file. */ #define HAVE_VALUES_H 0 less-668/defines.wn0000644060175306017530000002450314700607723013366 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* Windows definition file for less. */ /* * This file has 2 sections: * User preferences. * Settings always true for Windows systems. */ /* User preferences. */ /* * SECURE is 1 if you wish to disable a bunch of features in order to * be safe to run by unprivileged users. */ #define SECURE 0 /* * SHELL_ESCAPE is 1 if you wish to allow shell escapes. * (This is possible only if your system supplies the system() function.) */ #define SHELL_ESCAPE (!SECURE) /* * EXAMINE is 1 if you wish to allow examining files by name from within less. */ #define EXAMINE (!SECURE) /* * TAB_COMPLETE_FILENAME is 1 if you wish to allow the TAB key * to complete filenames at prompts. */ #define TAB_COMPLETE_FILENAME (!SECURE) /* * CMD_HISTORY is 1 if you wish to allow keys to cycle through * previous commands at prompts. */ #define CMD_HISTORY 1 /* * HILITE_SEARCH is 1 if you wish to have search targets to be * displayed in standout mode. */ #define HILITE_SEARCH 1 /* * EDITOR is 1 if you wish to allow editor invocation (the "v" command). * (This is possible only if your system supplies the system() function.) * EDIT_PGM is the name of the (default) editor to be invoked. */ #define EDITOR (!SECURE) #define EDIT_PGM "edit" /* * TAGS is 1 if you wish to support tag files. */ #define TAGS (!SECURE) /* * USERFILE is 1 if you wish to allow a .less file to specify * user-defined key bindings. */ #define USERFILE (!SECURE) /* * GLOB is 1 if you wish to have shell metacharacters expanded in filenames. * This will generally work if your system provides the "popen" function * and the "echo" shell command. */ #define GLOB 0 /* * PIPEC is 1 if you wish to have the "|" command * which allows the user to pipe data into a shell command. */ #define PIPEC 1 /* * LOGFILE is 1 if you wish to allow the -o option (to create log files). */ #define LOGFILE (!SECURE) /* * OSC8_SEARCH is 1 if you wish to allow the ^O^O and related commands * (to open OSC8 hyperlinks). */ #define OSC8_LINK 1 /* * GNU_OPTIONS is 1 if you wish to support the GNU-style command * line options --help and --version. */ #define GNU_OPTIONS 1 /* * ONLY_RETURN is 1 if you want RETURN to be the only input which * will continue past an error message. * Otherwise, any key will continue past an error message. */ #define ONLY_RETURN 0 /* * LESSKEYFILE is the filename of the default lesskey output file * (in the HOME directory). * LESSKEYFILE_SYS is the filename of the system-wide lesskey output file. * DEF_LESSKEYINFILE is the filename of the default lesskey input * (in the HOME directory). * LESSHISTFILE is the filename of the history file * (in the HOME directory). */ #define LESSKEYFILE "_less" #define LESSKEYFILE_SYS "c:\\_sysless" #define DEF_LESSKEYINFILE "_lesskey" #define LESSKEYINFILE_SYS "c:\\_syslesskey" #define LESSHISTFILE "_lesshst" /* Settings always true for Windows systems. */ #define MSDOS_COMPILER WIN32C /* * Pathname separator character. */ #define PATHNAME_SEP "\\" /* * HAVE_ANSI_PROTOS is 1 if your compiler supports ANSI function prototypes. */ #define HAVE_ANSI_PROTOS 1 /* * HAVE_SYS_TYPES_H is 1 if your system has . */ #define HAVE_SYS_TYPES_H 1 /* * Define if you have the header file. */ #define HAVE_SGSTAT_H 0 /* * HAVE_PERROR is 1 if your system has the perror() call. * (Actually, if it has sys_errlist, sys_nerr and errno.) */ #define HAVE_PERROR 1 /* * HAVE_TIME is 1 if your system has the time() call. */ #define HAVE_TIME 1 /* * HAVE_SHELL is 1 if your system supports a SHELL command interpreter. */ #define HAVE_SHELL 0 /* * Default shell metacharacters and meta-escape character. */ #define DEF_METACHARS "; *?\t\n'\"()<>|&" #define DEF_METAESCAPE "" /* * HAVE_DUP is 1 if your system has the dup() call. */ #define HAVE_DUP 1 /* Define to 1 to support reading lesskey source files (not just binary). */ #define HAVE_LESSKEYSRC 1 /* * Sizes of various buffers. */ #if 0 /* old sizes for small memory machines */ #define CMDBUF_SIZE 512 /* Buffer for multichar commands */ #define UNGOT_SIZE 100 /* Max chars to unget() */ #define LINEBUF_SIZE 1024 /* Max size of line in input file */ #define OUTBUF_SIZE 1024 /* Output buffer */ #define PROMPT_SIZE 200 /* Max size of prompt string */ #define TERMBUF_SIZE 2048 /* Termcap buffer for tgetent */ #define TERMSBUF_SIZE 1024 /* Buffer to hold termcap strings */ #define TAGLINE_SIZE 512 /* Max size of line in tags file */ #define TABSTOP_MAX 32 /* Max number of custom tab stops */ #else /* more reasonable sizes for modern machines */ #define CMDBUF_SIZE 2048 /* Buffer for multichar commands */ #define UNGOT_SIZE 200 /* Max chars to unget() */ #define LINEBUF_SIZE 1024 /* Initial max size of line in input file */ #define OUTBUF_SIZE 8192 /* Output buffer: 8K avoids end-of-buffer bugs in win_flush */ #define PROMPT_SIZE 2048 /* Max size of prompt string */ #define TERMBUF_SIZE 2048 /* Termcap buffer for tgetent */ #define TERMSBUF_SIZE 1024 /* Buffer to hold termcap strings */ #define TAGLINE_SIZE 1024 /* Max size of line in tags file */ #define TABSTOP_MAX 128 /* Max number of custom tab stops */ #endif /* Define to `long' if doesn't define. */ /* #define off_t long */ /* Define if you need to in order for stat and other things to work. */ /* #undef _POSIX_SOURCE */ /* Define as the return type of signal handlers (int or void). */ #define RETSIGTYPE void /* * Regular expression library. * Define exactly one of the following to be 1: * HAVE_POSIX_REGCOMP: POSIX regcomp() and regex.h * HAVE_RE_COMP: BSD re_comp() * HAVE_REGCMP: System V regcmp() * HAVE_V8_REGCOMP: Henry Spencer V8 regcomp() and regexp.h * NO_REGEX: pattern matching is supported, but without metacharacters. */ /* #undef HAVE_POSIX_REGCOMP */ /* #undef HAVE_RE_COMP */ /* #undef HAVE_REGCMP */ #ifdef MINGW #ifdef USE_POSIX_REGCOMP #define HAVE_POSIX_REGCOMP 1 #else #ifdef USE_GNU_REGEX #define HAVE_GNU_REGEX 1 #else #ifdef USE_REGEXP_C #define HAVE_V8_REGCOMP 1 #define HAVE_REGEXEC2 1 #else #define NO_REGEX 1 #endif #endif #endif #else #define HAVE_V8_REGCOMP 1 /* #undef NO_REGEX */ #define HAVE_REGEXEC2 1 #endif /* Define HAVE_VOID if your compiler supports the "void" type. */ #define HAVE_VOID 1 /* Define HAVE_CONST if your compiler supports the "const" modifier. */ #define HAVE_CONST 1 /* Define HAVE_TIME_T if your system supports the "time_t" type. */ #define HAVE_TIME_T 1 /* Define HAVE_STRERROR if you have the strerror() function. */ #define HAVE_STRERROR 1 /* Define HAVE_FILENO if you have the fileno() macro. */ #define HAVE_FILENO 1 /* Define HAVE_ERRNO if you have the errno variable */ /* Define MUST_DEFINE_ERRNO if you have errno but it is not define * in errno.h */ #define HAVE_ERRNO 1 #define MUST_DEFINE_ERRNO 0 /* Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable */ #define HAVE_SYS_ERRLIST 1 /* Define HAVE_OSPEED if your termcap library has the ospeed variable */ #define HAVE_OSPEED 0 /* Define MUST_DEFINE_OSPEED if you have ospeed but it is not defined * in termcap.h. */ #define MUST_DEFINE_OSPEED 0 /* Define HAVE_LOCALE if you have locale.h and setlocale. */ #define HAVE_LOCALE 0 /* Define HAVE_TERMIOS_FUNCS if you have tcgetattr/tcsetattr */ #define HAVE_TERMIOS_FUNCS 0 /* Define HAVE_UPPER_LOWER if you have isupper, islower, toupper, tolower */ #define HAVE_UPPER_LOWER 1 /* Define if you have the _setjmp function. */ #define HAVE__SETJMP 1 /* Define if you have the memcpy function. */ #define HAVE_MEMCPY 1 /* Define if you have the popen function. */ #define HAVE_POPEN 1 /* Define if you have the sigsetmask function. */ #define HAVE_SIGSETMASK 0 /* Define if you have the sigprocmask function. */ #define HAVE_SIGPROCMASK 0 /* Define if you have the sigset_t type and sigemptyset macro */ #define HAVE_SIGSET_T 0 #define HAVE_SIGEMPTYSET 0 /* Define if you have the stat function. */ #define HAVE_STAT 1 /* Define if you have the strchr function. */ #define HAVE_STRCHR 1 /* Define if you have the system function. */ #define HAVE_SYSTEM 1 /* Define if you have the snprintf function. */ #define HAVE_SNPRINTF 1 /* Define if you have the header file. */ #define HAVE_CTYPE_H 1 /* Define if you have the header file. */ #define HAVE_WCTYPE_H 1 /* Define if you have the header file. */ #define HAVE_ERRNO_H 1 /* Define if you have the header file. */ #define HAVE_FCNTL_H 1 /* Define if you have the header file. */ #define HAVE_LIMITS_H 1 /* Define if you have the header file. */ #define HAVE_STDIO_H 1 /* Define if you have the header file. */ #define HAVE_STRING_H 1 /* Define if you have the header file. */ #define HAVE_STDLIB_H 1 /* Define if you have the header file. */ #define HAVE_SYS_IOCTL_H 0 /* Define if you have the header file. */ #define HAVE_SYS_PTEM_H 0 /* Define if you have the header file. */ #define HAVE_SYS_STREAM_H 0 /* Define if you have the header file. */ #define HAVE_TERMCAP_H 0 /* Define if you have the header file. */ #define HAVE_TERMIO_H 0 /* Define if you have the header file. */ #define HAVE_TERMIOS_H 0 /* Define if you have the header file. */ #define HAVE_TIME_H 1 /* Define if you have the header file. */ #ifdef MINGW #define HAVE_UNISTD_H 1 #else #define HAVE_UNISTD_H 0 #endif /* Define if you have the header file. */ #ifdef _MSC_VER #define HAVE_VALUES_H 0 #else #ifdef MINGW #define HAVE_VALUES_H 0 #else #define HAVE_VALUES_H 1 #endif #endif #define popen _popen /* * _snprintf in msvcrt/ucrt is non-compliant (no '\0' on overflow). * ucrt has a C99 snprintf, and is the default since msvc 2015 (ver 1900). * mingw with msvcrt has its own C99 snprintf, and with ucrt there's no need. * so if we don't have a compliant snprintf, specify that there's none. */ #if !defined (MINGW) && (!defined(_MSC_VER) || (_MSC_VER < 1900)) #undef HAVE_SNPRINTF #define HAVE_SNPRINTF 0 #endif #ifndef MINGW #pragma warning(disable:4996) #endif less-668/edit.c0000444060175306017530000005101614700607614012470 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ #include "less.h" #include "position.h" #if HAVE_STAT #include #endif #if HAVE_SYS_WAIT_H #include #endif #if OS2 || __MVS__ || (defined WIFSIGNALED && defined WTERMSIG) #include #endif public int fd0 = 0; extern lbool new_file; extern char *every_first_cmd; extern int force_open; extern int is_tty; extern int sigs; extern int hshift; extern int want_filesize; extern int consecutive_nulls; extern int modelines; extern int show_preproc_error; extern IFILE curr_ifile; extern IFILE old_ifile; extern struct scrpos initial_scrpos; extern void *ml_examine; #if SPACES_IN_FILENAMES extern char openquote; extern char closequote; #endif #if LOGFILE extern int logfile; extern int force_logfile; extern char *namelogfile; #endif #if HAVE_STAT_INO public dev_t curr_dev; public ino_t curr_ino; #endif /* * Textlist functions deal with a list of words separated by spaces. * init_textlist sets up a textlist structure. * forw_textlist uses that structure to iterate thru the list of * words, returning each one as a standard null-terminated string. * back_textlist does the same, but runs thru the list backwards. */ public void init_textlist(struct textlist *tlist, mutable char *str) { char *s; #if SPACES_IN_FILENAMES lbool meta_quoted = FALSE; lbool delim_quoted = FALSE; constant char *esc = get_meta_escape(); size_t esclen = strlen(esc); #endif tlist->string = skipsp(str); tlist->endstring = tlist->string + strlen(tlist->string); for (s = str; s < tlist->endstring; s++) { #if SPACES_IN_FILENAMES if (meta_quoted) { meta_quoted = 0; } else if (esclen > 0 && s + esclen < tlist->endstring && strncmp(s, esc, esclen) == 0) { meta_quoted = 1; s += esclen - 1; } else if (delim_quoted) { if (*s == closequote) delim_quoted = 0; } else /* (!delim_quoted) */ { if (*s == openquote) delim_quoted = 1; else if (*s == ' ') *s = '\0'; } #else if (*s == ' ') *s = '\0'; #endif } } public constant char * forw_textlist(struct textlist *tlist, constant char *prev) { constant char *s; /* * prev == NULL means return the first word in the list. * Otherwise, return the word after "prev". */ if (prev == NULL) s = tlist->string; else s = prev + strlen(prev); if (s >= tlist->endstring) return (NULL); while (*s == '\0') s++; if (s >= tlist->endstring) return (NULL); return (s); } public constant char * back_textlist(struct textlist *tlist, constant char *prev) { constant char *s; /* * prev == NULL means return the last word in the list. * Otherwise, return the word before "prev". */ if (prev == NULL) s = tlist->endstring; else if (prev <= tlist->string) return (NULL); else s = prev - 1; while (*s == '\0') s--; if (s <= tlist->string) return (NULL); while (s[-1] != '\0' && s > tlist->string) s--; return (s); } /* * Parse a single option setting in a modeline. */ static void modeline_option(constant char *str, size_t opt_len) { struct mloption { constant char *opt_name; void (*opt_func)(constant char*,size_t); }; struct mloption options[] = { { "ts=", set_tabs }, { "tabstop=", set_tabs }, { NULL, NULL } }; struct mloption *opt; for (opt = options; opt->opt_name != NULL; opt++) { size_t name_len = strlen(opt->opt_name); if (opt_len > name_len && strncmp(str, opt->opt_name, name_len) == 0) { (*opt->opt_func)(str + name_len, opt_len - name_len); break; } } } /* * String length, terminated by option separator (space or colon). * Space/colon can be escaped with backspace. */ static size_t modeline_option_len(constant char *str) { lbool esc = FALSE; constant char *s; for (s = str; *s != '\0'; s++) { if (esc) esc = FALSE; else if (*s == '\\') esc = TRUE; else if (*s == ' ' || *s == ':') /* separator */ break; } return ptr_diff(s, str); } /* * Parse colon- or space-separated option settings in a modeline. */ static void modeline_options(constant char *str, char end_char) { for (;;) { size_t opt_len; str = skipspc(str); if (*str == '\0' || *str == end_char) break; opt_len = modeline_option_len(str); modeline_option(str, opt_len); str += opt_len; if (*str != '\0') str += 1; /* skip past the separator */ } } /* * See if there is a modeline string in a line. */ static void check_modeline(constant char *line) { #if HAVE_STRSTR static constant char *pgms[] = { "less:", "vim:", "vi:", "ex:", NULL }; constant char **pgm; for (pgm = pgms; *pgm != NULL; ++pgm) { constant char *pline = line; for (;;) { constant char *str; pline = strstr(pline, *pgm); if (pline == NULL) /* pgm is not in this line */ break; str = skipspc(pline + strlen(*pgm)); if (pline == line || pline[-1] == ' ') { if (strncmp(str, "set ", 4) == 0) modeline_options(str+4, ':'); else if (pgm != &pgms[0]) /* "less:" requires "set" */ modeline_options(str, '\0'); break; } /* Continue searching the rest of the line. */ pline = str; } } #endif /* HAVE_STRSTR */ } /* * Read lines from start of file and check if any are modelines. */ static void check_modelines(void) { POSITION pos = ch_zero(); int i; for (i = 0; i < modelines; i++) { constant char *line; size_t line_len; if (ABORT_SIGS()) return; pos = forw_raw_line(pos, &line, &line_len); if (pos == NULL_POSITION) break; check_modeline(line); } } /* * Close a pipe opened via popen. */ static void close_pipe(FILE *pipefd) { int status; char *p; PARG parg; if (pipefd == NULL) return; #if OS2 /* * The pclose function of OS/2 emx sometimes fails. * Send SIGINT to the piped process before closing it. */ kill(pipefd->_pid, SIGINT); #endif status = pclose(pipefd); if (status == -1) { /* An internal error in 'less', not a preprocessor error. */ p = errno_message("pclose"); parg.p_string = p; error("%s", &parg); free(p); return; } if (!show_preproc_error) return; #if defined WIFEXITED && defined WEXITSTATUS if (WIFEXITED(status)) { int s = WEXITSTATUS(status); if (s != 0) { parg.p_int = s; error("Input preprocessor failed (status %d)", &parg); } return; } #endif #if defined WIFSIGNALED && defined WTERMSIG if (WIFSIGNALED(status)) { int sig = WTERMSIG(status); if (sig != SIGPIPE || ch_length() != NULL_POSITION) { parg.p_string = signal_message(sig); error("Input preprocessor terminated: %s", &parg); } return; } #endif if (status != 0) { parg.p_int = status; error("Input preprocessor exited with status %x", &parg); } } /* * Drain and close an input pipe if needed. */ public void close_altpipe(IFILE ifile) { FILE *altpipe = get_altpipe(ifile); if (altpipe != NULL && !(ch_getflags() & CH_KEEPOPEN)) { close_pipe(altpipe); set_altpipe(ifile, NULL); } } /* * Check for error status from the current altpipe. * May or may not close the pipe. */ public void check_altpipe_error(void) { if (!show_preproc_error) return; if (curr_ifile != NULL_IFILE && get_altfilename(curr_ifile) != NULL) close_altpipe(curr_ifile); } /* * Close the current input file. */ static void close_file(void) { struct scrpos scrpos; constant char *altfilename; if (curr_ifile == NULL_IFILE) return; /* * Save the current position so that we can return to * the same position if we edit this file again. */ get_scrpos(&scrpos, TOP); if (scrpos.pos != NULL_POSITION) { store_pos(curr_ifile, &scrpos); lastmark(); } /* * Close the file descriptor, unless it is a pipe. */ ch_close(); /* * If we opened a file using an alternate name, * do special stuff to close it. */ altfilename = get_altfilename(curr_ifile); if (altfilename != NULL) { close_altpipe(curr_ifile); close_altfile(altfilename, get_filename(curr_ifile)); set_altfilename(curr_ifile, NULL); } curr_ifile = NULL_IFILE; #if HAVE_STAT_INO curr_ino = curr_dev = 0; #endif } /* * Edit a new file (given its name). * Filename == "-" means standard input. * Filename == NULL means just close the current file. */ public int edit(constant char *filename) { if (filename == NULL) return (edit_ifile(NULL_IFILE)); return (edit_ifile(get_ifile(filename, curr_ifile))); } /* * Clean up what edit_ifile did before error return. */ static int edit_error(constant char *filename, constant char *alt_filename, void *altpipe, IFILE ifile) { if (alt_filename != NULL) { close_pipe(altpipe); close_altfile(alt_filename, filename); free((char*)alt_filename); /* FIXME: WTF? */ } del_ifile(ifile); /* * Re-open the current file. */ if (curr_ifile == ifile) { /* * Whoops. The "current" ifile is the one we just deleted. * Just give up. */ quit(QUIT_ERROR); } return (1); } /* * Edit a new file (given its IFILE). * ifile == NULL means just close the current file. */ public int edit_ifile(IFILE ifile) { int f; int answer; int chflags; constant char *filename; constant char *open_filename; char *alt_filename; void *altpipe; IFILE was_curr_ifile; char *p; PARG parg; ssize_t nread = 0; if (ifile == curr_ifile) { /* * Already have the correct file open. */ return (0); } new_file = TRUE; if (ifile != NULL_IFILE) { /* * See if LESSOPEN specifies an "alternate" file to open. */ filename = get_filename(ifile); altpipe = get_altpipe(ifile); if (altpipe != NULL) { /* * File is already open. * chflags and f are not used by ch_init if ifile has * filestate which should be the case if we're here. * Set them here to avoid uninitialized variable warnings. */ chflags = 0; f = -1; alt_filename = get_altfilename(ifile); open_filename = (alt_filename != NULL) ? alt_filename : filename; } else { if (strcmp(filename, FAKE_HELPFILE) == 0 || strcmp(filename, FAKE_EMPTYFILE) == 0) alt_filename = NULL; else alt_filename = open_altfile(filename, &f, &altpipe); open_filename = (alt_filename != NULL) ? alt_filename : filename; chflags = 0; if (altpipe != NULL) { /* * The alternate "file" is actually a pipe. * f has already been set to the file descriptor of the pipe * in the call to open_altfile above. * Keep the file descriptor open because it was opened * via popen(), and pclose() wants to close it. */ chflags |= CH_POPENED; if (strcmp(filename, "-") == 0) chflags |= CH_KEEPOPEN; } else if (strcmp(filename, "-") == 0) { /* * Use standard input. * Keep the file descriptor open because we can't reopen it. */ f = fd0; chflags |= CH_KEEPOPEN; /* * Must switch stdin to BINARY mode. */ SET_BINARY(f); #if MSDOS_COMPILER==DJGPPC /* * Setting stdin to binary by default causes * Ctrl-C to not raise SIGINT. We must undo * that side-effect. */ __djgpp_set_ctrl_c(1); #endif } else if (strcmp(open_filename, FAKE_EMPTYFILE) == 0) { f = -1; chflags |= CH_NODATA; } else if (strcmp(open_filename, FAKE_HELPFILE) == 0) { f = -1; chflags |= CH_HELPFILE; } else if ((p = bad_file(open_filename)) != NULL) { /* * It looks like a bad file. Don't try to open it. */ parg.p_string = p; error("%s", &parg); free(p); return edit_error(filename, alt_filename, altpipe, ifile); } else if ((f = open(open_filename, OPEN_READ)) < 0) { /* * Got an error trying to open it. */ char *p = errno_message(filename); parg.p_string = p; error("%s", &parg); free(p); return edit_error(filename, alt_filename, altpipe, ifile); } else { chflags |= CH_CANSEEK; if (bin_file(f, &nread) && !force_open && !opened(ifile)) { /* * Looks like a binary file. * Ask user if we should proceed. */ parg.p_string = filename; answer = query("\"%s\" may be a binary file. See it anyway? ", &parg); if (answer != 'y' && answer != 'Y') { close(f); return edit_error(filename, alt_filename, altpipe, ifile); } } } } if (!force_open && f >= 0 && isatty(f)) { PARG parg; parg.p_string = filename; error("%s is a terminal (use -f to open it)", &parg); return edit_error(filename, alt_filename, altpipe, ifile); } } #if LOGFILE end_logfile(); #endif was_curr_ifile = save_curr_ifile(); if (curr_ifile != NULL_IFILE) { int was_helpfile = (ch_getflags() & CH_HELPFILE); close_file(); if (was_helpfile && held_ifile(was_curr_ifile) <= 1) { /* * Don't keep the help file in the ifile list. */ del_ifile(was_curr_ifile); was_curr_ifile = NULL_IFILE; } } unsave_ifile(was_curr_ifile); if (ifile == NULL_IFILE) { /* * No new file to open. * (Don't set old_ifile, because if you call edit_ifile(NULL), * you're supposed to have saved curr_ifile yourself, * and you'll restore it if necessary.) */ return (0); } /* * Set up the new ifile. * Get the saved position for the file. */ curr_ifile = ifile; set_altfilename(curr_ifile, alt_filename); set_altpipe(curr_ifile, altpipe); set_open(curr_ifile); /* File has been opened */ get_pos(curr_ifile, &initial_scrpos); ch_init(f, chflags, nread); consecutive_nulls = 0; check_modelines(); if (!(chflags & CH_HELPFILE)) { if (was_curr_ifile != NULL_IFILE) old_ifile = was_curr_ifile; #if LOGFILE if (namelogfile != NULL && is_tty) use_logfile(namelogfile); #endif #if HAVE_STAT_INO /* Remember the i-number and device of the opened file. */ if (strcmp(open_filename, "-") != 0) { struct stat statbuf; int r = stat(open_filename, &statbuf); if (r == 0) { curr_ino = statbuf.st_ino; curr_dev = statbuf.st_dev; } } #endif if (every_first_cmd != NULL) { ungetsc(every_first_cmd); ungetcc_end_command(); } } flush(); if (is_tty) { /* * Output is to a real tty. */ /* * Indicate there is nothing displayed yet. */ pos_clear(); clr_linenum(); #if HILITE_SEARCH clr_hilite(); #endif hshift = 0; if (strcmp(filename, FAKE_HELPFILE) && strcmp(filename, FAKE_EMPTYFILE)) { char *qfilename = shell_quote(filename); cmd_addhist(ml_examine, qfilename, 1); free(qfilename); } if (want_filesize) scan_eof(); set_header(ch_zero()); } return (0); } /* * Edit a space-separated list of files. * For each filename in the list, enter it into the ifile list. * Then edit the first one. */ public int edit_list(char *filelist) { IFILE save_ifile; constant char *good_filename; constant char *filename; char *gfilelist; constant char *gfilename; char *qfilename; struct textlist tl_files; struct textlist tl_gfiles; save_ifile = save_curr_ifile(); good_filename = NULL; /* * Run thru each filename in the list. * Try to glob the filename. * If it doesn't expand, just try to open the filename. * If it does expand, try to open each name in that list. */ init_textlist(&tl_files, filelist); filename = NULL; while ((filename = forw_textlist(&tl_files, filename)) != NULL) { gfilelist = lglob(filename); init_textlist(&tl_gfiles, gfilelist); gfilename = NULL; while ((gfilename = forw_textlist(&tl_gfiles, gfilename)) != NULL) { qfilename = shell_unquote(gfilename); if (edit(qfilename) == 0 && good_filename == NULL) good_filename = get_filename(curr_ifile); free(qfilename); } free(gfilelist); } /* * Edit the first valid filename in the list. */ if (good_filename == NULL) { unsave_ifile(save_ifile); return (1); } if (get_ifile(good_filename, curr_ifile) == curr_ifile) { /* * Trying to edit the current file; don't reopen it. */ unsave_ifile(save_ifile); return (0); } reedit_ifile(save_ifile); return (edit(good_filename)); } /* * Edit the first file in the command line (ifile) list. */ public int edit_first(void) { if (nifile() == 0) return (edit_stdin()); curr_ifile = NULL_IFILE; return (edit_next(1)); } /* * Edit the last file in the command line (ifile) list. */ public int edit_last(void) { curr_ifile = NULL_IFILE; return (edit_prev(1)); } /* * Edit the n-th next or previous file in the command line (ifile) list. */ static int edit_istep(IFILE h, int n, int dir) { IFILE next; /* * Skip n filenames, then try to edit each filename. */ for (;;) { next = (dir > 0) ? next_ifile(h) : prev_ifile(h); if (--n < 0) { if (edit_ifile(h) == 0) break; } if (next == NULL_IFILE) { /* * Reached end of the ifile list. */ return (1); } if (ABORT_SIGS()) { /* * Interrupt breaks out, if we're in a long * list of files that can't be opened. */ return (1); } h = next; } /* * Found a file that we can edit. */ return (0); } static int edit_inext(IFILE h, int n) { return (edit_istep(h, n, +1)); } public int edit_next(int n) { return edit_istep(curr_ifile, n, +1); } static int edit_iprev(IFILE h, int n) { return (edit_istep(h, n, -1)); } public int edit_prev(int n) { return edit_istep(curr_ifile, n, -1); } /* * Edit a specific file in the command line (ifile) list. */ public int edit_index(int n) { IFILE h; h = NULL_IFILE; do { if ((h = next_ifile(h)) == NULL_IFILE) { /* * Reached end of the list without finding it. */ return (1); } } while (get_index(h) != n); return (edit_ifile(h)); } public IFILE save_curr_ifile(void) { if (curr_ifile != NULL_IFILE) hold_ifile(curr_ifile, 1); return (curr_ifile); } public void unsave_ifile(IFILE save_ifile) { if (save_ifile != NULL_IFILE) hold_ifile(save_ifile, -1); } /* * Reedit the ifile which was previously open. */ public void reedit_ifile(IFILE save_ifile) { IFILE next; IFILE prev; /* * Try to reopen the ifile. * Note that opening it may fail (maybe the file was removed), * in which case the ifile will be deleted from the list. * So save the next and prev ifiles first. */ unsave_ifile(save_ifile); next = next_ifile(save_ifile); prev = prev_ifile(save_ifile); if (edit_ifile(save_ifile) == 0) return; /* * If can't reopen it, open the next input file in the list. */ if (next != NULL_IFILE && edit_inext(next, 0) == 0) return; /* * If can't open THAT one, open the previous input file in the list. */ if (prev != NULL_IFILE && edit_iprev(prev, 0) == 0) return; /* * If can't even open that, we're stuck. Just quit. */ quit(QUIT_ERROR); } public void reopen_curr_ifile(void) { IFILE save_ifile = save_curr_ifile(); close_file(); reedit_ifile(save_ifile); } /* * Edit standard input. */ public int edit_stdin(void) { if (isatty(fd0)) { error("Missing filename (\"less --help\" for help)", NULL_PARG); quit(QUIT_OK); } return (edit("-")); } /* * Copy a file directly to standard output. * Used if standard output is not a tty. */ public void cat_file(void) { int c; while ((c = ch_forw_get()) != EOI) putchr(c); flush(); } #if LOGFILE #define OVERWRITE_OPTIONS "Overwrite, Append, Don't log, or Quit?" /* * If the user asked for a log file and our input file * is standard input, create the log file. * We take care not to blindly overwrite an existing file. */ public void use_logfile(constant char *filename) { int exists; int answer; PARG parg; if (ch_getflags() & CH_CANSEEK) /* * Can't currently use a log file on a file that can seek. */ return; /* * {{ We could use access() here. }} */ exists = open(filename, OPEN_READ); if (exists >= 0) close(exists); exists = (exists >= 0); /* * Decide whether to overwrite the log file or append to it. * If it doesn't exist we "overwrite" it. */ if (!exists || force_logfile) { /* * Overwrite (or create) the log file. */ answer = 'O'; } else { /* * Ask user what to do. */ parg.p_string = filename; answer = query("Warning: \"%s\" exists; "OVERWRITE_OPTIONS" ", &parg); } loop: switch (answer) { case 'O': case 'o': /* * Overwrite: create the file. */ logfile = creat(filename, CREAT_RW); break; case 'A': case 'a': /* * Append: open the file and seek to the end. */ logfile = open(filename, OPEN_APPEND); if (less_lseek(logfile, (less_off_t)0, SEEK_END) == BAD_LSEEK) { close(logfile); logfile = -1; } break; case 'D': case 'd': /* * Don't do anything. */ return; default: /* * Eh? */ answer = query(OVERWRITE_OPTIONS" (Type \"O\", \"A\", \"D\" or \"Q\") ", NULL_PARG); goto loop; } if (logfile < 0) { /* * Error in opening logfile. */ parg.p_string = filename; error("Cannot write to \"%s\"", &parg); return; } SET_BINARY(logfile); } #endif less-668/evar.c0000444060175306017530000001043014700607615012474 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Code to support expanding environment variables in text. */ #include "less.h" #include "xbuf.h" struct replace { struct replace *r_next; char *r_fm; char *r_to; }; /* * Skip to the next unescaped slash or right curly bracket in a string. */ static size_t skipsl(constant char *buf, size_t len, size_t e) { lbool esc = FALSE; while (e < len && buf[e] != '\0' && (esc || (buf[e] != '/' && buf[e] != '}'))) { esc = (!esc && buf[e] == '\\'); ++e; } return e; } /* * Parse a replacement string: one or more instances of * (slash, pattern, slash, replacement), followed by right curly bracket. * Replacement may be empty in which case the second slash is optional. */ static struct replace * make_replaces(mutable char *buf, size_t len, size_t *pe, char term) { size_t e = *pe; struct replace *replaces = NULL; while (term == '/') { struct replace *repl; size_t to; size_t fm = e; e = skipsl(buf, len, e); if (e >= len) break; if (e == fm) /* missing fm string; we're done */ { while (e < len) if (buf[e++] == '}') break; break; } term = buf[e]; buf[e++] = '\0'; /* terminate the fm string */ if (term != '/') /* missing to string */ { to = e-1; } else { to = e; e = skipsl(buf, len, e); if (e >= len) break; term = buf[e]; buf[e++] = '\0'; /* terminate the to string */ } repl = ecalloc(1, sizeof(struct replace)); repl->r_fm = &buf[fm]; repl->r_to = &buf[to]; repl->r_next = replaces; replaces = repl; } *pe = e; return replaces; } /* * Free a list of replace structs. */ static void free_replaces(struct replace *replaces) { while (replaces != NULL) { struct replace *r = replaces; replaces = r->r_next; free(r); } } /* * See if the initial substring of a string matches a pattern. * Backslash escapes in the pattern are ignored. * Return the length of the matched substring, or 0 if no match. */ static size_t evar_match(constant char *str, constant char *pat) { size_t len = 0; while (*pat != '\0') { if (*pat == '\\') ++pat; if (*str++ != *pat++) return 0; ++len; } return len; } /* * Find the replacement for a string (&evar[*pv]), * given a list of replace structs. */ static constant char * find_replace(constant struct replace *repl, constant char *evar, size_t *pv) { for (; repl != NULL; repl = repl->r_next) { size_t len = evar_match(&evar[*pv], repl->r_fm); if (len > 0) { *pv += len; return repl->r_to; } } return NULL; } /* * With buf[e] positioned just after NAME in "${NAME" and * term containing the character at that point, parse the rest * of the environment var string (including the final right curly bracket). * Write evar to xbuf, performing any specified text replacements. * Return the new value of e to point just after the final right curly bracket. */ static size_t add_evar(struct xbuffer *xbuf, mutable char *buf, size_t len, size_t e, constant char *evar, char term) { struct replace *replaces = make_replaces(buf, len, &e, term); size_t v; for (v = 0; evar[v] != '\0'; ) { constant char *repl = find_replace(replaces, evar, &v); if (repl == NULL) xbuf_add_char(xbuf, evar[v++]); else { size_t r; for (r = 0; repl[r] != '\0'; r++) { if (repl[r] == '\\') ++r; xbuf_add_char(xbuf, repl[r]); } } } free_replaces(replaces); return e; } /* * Expand env variables in a string. * Writes expanded output to xbuf. Corrupts buf. */ public void expand_evars(mutable char *buf, size_t len, struct xbuffer *xbuf) { size_t i; for (i = 0; i < len; ) { if (i+1 < len && buf[i] == '$' && buf[i+1] == '{') { constant char *evar; char term; size_t e; i += 2; /* skip "${" */ for (e = i; e < len; e++) if (buf[e] == '\0' || buf[e] == '}' || buf[e] == '/') break; if (e >= len || buf[e] == '\0') break; /* missing right curly bracket; ignore var */ term = buf[e]; buf[e++] = '\0'; evar = lgetenv_ext(&buf[i], xbuf->data, xbuf->end); if (evar == NULL) evar = ""; i = add_evar(xbuf, buf, len, e, evar, term); } else { xbuf_add_char(xbuf, buf[i++]); } } } less-668/filename.c0000444060175306017530000005426214700607615013332 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Routines to mess around with filenames (and files). * Much of this is very OS dependent. */ #include "less.h" #include "lglob.h" #if MSDOS_COMPILER #include #if MSDOS_COMPILER==WIN32C && !defined(_MSC_VER) #include #endif #if MSDOS_COMPILER==DJGPPC #include #include #define _MAX_PATH PATH_MAX #endif #endif #ifdef _OSK #include #ifndef _OSK_MWC32 #include #endif #endif #if HAVE_STAT #include #ifndef S_ISDIR #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) #endif #ifndef S_ISREG #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) #endif #endif extern int force_open; extern int use_lessopen; extern int ctldisp; extern int utf_mode; extern IFILE curr_ifile; extern IFILE old_ifile; #if SPACES_IN_FILENAMES extern char openquote; extern char closequote; #endif #if HAVE_STAT_INO extern ino_t curr_ino; extern dev_t curr_dev; #endif /* * Remove quotes around a filename. */ public char * shell_unquote(constant char *str) { char *name; char *p; name = p = (char *) ecalloc(strlen(str)+1, sizeof(char)); if (*str == openquote) { str++; while (*str != '\0') { if (*str == closequote) { if (str[1] != closequote) break; str++; } *p++ = *str++; } } else { constant char *esc = get_meta_escape(); size_t esclen = strlen(esc); while (*str != '\0') { if (esclen > 0 && strncmp(str, esc, esclen) == 0) str += esclen; *p++ = *str++; } } *p = '\0'; return (name); } /* * Get the shell's escape character. */ public constant char * get_meta_escape(void) { constant char *s; s = lgetenv("LESSMETAESCAPE"); if (s == NULL) s = DEF_METAESCAPE; return (s); } /* * Get the characters which the shell considers to be "metacharacters". */ static constant char * metachars(void) { static constant char *mchars = NULL; if (mchars == NULL) { mchars = lgetenv("LESSMETACHARS"); if (mchars == NULL) mchars = DEF_METACHARS; } return (mchars); } /* * Is this a shell metacharacter? */ static lbool metachar(char c) { return (strchr(metachars(), c) != NULL); } /* * Must use quotes rather than escape char for this metachar? */ static lbool must_quote(char c) { /* {{ Maybe the set of must_quote chars should be configurable? }} */ return (c == '\n'); } /* * Insert a backslash before each metacharacter in a string. */ public char * shell_quoten(constant char *s, size_t slen) { constant char *p; char *np; char *newstr; size_t len; constant char *esc = get_meta_escape(); size_t esclen = strlen(esc); lbool use_quotes = FALSE; lbool have_quotes = FALSE; /* * Determine how big a string we need to allocate. */ len = 1; /* Trailing null byte */ for (p = s; p < s + slen; p++) { len++; if (*p == openquote || *p == closequote) have_quotes = TRUE; if (metachar(*p)) { if (esclen == 0) { /* * We've got a metachar, but this shell * doesn't support escape chars. Use quotes. */ use_quotes = TRUE; } else if (must_quote(*p)) { len += 3; /* open quote + char + close quote */ } else { /* * Allow space for the escape char. */ len += esclen; } } } if (use_quotes) { if (have_quotes) /* * We can't quote a string that contains quotes. */ return (NULL); len = slen + 3; } /* * Allocate and construct the new string. */ newstr = np = (char *) ecalloc(len, sizeof(char)); if (use_quotes) { SNPRINTF4(newstr, len, "%c%.*s%c", openquote, (int) slen, s, closequote); } else { constant char *es = s + slen; while (s < es) { if (!metachar(*s)) { *np++ = *s++; } else if (must_quote(*s)) { /* Surround the char with quotes. */ *np++ = openquote; *np++ = *s++; *np++ = closequote; } else { /* Insert an escape char before the char. */ strcpy(np, esc); np += esclen; *np++ = *s++; } } *np = '\0'; } return (newstr); } public char * shell_quote(constant char *s) { return shell_quoten(s, strlen(s)); } /* * Return a pathname that points to a specified file in a specified directory. * Return NULL if the file does not exist in the directory. */ public char * dirfile(constant char *dirname, constant char *filename, int must_exist) { char *pathname; size_t len; int f; if (dirname == NULL || *dirname == '\0') return (NULL); /* * Construct the full pathname. */ len = strlen(dirname) + strlen(filename) + 2; pathname = (char *) calloc(len, sizeof(char)); if (pathname == NULL) return (NULL); SNPRINTF3(pathname, len, "%s%s%s", dirname, PATHNAME_SEP, filename); if (must_exist) { /* * Make sure the file exists. */ f = open(pathname, OPEN_READ); if (f < 0) { free(pathname); pathname = NULL; } else { close(f); } } return (pathname); } /* * Return the full pathname of the given file in the "home directory". */ public char * homefile(constant char *filename) { char *pathname; /* Try $HOME/filename. */ pathname = dirfile(lgetenv("HOME"), filename, 1); if (pathname != NULL) return (pathname); #if OS2 /* Try $INIT/filename. */ pathname = dirfile(lgetenv("INIT"), filename, 1); if (pathname != NULL) return (pathname); #endif #if MSDOS_COMPILER || OS2 /* Look for the file anywhere on search path. */ pathname = (char *) ecalloc(_MAX_PATH, sizeof(char)); #if MSDOS_COMPILER==DJGPPC { char *res = searchpath(filename); if (res == 0) *pathname = '\0'; else strcpy(pathname, res); } #else _searchenv(filename, "PATH", pathname); #endif if (*pathname != '\0') return (pathname); free(pathname); #endif return (NULL); } typedef struct xcpy { char *dest; size_t copied; } xcpy; static void xcpy_char(xcpy *xp, char ch) { if (xp->dest != NULL) *(xp->dest)++ = ch; xp->copied++; } static void xcpy_filename(xcpy *xp, constant char *str) { /* If filename contains spaces, quote it * to prevent edit_list from splitting it. */ lbool quote = (strchr(str, ' ') != NULL); if (quote) xcpy_char(xp, openquote); for (; *str != '\0'; str++) xcpy_char(xp, *str); if (quote) xcpy_char(xp, closequote); } static size_t fexpand_copy(constant char *fr, char *to) { xcpy xp; xp.copied = 0; xp.dest = to; for (; *fr != '\0'; fr++) { lbool expand = FALSE; switch (*fr) { case '%': case '#': if (fr[1] == *fr) { /* Two identical chars. Output just one. */ fr += 1; } else { /* Single char. Expand to a (quoted) file name. */ expand = TRUE; } break; default: break; } if (expand) { IFILE ifile = (*fr == '%') ? curr_ifile : (*fr == '#') ? old_ifile : NULL_IFILE; if (ifile == NULL_IFILE) xcpy_char(&xp, *fr); else xcpy_filename(&xp, get_filename(ifile)); } else { xcpy_char(&xp, *fr); } } xcpy_char(&xp, '\0'); return xp.copied; } /* * Expand a string, substituting any "%" with the current filename, * and any "#" with the previous filename. * But a string of N "%"s is just replaced with N-1 "%"s. * Likewise for a string of N "#"s. * {{ This is a lot of work just to support % and #. }} */ public char * fexpand(constant char *s) { size_t n; char *e; /* * Make one pass to see how big a buffer we * need to allocate for the expanded string. */ n = fexpand_copy(s, NULL); e = (char *) ecalloc(n, sizeof(char)); /* * Now copy the string, expanding any "%" or "#". */ fexpand_copy(s, e); return (e); } #if TAB_COMPLETE_FILENAME /* * Return a blank-separated list of filenames which "complete" * the given string. */ public char * fcomplete(constant char *s) { char *fpat; char *qs; char *uqs; /* {{ Is this needed? lglob calls secure_allow. }} */ if (!secure_allow(SF_GLOB)) return (NULL); /* * Complete the filename "s" by globbing "s*". */ #if MSDOS_COMPILER && (MSDOS_COMPILER == MSOFTC || MSDOS_COMPILER == BORLANDC) /* * But in DOS, we have to glob "s*.*". * But if the final component of the filename already has * a dot in it, just do "s*". * (Thus, "FILE" is globbed as "FILE*.*", * but "FILE.A" is globbed as "FILE.A*"). */ { constant char *slash; size_t len; for (slash = s+strlen(s)-1; slash > s; slash--) if (*slash == *PATHNAME_SEP || *slash == '/') break; len = strlen(s) + 4; fpat = (char *) ecalloc(len, sizeof(char)); if (strchr(slash, '.') == NULL) SNPRINTF1(fpat, len, "%s*.*", s); else SNPRINTF1(fpat, len, "%s*", s); } #else { size_t len = strlen(s) + 2; fpat = (char *) ecalloc(len, sizeof(char)); SNPRINTF1(fpat, len, "%s*", s); } #endif qs = lglob(fpat); uqs = shell_unquote(qs); if (strcmp(uqs, fpat) == 0) { /* * The filename didn't expand. */ free(qs); qs = NULL; } free(uqs); free(fpat); return (qs); } #endif /* * Try to determine if a file is "binary". * This is just a guess, and we need not try too hard to make it accurate. * * The number of bytes read is returned to the caller, because it will * be used later to compare to st_size from stat(2) to see if the file * is lying about its size. */ public int bin_file(int f, ssize_t *n) { int bin_count = 0; char data[256]; constant char* p; constant char* edata; if (!seekable(f)) return (0); if (less_lseek(f, (less_off_t)0, SEEK_SET) == BAD_LSEEK) return (0); *n = read(f, data, sizeof(data)); if (*n <= 0) return (0); edata = &data[*n]; for (p = data; p < edata; ) { if (utf_mode && !is_utf8_well_formed(p, (int) ptr_diff(edata,p))) { bin_count++; utf_skip_to_lead(&p, edata); } else { LWCHAR c = step_charc(&p, +1, edata); struct ansi_state *pansi; if (ctldisp == OPT_ONPLUS && (pansi = ansi_start(c)) != NULL) { skip_ansi(pansi, &p, edata); ansi_done(pansi); } else if (binary_char(c)) bin_count++; } } /* * Call it a binary file if there are more than 5 binary characters * in the first 256 bytes of the file. */ return (bin_count > 5); } /* * Try to determine the size of a file by seeking to the end. */ static POSITION seek_filesize(int f) { less_off_t spos; spos = less_lseek(f, (less_off_t)0, SEEK_END); if (spos == BAD_LSEEK) return (NULL_POSITION); return ((POSITION) spos); } #if HAVE_POPEN /* * Read a string from a file. * Return a pointer to the string in memory. */ public char * readfd(FILE *fd) { struct xbuffer xbuf; xbuf_init(&xbuf); for (;;) { int ch; if ((ch = getc(fd)) == '\n' || ch == EOF) break; xbuf_add_char(&xbuf, (char) ch); } xbuf_add_char(&xbuf, '\0'); return (char *) xbuf.data; } /* * Execute a shell command. * Return a pointer to a pipe connected to the shell command's standard output. */ static FILE * shellcmd(constant char *cmd) { FILE *fd; #if HAVE_SHELL constant char *shell; shell = lgetenv("SHELL"); if (!isnullenv(shell)) { char *scmd; char *esccmd; /* * Read the output of <$SHELL -c cmd>. * Escape any metacharacters in the command. */ esccmd = shell_quote(cmd); if (esccmd == NULL) { fd = popen(cmd, "r"); } else { size_t len = strlen(shell) + strlen(esccmd) + 5; scmd = (char *) ecalloc(len, sizeof(char)); SNPRINTF3(scmd, len, "%s %s %s", shell, shell_coption(), esccmd); free(esccmd); fd = popen(scmd, "r"); free(scmd); } } else #endif { fd = popen(cmd, "r"); } /* * Redirection in `popen' might have messed with the * standard devices. Restore binary input mode. */ SET_BINARY(0); return (fd); } #endif /* HAVE_POPEN */ /* * Expand a filename, doing any system-specific metacharacter substitutions. */ public char * lglob(constant char *afilename) { char *gfilename; char *filename = fexpand(afilename); if (!secure_allow(SF_GLOB)) return (filename); #ifdef DECL_GLOB_LIST { /* * The globbing function returns a list of names. */ size_t length; char *p; char *qfilename; DECL_GLOB_LIST(list) GLOB_LIST(filename, list); if (GLOB_LIST_FAILED(list)) { return (filename); } length = 1; /* Room for trailing null byte */ for (SCAN_GLOB_LIST(list, p)) { INIT_GLOB_LIST(list, p); qfilename = shell_quote(p); if (qfilename != NULL) { length += strlen(qfilename) + 1; free(qfilename); } } gfilename = (char *) ecalloc(length, sizeof(char)); for (SCAN_GLOB_LIST(list, p)) { INIT_GLOB_LIST(list, p); qfilename = shell_quote(p); if (qfilename != NULL) { sprintf(gfilename + strlen(gfilename), "%s ", qfilename); free(qfilename); } } /* * Overwrite the final trailing space with a null terminator. */ *--p = '\0'; GLOB_LIST_DONE(list); } #else #ifdef DECL_GLOB_NAME { /* * The globbing function returns a single name, and * is called multiple times to walk thru all names. */ char *p; size_t len; size_t n; char *pfilename; char *qfilename; DECL_GLOB_NAME(fnd,drive,dir,fname,ext,handle) GLOB_FIRST_NAME(filename, &fnd, handle); if (GLOB_FIRST_FAILED(handle)) { return (filename); } _splitpath(filename, drive, dir, fname, ext); len = 100; gfilename = (char *) ecalloc(len, sizeof(char)); p = gfilename; do { n = strlen(drive) + strlen(dir) + strlen(fnd.GLOB_NAME) + 1; pfilename = (char *) ecalloc(n, sizeof(char)); SNPRINTF3(pfilename, n, "%s%s%s", drive, dir, fnd.GLOB_NAME); qfilename = shell_quote(pfilename); free(pfilename); if (qfilename != NULL) { n = strlen(qfilename); while (p - gfilename + n + 2 >= len) { /* * No room in current buffer. * Allocate a bigger one. */ len *= 2; *p = '\0'; p = (char *) ecalloc(len, sizeof(char)); strcpy(p, gfilename); free(gfilename); gfilename = p; p = gfilename + strlen(gfilename); } strcpy(p, qfilename); free(qfilename); p += n; *p++ = ' '; } } while (GLOB_NEXT_NAME(handle, &fnd) == 0); /* * Overwrite the final trailing space with a null terminator. */ *--p = '\0'; GLOB_NAME_DONE(handle); } #else #if HAVE_POPEN { /* * We get the shell to glob the filename for us by passing * an "echo" command to the shell and reading its output. */ FILE *fd; constant char *s; constant char *lessecho; char *cmd; constant char *esc; char *qesc; size_t len; esc = get_meta_escape(); if (strlen(esc) == 0) esc = "-"; qesc = shell_quote(esc); if (qesc == NULL) { return (filename); } lessecho = lgetenv("LESSECHO"); if (isnullenv(lessecho)) lessecho = "lessecho"; /* * Invoke lessecho, and read its output (a globbed list of filenames). */ len = strlen(lessecho) + strlen(filename) + (7*strlen(metachars())) + 24; cmd = (char *) ecalloc(len, sizeof(char)); SNPRINTF4(cmd, len, "%s -p0x%x -d0x%x -e%s ", lessecho, (unsigned char) openquote, (unsigned char) closequote, qesc); free(qesc); for (s = metachars(); *s != '\0'; s++) sprintf(cmd + strlen(cmd), "-n0x%x ", (unsigned char) *s); sprintf(cmd + strlen(cmd), "-- %s", filename); fd = shellcmd(cmd); free(cmd); if (fd == NULL) { /* * Cannot create the pipe. * Just return the original (fexpanded) filename. */ return (filename); } gfilename = readfd(fd); pclose(fd); if (*gfilename == '\0') { free(gfilename); return (filename); } } #else /* * No globbing functions at all. Just use the fexpanded filename. */ gfilename = save(filename); #endif #endif #endif free(filename); return (gfilename); } /* * Does path not represent something in the file system? */ public lbool is_fake_pathname(constant char *path) { return (strcmp(path, "-") == 0 || strcmp(path, FAKE_HELPFILE) == 0 || strcmp(path, FAKE_EMPTYFILE) == 0); } /* * Return canonical pathname. */ public char * lrealpath(constant char *path) { if (!is_fake_pathname(path)) { #if HAVE_REALPATH /* * Not all systems support the POSIX.1-2008 realpath() behavior * of allocating when passing a NULL argument. And PATH_MAX is * not required to be defined, or might contain an exceedingly * big value. We assume that if it is not defined (such as on * GNU/Hurd), then realpath() accepts NULL. */ #ifndef PATH_MAX char *rpath; rpath = realpath(path, NULL); if (rpath != NULL) return (rpath); #else char rpath[PATH_MAX]; if (realpath(path, rpath) != NULL) return (save(rpath)); #endif #endif } return (save(path)); } #if HAVE_POPEN /* * Return number of %s escapes in a string. * Return a large number if there are any other % escapes besides %s. */ static int num_pct_s(constant char *lessopen) { int num = 0; while (*lessopen != '\0') { if (*lessopen == '%') { if (lessopen[1] == '%') ++lessopen; else if (lessopen[1] == 's') ++num; else return (999); } ++lessopen; } return (num); } #endif /* * See if we should open a "replacement file" * instead of the file we're about to open. */ public char * open_altfile(constant char *filename, int *pf, void **pfd) { #if !HAVE_POPEN return (NULL); #else constant char *lessopen; char *qfilename; char *cmd; size_t len; FILE *fd; #if HAVE_FILENO int returnfd = 0; #endif if (!secure_allow(SF_LESSOPEN)) return (NULL); if (!use_lessopen) return (NULL); ch_ungetchar(-1); if ((lessopen = lgetenv("LESSOPEN")) == NULL) return (NULL); while (*lessopen == '|') { /* * If LESSOPEN starts with a |, it indicates * a "pipe preprocessor". */ #if !HAVE_FILENO error("LESSOPEN pipe is not supported", NULL_PARG); return (NULL); #else lessopen++; returnfd++; #endif } if (*lessopen == '-') { /* * Lessopen preprocessor will accept "-" as a filename. */ lessopen++; } else { if (strcmp(filename, "-") == 0) return (NULL); } if (num_pct_s(lessopen) != 1) { error("LESSOPEN ignored: must contain exactly one %%s", NULL_PARG); return (NULL); } qfilename = shell_quote(filename); len = strlen(lessopen) + strlen(qfilename) + 2; cmd = (char *) ecalloc(len, sizeof(char)); SNPRINTF1(cmd, len, lessopen, qfilename); free(qfilename); fd = shellcmd(cmd); free(cmd); if (fd == NULL) { /* * Cannot create the pipe. */ return (NULL); } #if HAVE_FILENO if (returnfd) { unsigned char c; int f; /* * The alt file is a pipe. Read one char * to see if the pipe will produce any data. * If it does, push the char back on the pipe. */ f = fileno(fd); SET_BINARY(f); if (read(f, &c, 1) != 1) { /* * Pipe is empty. * If more than 1 pipe char was specified, * the exit status tells whether the file itself * is empty, or if there is no alt file. * If only one pipe char, just assume no alt file. */ int status = pclose(fd); if (returnfd > 1 && status == 0) { /* File is empty. */ *pfd = NULL; *pf = -1; return (save(FAKE_EMPTYFILE)); } /* No alt file. */ return (NULL); } /* Alt pipe contains data, so use it. */ ch_ungetchar(c); *pfd = (void *) fd; *pf = f; return (save("-")); } #endif /* The alt file is a regular file. Read its name from LESSOPEN. */ cmd = readfd(fd); pclose(fd); if (*cmd == '\0') { /* * Pipe is empty. This means there is no alt file. */ free(cmd); return (NULL); } return (cmd); #endif /* HAVE_POPEN */ } /* * Close a replacement file. */ public void close_altfile(constant char *altfilename, constant char *filename) { #if HAVE_POPEN constant char *lessclose; char *qfilename; char *qaltfilename; FILE *fd; char *cmd; size_t len; if (!secure_allow(SF_LESSOPEN)) return; if ((lessclose = lgetenv("LESSCLOSE")) == NULL) return; if (num_pct_s(lessclose) > 2) { error("LESSCLOSE ignored; must contain no more than 2 %%s", NULL_PARG); return; } qfilename = shell_quote(filename); qaltfilename = shell_quote(altfilename); len = strlen(lessclose) + strlen(qfilename) + strlen(qaltfilename) + 2; cmd = (char *) ecalloc(len, sizeof(char)); SNPRINTF2(cmd, len, lessclose, qfilename, qaltfilename); free(qaltfilename); free(qfilename); fd = shellcmd(cmd); free(cmd); if (fd != NULL) pclose(fd); #endif } /* * Is the specified file a directory? */ public lbool is_dir(constant char *filename) { lbool isdir = FALSE; #if HAVE_STAT { int r; less_stat_t statbuf; r = less_stat(filename, &statbuf); isdir = (r >= 0 && S_ISDIR(statbuf.st_mode)); } #else #ifdef _OSK { int f; f = open(filename, S_IREAD | S_IFDIR); if (f >= 0) close(f); isdir = (f >= 0); } #endif #endif return (isdir); } /* * Returns NULL if the file can be opened and * is an ordinary file, otherwise an error message * (if it cannot be opened or is a directory, etc.) */ public char * bad_file(constant char *filename) { char *m = NULL; if (!force_open && is_dir(filename)) { static char is_a_dir[] = " is a directory"; m = (char *) ecalloc(strlen(filename) + sizeof(is_a_dir), sizeof(char)); strcpy(m, filename); strcat(m, is_a_dir); } else { #if HAVE_STAT int r; less_stat_t statbuf; r = less_stat(filename, &statbuf); if (r < 0) { m = errno_message(filename); } else if (force_open) { m = NULL; } else if (!S_ISREG(statbuf.st_mode)) { static char not_reg[] = " is not a regular file (use -f to see it)"; m = (char *) ecalloc(strlen(filename) + sizeof(not_reg), sizeof(char)); strcpy(m, filename); strcat(m, not_reg); } #endif } return (m); } /* * Return the size of a file, as cheaply as possible. * In Unix, we can stat the file. */ public POSITION filesize(int f) { #if HAVE_STAT less_stat_t statbuf; if (less_fstat(f, &statbuf) >= 0) return ((POSITION) statbuf.st_size); #else #ifdef _OSK long size; if ((size = (long) _gs_size(f)) >= 0) return ((POSITION) size); #endif #endif return (seek_filesize(f)); } public lbool curr_ifile_changed(void) { #if HAVE_STAT_INO /* * If the file's i-number or device has changed, * or if the file is smaller than it previously was, * the file must be different. */ struct stat st; POSITION curr_pos = ch_tell(); int r = stat(get_filename(curr_ifile), &st); if (r == 0 && (st.st_ino != curr_ino || st.st_dev != curr_dev || (curr_pos != NULL_POSITION && st.st_size < curr_pos))) return (TRUE); #endif return (FALSE); } /* * */ public constant char * shell_coption(void) { return ("-c"); } /* * Return last component of a pathname. */ public constant char * last_component(constant char *name) { constant char *slash; for (slash = name + strlen(name); slash > name; ) { --slash; if (*slash == *PATHNAME_SEP || *slash == '/') return (slash + 1); } return (name); } less-668/fmt.uni0000444060175306017530000000134614700607666012712 0ustar marknmarkn/* Generated by "./mkutable -f2 Cf -- unicode/UnicodeData.txt" on Sun Sep 17 17:56:27 PDT 2023 */ { 0x00ad, 0x00ad }, /* Cf */ { 0x0600, 0x0605 }, /* Cf */ { 0x061c, 0x061c }, /* Cf */ { 0x06dd, 0x06dd }, /* Cf */ { 0x070f, 0x070f }, /* Cf */ { 0x0890, 0x0891 }, /* Cf */ { 0x08e2, 0x08e2 }, /* Cf */ { 0x180e, 0x180e }, /* Cf */ { 0x200b, 0x200f }, /* Cf */ { 0x202a, 0x202e }, /* Cf */ { 0x2060, 0x2064 }, /* Cf */ { 0x2066, 0x206f }, /* Cf */ { 0xfeff, 0xfeff }, /* Cf */ { 0xfff9, 0xfffb }, /* Cf */ { 0x110bd, 0x110bd }, /* Cf */ { 0x110cd, 0x110cd }, /* Cf */ { 0x13430, 0x1343f }, /* Cf */ { 0x1bca0, 0x1bca3 }, /* Cf */ { 0x1d173, 0x1d17a }, /* Cf */ { 0xe0001, 0xe0001 }, /* Cf */ { 0xe0020, 0xe007f }, /* Cf */ less-668/forwback.c0000444060175306017530000003031314700607616013340 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Primitives for displaying the file on the screen, * scrolling either forward or backward. */ #include "less.h" #include "position.h" public lbool squished; public int no_back_scroll = 0; public int forw_prompt; public int first_time = 1; public lbool no_eof_bell = FALSE; extern int sigs; extern int top_scroll; extern int quiet; extern int sc_width, sc_height; extern int hshift; extern int auto_wrap; extern lbool plusoption; extern int forw_scroll; extern int back_scroll; extern int ignore_eoi; extern int header_lines; extern int header_cols; extern int full_screen; extern POSITION header_start_pos; #if HILITE_SEARCH extern size_t size_linebuf; extern int hilite_search; extern int status_col; #endif #if TAGS extern char *tagoption; #endif /* * Sound the bell to indicate user is trying to move past end of file. */ public void eof_bell(void) { if (no_eof_bell) return; #if HAVE_TIME static time_type last_eof_bell = 0; time_type now = get_time(); if (now == last_eof_bell) /* max once per second */ return; last_eof_bell = now; #endif if (quiet == NOT_QUIET) bell(); else vbell(); } /* * Check to see if the end of file is currently displayed. */ public lbool eof_displayed(void) { POSITION pos; if (ignore_eoi) return (FALSE); if (ch_length() == NULL_POSITION) /* * If the file length is not known, * we can't possibly be displaying EOF. */ return (FALSE); /* * If the bottom line is empty, we are at EOF. * If the bottom line ends at the file length, * we must be just at EOF. */ pos = position(BOTTOM_PLUS_ONE); return (pos == NULL_POSITION || pos == ch_length()); } /* * Check to see if the entire file is currently displayed. */ public lbool entire_file_displayed(void) { POSITION pos; /* Make sure last line of file is displayed. */ if (!eof_displayed()) return (FALSE); /* Make sure first line of file is displayed. */ pos = position(0); return (pos == NULL_POSITION || pos == 0); } /* * If the screen is "squished", repaint it. * "Squished" means the first displayed line is not at the top * of the screen; this can happen when we display a short file * for the first time. */ public void squish_check(void) { if (!squished) return; squished = FALSE; repaint(); } /* * Read the first pfx columns of the next line. * If skipeol==0 stop there, otherwise read and discard chars to end of line. */ static POSITION forw_line_pfx(POSITION pos, int pfx, int skipeol) { int save_sc_width = sc_width; int save_auto_wrap = auto_wrap; int save_hshift = hshift; /* Set fake sc_width to force only pfx chars to be read. */ sc_width = pfx + line_pfx_width(); auto_wrap = 0; hshift = 0; pos = forw_line_seg(pos, skipeol, FALSE, FALSE); sc_width = save_sc_width; auto_wrap = save_auto_wrap; hshift = save_hshift; return pos; } /* * Set header text color. * Underline last line of headers, but not at header_start_pos * (where there is no gap between the last header line and the next line). */ static void set_attr_header(int ln) { set_attr_line(AT_COLOR_HEADER); if (ln+1 == header_lines && position(0) != header_start_pos) set_attr_line(AT_UNDERLINE); } /* * Display file headers, overlaying text already drawn * at top and left of screen. */ public int overlay_header(void) { int ln; lbool moved = FALSE; if (header_lines > 0) { /* Draw header_lines lines from start of file at top of screen. */ POSITION pos = header_start_pos; home(); for (ln = 0; ln < header_lines; ++ln) { pos = forw_line(pos); set_attr_header(ln); clear_eol(); put_line(); } moved = TRUE; } if (header_cols > 0) { /* Draw header_cols columns at left of each line. */ POSITION pos = header_start_pos; home(); for (ln = 0; ln < sc_height-1; ++ln) { if (ln >= header_lines) /* switch from header lines to normal lines */ pos = position(ln); if (pos == NULL_POSITION) putchr('\n'); else { /* Need skipeol for all header lines except the last one. */ pos = forw_line_pfx(pos, header_cols, ln+1 < header_lines); set_attr_header(ln); put_line(); } } moved = TRUE; } if (moved) lower_left(); return moved; } /* * Display n lines, scrolling forward, * starting at position pos in the input file. * "force" means display the n lines even if we hit end of file. * "only_last" means display only the last screenful if n > screen size. * "nblank" is the number of blank lines to draw before the first * real line. If nblank > 0, the pos must be NULL_POSITION. * The first real line after the blanks will start at ch_zero(). */ public void forw(int n, POSITION pos, lbool force, lbool only_last, int nblank) { int nlines = 0; lbool do_repaint; if (pos != NULL_POSITION) pos = after_header_pos(pos); squish_check(); /* * do_repaint tells us not to display anything till the end, * then just repaint the entire screen. * We repaint if we are supposed to display only the last * screenful and the request is for more than a screenful. * Also if the request exceeds the forward scroll limit * (but not if the request is for exactly a screenful, since * repainting itself involves scrolling forward a screenful). */ do_repaint = (only_last && n > sc_height-1) || (forw_scroll >= 0 && n > forw_scroll && n != sc_height-1); #if HILITE_SEARCH if (pos != NULL_POSITION && (hilite_search == OPT_ONPLUS || is_filtering() || status_col)) { prep_hilite(pos, pos + (POSITION) (4*size_linebuf), ignore_eoi ? 1 : -1); pos = next_unfiltered(pos); } #endif if (!do_repaint) { if (top_scroll && n >= sc_height - 1 && pos != ch_length()) { /* * Start a new screen. * {{ This is not really desirable if we happen * to hit eof in the middle of this screen, * but we don't yet know if that will happen. }} */ pos_clear(); add_forw_pos(pos); force = TRUE; clear(); home(); } if (pos != position(BOTTOM_PLUS_ONE) || empty_screen()) { /* * This is not contiguous with what is * currently displayed. Clear the screen image * (position table) and start a new screen. */ pos_clear(); add_forw_pos(pos); force = TRUE; if (top_scroll) { clear(); home(); } else if (!first_time && !is_filtering() && full_screen) { putstr("...skipping...\n"); } } } while (--n >= 0) { /* * Read the next line of input. */ if (nblank > 0) { /* * Still drawing blanks; don't get a line * from the file yet. * If this is the last blank line, get ready to * read a line starting at ch_zero() next time. */ if (--nblank == 0) pos = ch_zero(); } else { /* * Get the next line from the file. */ pos = forw_line(pos); #if HILITE_SEARCH pos = next_unfiltered(pos); #endif if (pos == NULL_POSITION) { /* * End of file: stop here unless the top line * is still empty, or "force" is true. * Even if force is true, stop when the last * line in the file reaches the top of screen. */ if (!force && position(TOP) != NULL_POSITION) break; if (!empty_lines(0, 0) && !empty_lines(1, 1) && empty_lines(2, sc_height-1)) break; } } /* * Add the position of the next line to the position table. * Display the current line on the screen. */ add_forw_pos(pos); nlines++; if (do_repaint) continue; /* * If this is the first screen displayed and * we hit an early EOF (i.e. before the requested * number of lines), we "squish" the display down * at the bottom of the screen. * But don't do this if a + option or a -t option * was given. These options can cause us to * start the display after the beginning of the file, * and it is not appropriate to squish in that case. */ if (first_time && pos == NULL_POSITION && !top_scroll && header_lines == 0 && header_cols == 0 && #if TAGS tagoption == NULL && #endif !plusoption) { squished = TRUE; continue; } put_line(); #if 0 /* {{ * Can't call clear_eol here. The cursor might be at end of line * on an ignaw terminal, so clear_eol would clear the last char * of the current line instead of all of the next line. * If we really need to do this on clear_bg terminals, we need * to find a better way. * }} */ if (clear_bg && apply_at_specials(final_attr) != AT_NORMAL) { /* * Writing the last character on the last line * of the display may have scrolled the screen. * If we were in standout mode, clear_bg terminals * will fill the new line with the standout color. * Now we're in normal mode again, so clear the line. */ clear_eol(); } #endif forw_prompt = 1; } if (nlines == 0 && !ignore_eoi) eof_bell(); else if (do_repaint) repaint(); else { overlay_header(); /* lower_left(); {{ considered harmful? }} */ } first_time = 0; (void) currline(BOTTOM); } /* * Display n lines, scrolling backward. */ public void back(int n, POSITION pos, lbool force, lbool only_last) { int nlines = 0; lbool do_repaint; squish_check(); do_repaint = (n > get_back_scroll() || (only_last && n > sc_height-1) || header_lines > 0); #if HILITE_SEARCH if (pos != NULL_POSITION && (hilite_search == OPT_ONPLUS || is_filtering() || status_col)) { prep_hilite((pos < (POSITION) (3*size_linebuf)) ? 0 : pos - (POSITION) (3*size_linebuf), pos, -1); } #endif while (--n >= 0) { /* * Get the previous line of input. */ #if HILITE_SEARCH pos = prev_unfiltered(pos); #endif pos = back_line(pos); if (pos == NULL_POSITION) { /* * Beginning of file: stop here unless "force" is true. */ if (!force) break; } if (pos != after_header_pos(pos)) { /* * Don't allow scrolling back to before the current header line. */ break; } /* * Add the position of the previous line to the position table. * Display the line on the screen. */ add_back_pos(pos); nlines++; if (!do_repaint) { home(); add_line(); put_line(); } } if (nlines == 0) eof_bell(); else if (do_repaint) repaint(); else { overlay_header(); lower_left(); } (void) currline(BOTTOM); } /* * Display n more lines, forward. * Start just after the line currently displayed at the bottom of the screen. */ public void forward(int n, lbool force, lbool only_last) { POSITION pos; if (get_quit_at_eof() && eof_displayed() && !(ch_getflags() & CH_HELPFILE)) { /* * If the -e flag is set and we're trying to go * forward from end-of-file, go on to the next file. */ if (edit_next(1)) quit(QUIT_OK); return; } pos = position(BOTTOM_PLUS_ONE); if (pos == NULL_POSITION && (!force || empty_lines(2, sc_height-1))) { if (ignore_eoi) { /* * ignore_eoi is to support A_F_FOREVER. * Back up until there is a line at the bottom * of the screen. */ if (empty_screen()) pos = ch_zero(); else { do { back(1, position(TOP), 1, 0); pos = position(BOTTOM_PLUS_ONE); } while (pos == NULL_POSITION && !ABORT_SIGS()); } } else { eof_bell(); return; } } forw(n, pos, force, only_last, 0); } /* * Display n more lines, backward. * Start just before the line currently displayed at the top of the screen. */ public void backward(int n, lbool force, lbool only_last) { POSITION pos; pos = position(TOP); if (pos == NULL_POSITION && (!force || position(BOTTOM) == 0)) { eof_bell(); return; } back(n, pos, force, only_last); } /* * Get the backwards scroll limit. * Must call this function instead of just using the value of * back_scroll, because the default case depends on sc_height and * top_scroll, as well as back_scroll. */ public int get_back_scroll(void) { if (no_back_scroll) return (0); if (back_scroll >= 0) return (back_scroll); if (top_scroll) return (sc_height - 2); return (10000); /* infinity */ } /* * Will the entire file fit on one screen? */ public int get_one_screen(void) { int nlines; POSITION pos = ch_zero(); for (nlines = 0; nlines < sc_height; nlines++) { pos = forw_line(pos); if (pos == NULL_POSITION) break; } return (nlines < sc_height); } less-668/funcs.h0000444060175306017530000004617014700607646012700 0ustar marknmarknpublic char * saven(constant char *s, size_t n); public char * save(constant char *s); public void out_of_memory(void); public void * ecalloc(size_t count, size_t size); public char * skipsp(char *s); public constant char * skipspc(constant char *s); public size_t sprefix(constant char *ps, constant char *s, int uppercase); public void quit(int status); public int secure_allow(int features); public void raw_mode(int on); public void screen_size_changed(void); public constant char * special_key_str(int key); public void init_win_colors(void); public void get_term(void); public void init_mouse(void); public void deinit_mouse(void); public void init(void); public void deinit(void); public int interactive(void); public void home(void); public void dump_screen(void); public void add_line(void); public void remove_top(int n); public void win32_scroll_up(int n); public void lower_left(void); public void line_left(void); public void check_winch(void); public void goto_line(int sindex); public void vbell(void); public void bell(void); public void clear(void); public void clear_eol(void); public void clear_bot(void); public COLOR_TYPE parse_color(constant char *str, mutable int *p_fg, mutable int *p_bg, mutable CHAR_ATTR *p_cattr); public void at_enter(int attr); public void at_exit(void); public void at_switch(int attr); public lbool is_at_equiv(int attr1, int attr2); public int apply_at_specials(int attr); public void putbs(void); public void WIN32ungetch(int ch); public lbool win32_kbhit(void); public char WIN32getch(void); public void win32_getch_clear(void); public void WIN32setcolors(int fg, int bg); public void WIN32textout(constant char *text, size_t len); public void match_brac(char obrac, char cbrac, int forwdir, int n); public void ch_ungetchar(int c); public void end_logfile(void); public void sync_logfile(void); public int ch_seek(POSITION pos); public int ch_end_seek(void); public int ch_end_buffer_seek(void); public int ch_beg_seek(void); public POSITION ch_length(void); public POSITION ch_tell(void); public int ch_forw_get(void); public int ch_back_get(void); public void ch_setbufspace(ssize_t bufspace); public void ch_flush(void); public int seekable(int f); public void ch_set_eof(void); public void ch_init(int f, int flags, ssize_t nread); public void ch_close(void); public int ch_getflags(void); public void setfmt(constant char *s, constant char **fmtvarptr, int *attrptr, constant char *default_fmt, lbool for_printf); public void init_charset(void); public lbool binary_char(LWCHAR c); public lbool control_char(LWCHAR c); public constant char * prchar(LWCHAR c); public constant char * prutfchar(LWCHAR ch); public int utf_len(char ch); public lbool is_utf8_well_formed(constant char *ss, int slen); public void utf_skip_to_lead(constant char **pp, constant char *limit); public LWCHAR get_wchar(constant char *sp); public void put_wchar(mutable char **pp, LWCHAR ch); public LWCHAR step_charc(constant char **pp, signed int dir, constant char *limit); public LWCHAR step_char(char **pp, signed int dir, constant char *limit); public lbool is_composing_char(LWCHAR ch); public lbool is_ubin_char(LWCHAR ch); public lbool is_wide_char(LWCHAR ch); public lbool is_combining_char(LWCHAR ch1, LWCHAR ch2); public void cmd_reset(void); public void clear_cmd(void); public void cmd_putstr(constant char *s); public int len_cmdbuf(void); public void cmd_repaint(constant char *old_cp); public void set_mlist(void *mlist, int cmdflags); public ssize_t save_updown_match(void); public void restore_updown_match(ssize_t udm); public void cmd_addhist(struct mlist *mlist, constant char *cmd, lbool modified); public void cmd_accept(void); public int cmd_char(char c); public LINENUM cmd_int(mutable long *frac); public constant char * get_cmdbuf(void); public constant char * cmd_lastpattern(void); public void init_cmdhist(void); public void save_cmdhist(void); public int in_mca(void); public int norm_search_type(int st); public void screen_trashed_num(int trashed); public void screen_trashed(void); public int is_screen_trashed(void); public void dispversion(void); public void getcc_clear(void); public char getcc(void); public void ungetcc(char c); public void ungetcc_back(char c); public void ungetcc_end_command(void); public void ungetsc(constant char *s); public char peekcc(void); public void commands(void); public size_t cvt_length(size_t len, int ops); public int * cvt_alloc_chpos(size_t len); public void cvt_text(mutable char *odst, constant char *osrc, mutable int *chpos, mutable size_t *lenp, int ops); public void expand_cmd_tables(void); public void init_cmds(void); public void add_fcmd_table(unsigned char *buf, size_t len); public void add_ecmd_table(unsigned char *buf, size_t len); public void add_uvar_table(unsigned char *buf, size_t len); public void add_sysvar_table(unsigned char *buf, size_t len); public int fcmd_decode(constant char *cmd, constant char **sp); public int ecmd_decode(constant char *cmd, constant char **sp); public constant char * lgetenv(constant char *var); public constant char * lgetenv_ext(constant char *var, unsigned char *env_buf, size_t env_buf_len); public lbool isnullenv(constant char *s); public int lesskey(constant char *filename, lbool sysvar); public int lesskey_src(constant char *filename, lbool sysvar); public int lesskey_content(constant char *content, lbool sysvar); public int editchar(char c, int flags); public void init_textlist(struct textlist *tlist, mutable char *str); public constant char * forw_textlist(struct textlist *tlist, constant char *prev); public constant char * back_textlist(struct textlist *tlist, constant char *prev); public void close_altpipe(IFILE ifile); public void check_altpipe_error(void); public int edit(constant char *filename); public int edit_ifile(IFILE ifile); public int edit_list(char *filelist); public int edit_first(void); public int edit_last(void); public int edit_next(int n); public int edit_prev(int n); public int edit_index(int n); public IFILE save_curr_ifile(void); public void unsave_ifile(IFILE save_ifile); public void reedit_ifile(IFILE save_ifile); public void reopen_curr_ifile(void); public int edit_stdin(void); public void cat_file(void); public void use_logfile(constant char *filename); public void expand_evars(mutable char *buf, size_t len, struct xbuffer *xbuf); public char * shell_unquote(constant char *str); public constant char * get_meta_escape(void); public char * shell_quoten(constant char *s, size_t slen); public char * shell_quote(constant char *s); public char * dirfile(constant char *dirname, constant char *filename, int must_exist); public char * homefile(constant char *filename); public char * fexpand(constant char *s); public char * fcomplete(constant char *s); public int bin_file(int f, ssize_t *n); public char * readfd(FILE *fd); public char * lglob(constant char *afilename); public lbool is_fake_pathname(constant char *path); public char * lrealpath(constant char *path); public char * open_altfile(constant char *filename, int *pf, void **pfd); public void close_altfile(constant char *altfilename, constant char *filename); public lbool is_dir(constant char *filename); public char * bad_file(constant char *filename); public POSITION filesize(int f); public lbool curr_ifile_changed(void); public constant char * shell_coption(void); public constant char * last_component(constant char *name); public void eof_bell(void); public lbool eof_displayed(void); public lbool entire_file_displayed(void); public void squish_check(void); public int overlay_header(void); public void forw(int n, POSITION pos, lbool force, lbool only_last, int nblank); public void back(int n, POSITION pos, lbool force, lbool only_last); public void forward(int n, lbool force, lbool only_last); public void backward(int n, lbool force, lbool only_last); public int get_back_scroll(void); public int get_one_screen(void); public void del_ifile(IFILE h); public IFILE next_ifile(IFILE h); public IFILE prev_ifile(IFILE h); public IFILE getoff_ifile(IFILE ifile); public int nifile(void); public IFILE get_ifile(constant char *filename, IFILE prev); public constant char * get_filename(IFILE ifile); public constant char * get_real_filename(IFILE ifile); public int get_index(IFILE ifile); public void store_pos(IFILE ifile, struct scrpos *scrpos); public void get_pos(IFILE ifile, struct scrpos *scrpos); public void set_open(IFILE ifile); public int opened(IFILE ifile); public void hold_ifile(IFILE ifile, int incr); public int held_ifile(IFILE ifile); public void * get_filestate(IFILE ifile); public void set_filestate(IFILE ifile, void *filestate); public void set_altpipe(IFILE ifile, void *p); public void *get_altpipe(IFILE ifile); public void set_altfilename(IFILE ifile, char *altfilename); public char * get_altfilename(IFILE ifile); public void if_dump(void); public POSITION forw_line_seg(POSITION curr_pos, lbool skipeol, lbool rscroll, lbool nochop); public POSITION forw_line(POSITION curr_pos); public POSITION back_line(POSITION curr_pos); public void set_attnpos(POSITION pos); public void jump_forw(void); public void jump_forw_buffered(void); public void jump_back(LINENUM linenum); public void repaint(void); public void jump_percent(int percent, long fraction); public void jump_line_loc(POSITION pos, int sline); public POSITION after_header_pos(POSITION pos); public void jump_loc(POSITION pos, int sline); public void init_line(void); public lbool is_ascii_char(LWCHAR ch); public POSITION line_position(void); public void prewind(void); public void plinestart(POSITION pos); public int line_pfx_width(void); public void pshift_all(void); public int pwidth(LWCHAR ch, int a, LWCHAR prev_ch, int prev_a); public void savec(void); public void loadc(void); public lbool is_ansi_end(LWCHAR ch); public lbool is_ansi_middle(LWCHAR ch); public void skip_ansi(struct ansi_state *pansi, constant char **pp, constant char *limit); public struct ansi_state * ansi_start(LWCHAR ch); public ansi_state ansi_step(struct ansi_state *pansi, LWCHAR ch); public osc8_state ansi_osc8_state(struct ansi_state *pansi); public void ansi_done(struct ansi_state *pansi); public int pappend_b(char c, POSITION pos, lbool before_pendc); public int pappend(char c, POSITION pos); public int pflushmbc(void); public void pdone(int endline, int chopped, int forw); public int col_from_pos(POSITION linepos, POSITION spos, POSITION saved_pos, int saved_col); public POSITION pos_from_col(POSITION linepos, int col, POSITION saved_pos, int saved_col); public void set_attr_line(int a); public void set_status_col(char c, int attr); public int gline(size_t i, int *ap); public void null_line(void); public POSITION forw_raw_line_len(POSITION curr_pos, size_t read_len, constant char **linep, size_t *line_lenp); public POSITION forw_raw_line(POSITION curr_pos, constant char **linep, size_t *line_lenp); public POSITION back_raw_line(POSITION curr_pos, constant char **linep, size_t *line_lenp); public int skip_columns(int cols, constant char **linep, size_t *line_lenp); public void load_line(constant char *str); public int rrshift(void); public int set_color_map(int attr, constant char *colorstr); public constant char * get_color_map(int attr); public void clr_linenum(void); public void add_lnum(LINENUM linenum, POSITION pos); public LINENUM find_linenum(POSITION pos); public POSITION find_pos(LINENUM linenum); public LINENUM currline(int where); public void scan_eof(void); public LINENUM vlinenum(LINENUM linenum); public void lsystem(constant char *cmd, constant char *donemsg); public int pipe_mark(char c, constant char *cmd); public int pipe_data(constant char *cmd, POSITION spos, POSITION epos); public void init_mark(void); public int badmark(char c); public void setmark(char c, int where); public void clrmark(char c); public void lastmark(void); public void gomark(char c); public POSITION markpos(char c); public char posmark(POSITION pos); public void unmark(IFILE ifile); public void mark_check_ifile(IFILE ifile); public void save_marks(FILE *fout, constant char *hdr); public void restore_mark(constant char *line); public void opt_o(int type, constant char *s); public void opt__O(int type, constant char *s); public void opt_j(int type, constant char *s); public void calc_jump_sline(void); public void opt_shift(int type, constant char *s); public void calc_shift_count(void); public void opt_k(int type, constant char *s); public void opt_ks(int type, constant char *s); public void opt_kc(int type, constant char *s); public void opt__S(int type, constant char *s); public void opt_t(int type, constant char *s); public void opt__T(int type, constant char *s); public void opt_p(int type, constant char *s); public void opt__P(int type, constant char *s); public void opt_b(int type, constant char *s); public void opt_i(int type, constant char *s); public void opt__V(int type, constant char *s); public void opt_D(int type, constant char *s); public void set_tabs(constant char *s, size_t len); public void opt_x(int type, constant char *s); public void opt_quote(int type, constant char *s); public void opt_rscroll(int type, constant char *s); public void opt_query(int type, constant char *s); public void opt_match_shift(int type, constant char *s); public void calc_match_shift(void); public void opt_mousecap(int type, constant char *s); public void opt_wheel_lines(int type, constant char *s); public void opt_linenum_width(int type, constant char *s); public void opt_status_col_width(int type, constant char *s); public void opt_filesize(int type, constant char *s); public void opt_intr(int type, constant char *s); public int next_cnum(constant char **sp, constant char *printopt, constant char *errmsg, lbool *errp); public void opt_header(int type, constant char *s); public void opt_search_type(int type, constant char *s); public void opt_nosearch_headers(int type, constant char *s); public void opt_nosearch_header_lines(int type, constant char *s); public void opt_nosearch_header_cols(int type, constant char *s); public void opt_ttyin_name(int type, constant char *s); public int chop_line(void); public int get_swindow(void); public constant char * propt(char c); public void scan_option(constant char *s); public void toggle_option(struct loption *o, int lower, constant char *s, int how_toggle); public int opt_has_param(struct loption *o); public constant char * opt_prompt(struct loption *o); public constant char * opt_toggle_disallowed(int c); public lbool isoptpending(void); public void nopendopt(void); public int getnumc(constant char **sp, constant char *printopt, lbool *errp); public int getnum(char **sp, constant char *printopt, lbool *errp); public long getfraction(constant char **sp, constant char *printopt, lbool *errp); public void init_unsupport(void); public int get_quit_at_eof(void); public void init_option(void); public struct loption * findopt(int c); public struct loption * findopt_name(constant char **p_optname, constant char **p_oname, lbool *p_ambig); public void init_poll(void); public int supports_ctrl_x(void); public ssize_t iread(int fd, unsigned char *buf, size_t len); public void intread(void); public time_type get_time(void); public char * errno_message(constant char *filename); public constant char * signal_message(int sig); public uintmax umuldiv(uintmax val, uintmax num, uintmax den); public int percentage(POSITION num, POSITION den); public POSITION percent_pos(POSITION pos, int percent, long fraction); public int os9_signal(int type, RETSIGTYPE (*handler)()); public void sleep_ms(int ms); public void put_line(void); public void flush(void); public void set_output(int fd); public int putchr(int ch); public void clear_bot_if_needed(void); public void putstr(constant char *s); public int less_printf(constant char *fmt, PARG *parg); public void get_return(void); public void error(constant char *fmt, PARG *parg); public void ierror(constant char *fmt, PARG *parg); public void ixerror(constant char *fmt, PARG *parg); public int query(constant char *fmt, PARG *parg); public int compile_pattern(constant char *pattern, int search_type, int show_error, PATTERN_TYPE *comp_pattern); public void uncompile_pattern(PATTERN_TYPE *pattern); public int valid_pattern(char *pattern); public lbool is_null_pattern(PATTERN_TYPE pattern); public int match_pattern(PATTERN_TYPE pattern, constant char *tpattern, constant char *line, size_t line_len, constant char **sp, constant char **ep, int nsp, int notbol, int search_type); public constant char * pattern_lib_name(void); public POSITION position(int sindex); public void add_forw_pos(POSITION pos); public void add_back_pos(POSITION pos); public void pos_clear(void); public void pos_init(void); public int onscreen(POSITION pos); public int empty_screen(void); public int empty_lines(int s, int e); public void get_scrpos(struct scrpos *scrpos, int where); public int sindex_from_sline(int sline); public void pos_rehead(void); public void init_prompt(void); public constant char * pr_expand(constant char *proto); public constant char * eq_message(void); public constant char * pr_string(void); public constant char * wait_message(void); public void init_search(void); public int get_cvt_ops(int search_type); public void repaint_hilite(lbool on); public void clear_attn(void); public void undo_search(lbool clear); public void clr_hlist(struct hilite_tree *anchor); public void clr_hilite(void); public void clr_filter(void); public void set_header(POSITION pos); public lbool is_filtered(POSITION pos); public POSITION next_unfiltered(POSITION pos); public POSITION prev_unfiltered(POSITION pos); public int is_hilited_attr(POSITION pos, POSITION epos, int nohide, int *p_matches); public void chg_hilite(void); public void osc8_search(int search_type, constant char *param, int matches); public lbool osc8_click(int sindex, int col); public void osc8_open(void); public void osc8_jump(void); public void chg_caseless(void); public int search(int search_type, constant char *pattern, int n); public void prep_hilite(POSITION spos, POSITION epos, int maxlines); public void set_filter_pattern(constant char *pattern, int search_type); public lbool is_filtering(void); public RETSIGTYPE winch(int type); public void init_signals(int on); public void psignals(void); public void cleantags(void); public int gettagtype(void); public void findtag(constant char *tag); public POSITION tagsearch(void); public constant char * nexttag(int n); public constant char * prevtag(int n); public int ntags(void); public int curr_tag(void); public int edit_tagfile(void); public lbool is_lesstest(void); public int open_tty(void); public void open_getchr(void); public void close_getchr(void); public int pclose(FILE *f); public int default_wheel_lines(void); public int getchr(void); public void xbuf_init(struct xbuffer *xbuf); public void xbuf_init_size(struct xbuffer *xbuf, size_t init_size); public void xbuf_deinit(struct xbuffer *xbuf); public void xbuf_reset(struct xbuffer *xbuf); public void xbuf_add_byte(struct xbuffer *xbuf, unsigned char b); public void xbuf_add_char(struct xbuffer *xbuf, char c); public void xbuf_add_data(struct xbuffer *xbuf, constant unsigned char *data, size_t len); public int xbuf_pop(struct xbuffer *buf); public void xbuf_set(struct xbuffer *dst, struct xbuffer *src); public constant char * xbuf_char_data(constant struct xbuffer *xbuf); public lbool help_ckd_add(void *r, uintmax a, uintmax b, int rsize, int rsigned); public lbool help_ckd_mul(void *r, uintmax a, uintmax b, int rsize, int rsigned); less-668/help.c0000444060175306017530000017655114700607617012512 0ustar marknmarkn/* This file was generated by mkhelp.pl from less.hlp at 22:29 on 2024/10/6 */ #include "less.h" constant char helpdata[] = { '\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','\b','S','U','\b','U','M','\b','M','M','\b','M','A','\b','A','R','\b','R','Y','\b','Y',' ','O','\b','O','F','\b','F',' ','L','\b','L','E','\b','E','S','\b','S','S','\b','S',' ','C','\b','C','O','\b','O','M','\b','M','M','\b','M','A','\b','A','N','\b','N','D','\b','D','S','\b','S','\n', '\n', ' ',' ',' ',' ',' ',' ','C','o','m','m','a','n','d','s',' ','m','a','r','k','e','d',' ','w','i','t','h',' ','*',' ','m','a','y',' ','b','e',' ','p','r','e','c','e','d','e','d',' ','b','y',' ','a',' ','n','u','m','b','e','r',',',' ','_','\b','N','.','\n', ' ',' ',' ',' ',' ',' ','N','o','t','e','s',' ','i','n',' ','p','a','r','e','n','t','h','e','s','e','s',' ','i','n','d','i','c','a','t','e',' ','t','h','e',' ','b','e','h','a','v','i','o','r',' ','i','f',' ','_','\b','N',' ','i','s',' ','g','i','v','e','n','.','\n', ' ',' ',' ',' ',' ',' ','A',' ','k','e','y',' ','p','r','e','c','e','d','e','d',' ','b','y',' ','a',' ','c','a','r','e','t',' ','i','n','d','i','c','a','t','e','s',' ','t','h','e',' ','C','t','r','l',' ','k','e','y',';',' ','t','h','u','s',' ','^','K',' ','i','s',' ','c','t','r','l','-','K','.','\n', '\n', ' ',' ','h',' ',' ','H',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','i','s','p','l','a','y',' ','t','h','i','s',' ','h','e','l','p','.','\n', ' ',' ','q',' ',' ',':','q',' ',' ','Q',' ',' ',':','Q',' ',' ','Z','Z',' ',' ',' ',' ',' ','E','x','i','t','.','\n', ' ','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','\n', '\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','M','\b','M','O','\b','O','V','\b','V','I','\b','I','N','\b','N','G','\b','G','\n', '\n', ' ',' ','e',' ',' ','^','E',' ',' ','j',' ',' ','^','N',' ',' ','C','R',' ',' ','*',' ',' ','F','o','r','w','a','r','d',' ',' ','o','n','e',' ','l','i','n','e',' ',' ',' ','(','o','r',' ','_','\b','N',' ','l','i','n','e','s',')','.','\n', ' ',' ','y',' ',' ','^','Y',' ',' ','k',' ',' ','^','K',' ',' ','^','P',' ',' ','*',' ',' ','B','a','c','k','w','a','r','d',' ','o','n','e',' ','l','i','n','e',' ',' ',' ','(','o','r',' ','_','\b','N',' ','l','i','n','e','s',')','.','\n', ' ',' ','f',' ',' ','^','F',' ',' ','^','V',' ',' ','S','P','A','C','E',' ',' ','*',' ',' ','F','o','r','w','a','r','d',' ',' ','o','n','e',' ','w','i','n','d','o','w',' ','(','o','r',' ','_','\b','N',' ','l','i','n','e','s',')','.','\n', ' ',' ','b',' ',' ','^','B',' ',' ','E','S','C','-','v',' ',' ',' ',' ',' ',' ','*',' ',' ','B','a','c','k','w','a','r','d',' ','o','n','e',' ','w','i','n','d','o','w',' ','(','o','r',' ','_','\b','N',' ','l','i','n','e','s',')','.','\n', ' ',' ','z',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','F','o','r','w','a','r','d',' ',' ','o','n','e',' ','w','i','n','d','o','w',' ','(','a','n','d',' ','s','e','t',' ','w','i','n','d','o','w',' ','t','o',' ','_','\b','N',')','.','\n', ' ',' ','w',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','B','a','c','k','w','a','r','d',' ','o','n','e',' ','w','i','n','d','o','w',' ','(','a','n','d',' ','s','e','t',' ','w','i','n','d','o','w',' ','t','o',' ','_','\b','N',')','.','\n', ' ',' ','E','S','C','-','S','P','A','C','E',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','F','o','r','w','a','r','d',' ',' ','o','n','e',' ','w','i','n','d','o','w',',',' ','b','u','t',' ','d','o','n','\'','t',' ','s','t','o','p',' ','a','t',' ','e','n','d','-','o','f','-','f','i','l','e','.','\n', ' ',' ','d',' ',' ','^','D',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','F','o','r','w','a','r','d',' ',' ','o','n','e',' ','h','a','l','f','-','w','i','n','d','o','w',' ','(','a','n','d',' ','s','e','t',' ','h','a','l','f','-','w','i','n','d','o','w',' ','t','o',' ','_','\b','N',')','.','\n', ' ',' ','u',' ',' ','^','U',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','B','a','c','k','w','a','r','d',' ','o','n','e',' ','h','a','l','f','-','w','i','n','d','o','w',' ','(','a','n','d',' ','s','e','t',' ','h','a','l','f','-','w','i','n','d','o','w',' ','t','o',' ','_','\b','N',')','.','\n', ' ',' ','E','S','C','-',')',' ',' ','R','i','g','h','t','A','r','r','o','w',' ','*',' ',' ','R','i','g','h','t',' ','o','n','e',' ','h','a','l','f',' ','s','c','r','e','e','n',' ','w','i','d','t','h',' ','(','o','r',' ','_','\b','N',' ','p','o','s','i','t','i','o','n','s',')','.','\n', ' ',' ','E','S','C','-','(',' ',' ','L','e','f','t','A','r','r','o','w',' ',' ','*',' ',' ','L','e','f','t',' ',' ','o','n','e',' ','h','a','l','f',' ','s','c','r','e','e','n',' ','w','i','d','t','h',' ','(','o','r',' ','_','\b','N',' ','p','o','s','i','t','i','o','n','s',')','.','\n', ' ',' ','E','S','C','-','}',' ',' ','^','R','i','g','h','t','A','r','r','o','w',' ',' ',' ','R','i','g','h','t',' ','t','o',' ','l','a','s','t',' ','c','o','l','u','m','n',' ','d','i','s','p','l','a','y','e','d','.','\n', ' ',' ','E','S','C','-','{',' ',' ','^','L','e','f','t','A','r','r','o','w',' ',' ',' ',' ','L','e','f','t',' ',' ','t','o',' ','f','i','r','s','t',' ','c','o','l','u','m','n','.','\n', ' ',' ','F',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','F','o','r','w','a','r','d',' ','f','o','r','e','v','e','r',';',' ','l','i','k','e',' ','"','t','a','i','l',' ','-','f','"','.','\n', ' ',' ','E','S','C','-','F',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','L','i','k','e',' ','F',' ','b','u','t',' ','s','t','o','p',' ','w','h','e','n',' ','s','e','a','r','c','h',' ','p','a','t','t','e','r','n',' ','i','s',' ','f','o','u','n','d','.','\n', ' ',' ','r',' ',' ','^','R',' ',' ','^','L',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','R','e','p','a','i','n','t',' ','s','c','r','e','e','n','.','\n', ' ',' ','R',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','R','e','p','a','i','n','t',' ','s','c','r','e','e','n',',',' ','d','i','s','c','a','r','d','i','n','g',' ','b','u','f','f','e','r','e','d',' ','i','n','p','u','t','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','\n', ' ',' ',' ',' ',' ',' ',' ',' ','D','e','f','a','u','l','t',' ','"','w','i','n','d','o','w','"',' ','i','s',' ','t','h','e',' ','s','c','r','e','e','n',' ','h','e','i','g','h','t','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ','D','e','f','a','u','l','t',' ','"','h','a','l','f','-','w','i','n','d','o','w','"',' ','i','s',' ','h','a','l','f',' ','o','f',' ','t','h','e',' ','s','c','r','e','e','n',' ','h','e','i','g','h','t','.','\n', ' ','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','\n', '\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','\b','S','E','\b','E','A','\b','A','R','\b','R','C','\b','C','H','\b','H','I','\b','I','N','\b','N','G','\b','G','\n', '\n', ' ',' ','/','_','\b','p','_','\b','a','_','\b','t','_','\b','t','_','\b','e','_','\b','r','_','\b','n',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','S','e','a','r','c','h',' ','f','o','r','w','a','r','d',' ','f','o','r',' ','(','_','\b','N','-','t','h',')',' ','m','a','t','c','h','i','n','g',' ','l','i','n','e','.','\n', ' ',' ','?','_','\b','p','_','\b','a','_','\b','t','_','\b','t','_','\b','e','_','\b','r','_','\b','n',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','S','e','a','r','c','h',' ','b','a','c','k','w','a','r','d',' ','f','o','r',' ','(','_','\b','N','-','t','h',')',' ','m','a','t','c','h','i','n','g',' ','l','i','n','e','.','\n', ' ',' ','n',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','R','e','p','e','a','t',' ','p','r','e','v','i','o','u','s',' ','s','e','a','r','c','h',' ','(','f','o','r',' ','_','\b','N','-','t','h',' ','o','c','c','u','r','r','e','n','c','e',')','.','\n', ' ',' ','N',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','R','e','p','e','a','t',' ','p','r','e','v','i','o','u','s',' ','s','e','a','r','c','h',' ','i','n',' ','r','e','v','e','r','s','e',' ','d','i','r','e','c','t','i','o','n','.','\n', ' ',' ','E','S','C','-','n',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','R','e','p','e','a','t',' ','p','r','e','v','i','o','u','s',' ','s','e','a','r','c','h',',',' ','s','p','a','n','n','i','n','g',' ','f','i','l','e','s','.','\n', ' ',' ','E','S','C','-','N',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','R','e','p','e','a','t',' ','p','r','e','v','i','o','u','s',' ','s','e','a','r','c','h',',',' ','r','e','v','e','r','s','e',' ','d','i','r','.',' ','&',' ','s','p','a','n','n','i','n','g',' ','f','i','l','e','s','.','\n', ' ',' ','^','O','^','N',' ',' ','^','O','n',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','S','e','a','r','c','h',' ','f','o','r','w','a','r','d',' ','f','o','r',' ','(','_','\b','N','-','t','h',')',' ','O','S','C','8',' ','h','y','p','e','r','l','i','n','k','.','\n', ' ',' ','^','O','^','P',' ',' ','^','O','p',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','S','e','a','r','c','h',' ','b','a','c','k','w','a','r','d',' ','f','o','r',' ','(','_','\b','N','-','t','h',')',' ','O','S','C','8',' ','h','y','p','e','r','l','i','n','k','.','\n', ' ',' ','^','O','^','L',' ',' ','^','O','l',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','J','u','m','p',' ','t','o',' ','t','h','e',' ','c','u','r','r','e','n','t','l','y',' ','s','e','l','e','c','t','e','d',' ','O','S','C','8',' ','h','y','p','e','r','l','i','n','k','.','\n', ' ',' ','E','S','C','-','u',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','U','n','d','o',' ','(','t','o','g','g','l','e',')',' ','s','e','a','r','c','h',' ','h','i','g','h','l','i','g','h','t','i','n','g','.','\n', ' ',' ','E','S','C','-','U',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','C','l','e','a','r',' ','s','e','a','r','c','h',' ','h','i','g','h','l','i','g','h','t','i','n','g','.','\n', ' ',' ','&','_','\b','p','_','\b','a','_','\b','t','_','\b','t','_','\b','e','_','\b','r','_','\b','n',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','D','i','s','p','l','a','y',' ','o','n','l','y',' ','m','a','t','c','h','i','n','g',' ','l','i','n','e','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','\n', ' ',' ',' ',' ',' ',' ',' ',' ','A',' ','s','e','a','r','c','h',' ','p','a','t','t','e','r','n',' ','m','a','y',' ','b','e','g','i','n',' ','w','i','t','h',' ','o','n','e',' ','o','r',' ','m','o','r','e',' ','o','f',':','\n', ' ',' ',' ',' ',' ',' ',' ',' ','^','N',' ','o','r',' ','!',' ',' ','S','e','a','r','c','h',' ','f','o','r',' ','N','O','N','-','m','a','t','c','h','i','n','g',' ','l','i','n','e','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ','^','E',' ','o','r',' ','*',' ',' ','S','e','a','r','c','h',' ','m','u','l','t','i','p','l','e',' ','f','i','l','e','s',' ','(','p','a','s','s',' ','t','h','r','u',' ','E','N','D',' ','O','F',' ','F','I','L','E',')','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ','^','F',' ','o','r',' ','@',' ',' ','S','t','a','r','t',' ','s','e','a','r','c','h',' ','a','t',' ','F','I','R','S','T',' ','f','i','l','e',' ','(','f','o','r',' ','/',')',' ','o','r',' ','l','a','s','t',' ','f','i','l','e',' ','(','f','o','r',' ','?',')','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ','^','K',' ',' ',' ',' ',' ',' ',' ','H','i','g','h','l','i','g','h','t',' ','m','a','t','c','h','e','s',',',' ','b','u','t',' ','d','o','n','\'','t',' ','m','o','v','e',' ','(','K','E','E','P',' ','p','o','s','i','t','i','o','n',')','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ','^','R',' ',' ',' ',' ',' ',' ',' ','D','o','n','\'','t',' ','u','s','e',' ','R','E','G','U','L','A','R',' ','E','X','P','R','E','S','S','I','O','N','S','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ','^','S',' ','_','\b','n',' ',' ',' ',' ',' ','S','e','a','r','c','h',' ','f','o','r',' ','m','a','t','c','h',' ','i','n',' ','_','\b','n','-','t','h',' ','p','a','r','e','n','t','h','e','s','i','z','e','d',' ','s','u','b','p','a','t','t','e','r','n','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ','^','W',' ',' ',' ',' ',' ',' ',' ','W','R','A','P',' ','s','e','a','r','c','h',' ','i','f',' ','n','o',' ','m','a','t','c','h',' ','f','o','u','n','d','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ','^','L',' ',' ',' ',' ',' ',' ',' ','E','n','t','e','r',' ','n','e','x','t',' ','c','h','a','r','a','c','t','e','r',' ','l','i','t','e','r','a','l','l','y',' ','i','n','t','o',' ','p','a','t','t','e','r','n','.','\n', ' ','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','\n', '\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','J','\b','J','U','\b','U','M','\b','M','P','\b','P','I','\b','I','N','\b','N','G','\b','G','\n', '\n', ' ',' ','g',' ',' ','<',' ',' ','E','S','C','-','<',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','G','o',' ','t','o',' ','f','i','r','s','t',' ','l','i','n','e',' ','i','n',' ','f','i','l','e',' ','(','o','r',' ','l','i','n','e',' ','_','\b','N',')','.','\n', ' ',' ','G',' ',' ','>',' ',' ','E','S','C','-','>',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','G','o',' ','t','o',' ','l','a','s','t',' ','l','i','n','e',' ','i','n',' ','f','i','l','e',' ','(','o','r',' ','l','i','n','e',' ','_','\b','N',')','.','\n', ' ',' ','p',' ',' ','%',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','G','o',' ','t','o',' ','b','e','g','i','n','n','i','n','g',' ','o','f',' ','f','i','l','e',' ','(','o','r',' ','_','\b','N',' ','p','e','r','c','e','n','t',' ','i','n','t','o',' ','f','i','l','e',')','.','\n', ' ',' ','t',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','G','o',' ','t','o',' ','t','h','e',' ','(','_','\b','N','-','t','h',')',' ','n','e','x','t',' ','t','a','g','.','\n', ' ',' ','T',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','G','o',' ','t','o',' ','t','h','e',' ','(','_','\b','N','-','t','h',')',' ','p','r','e','v','i','o','u','s',' ','t','a','g','.','\n', ' ',' ','{',' ',' ','(',' ',' ','[',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','F','i','n','d',' ','c','l','o','s','e',' ','b','r','a','c','k','e','t',' ','}',' ',')',' ',']','.','\n', ' ',' ','}',' ',' ',')',' ',' ',']',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','F','i','n','d',' ','o','p','e','n',' ','b','r','a','c','k','e','t',' ','{',' ','(',' ','[','.','\n', ' ',' ','E','S','C','-','^','F',' ','_','\b','<','_','\b','c','_','\b','1','_','\b','>',' ','_','\b','<','_','\b','c','_','\b','2','_','\b','>',' ',' ','*',' ',' ','F','i','n','d',' ','c','l','o','s','e',' ','b','r','a','c','k','e','t',' ','_','\b','<','_','\b','c','_','\b','2','_','\b','>','.','\n', ' ',' ','E','S','C','-','^','B',' ','_','\b','<','_','\b','c','_','\b','1','_','\b','>',' ','_','\b','<','_','\b','c','_','\b','2','_','\b','>',' ',' ','*',' ',' ','F','i','n','d',' ','o','p','e','n',' ','b','r','a','c','k','e','t',' ','_','\b','<','_','\b','c','_','\b','1','_','\b','>','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','\n', ' ',' ',' ',' ',' ',' ',' ',' ','E','a','c','h',' ','"','f','i','n','d',' ','c','l','o','s','e',' ','b','r','a','c','k','e','t','"',' ','c','o','m','m','a','n','d',' ','g','o','e','s',' ','f','o','r','w','a','r','d',' ','t','o',' ','t','h','e',' ','c','l','o','s','e',' ','b','r','a','c','k','e','t',' ','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','m','a','t','c','h','i','n','g',' ','t','h','e',' ','(','_','\b','N','-','t','h',')',' ','o','p','e','n',' ','b','r','a','c','k','e','t',' ','i','n',' ','t','h','e',' ','t','o','p',' ','l','i','n','e','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ','E','a','c','h',' ','"','f','i','n','d',' ','o','p','e','n',' ','b','r','a','c','k','e','t','"',' ','c','o','m','m','a','n','d',' ','g','o','e','s',' ','b','a','c','k','w','a','r','d',' ','t','o',' ','t','h','e',' ','o','p','e','n',' ','b','r','a','c','k','e','t',' ','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','m','a','t','c','h','i','n','g',' ','t','h','e',' ','(','_','\b','N','-','t','h',')',' ','c','l','o','s','e',' ','b','r','a','c','k','e','t',' ','i','n',' ','t','h','e',' ','b','o','t','t','o','m',' ','l','i','n','e','.','\n', '\n', ' ',' ','m','_','\b','<','_','\b','l','_','\b','e','_','\b','t','_','\b','t','_','\b','e','_','\b','r','_','\b','>',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','M','a','r','k',' ','t','h','e',' ','c','u','r','r','e','n','t',' ','t','o','p',' ','l','i','n','e',' ','w','i','t','h',' ','<','l','e','t','t','e','r','>','.','\n', ' ',' ','M','_','\b','<','_','\b','l','_','\b','e','_','\b','t','_','\b','t','_','\b','e','_','\b','r','_','\b','>',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','M','a','r','k',' ','t','h','e',' ','c','u','r','r','e','n','t',' ','b','o','t','t','o','m',' ','l','i','n','e',' ','w','i','t','h',' ','<','l','e','t','t','e','r','>','.','\n', ' ',' ','\'','_','\b','<','_','\b','l','_','\b','e','_','\b','t','_','\b','t','_','\b','e','_','\b','r','_','\b','>',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','G','o',' ','t','o',' ','a',' ','p','r','e','v','i','o','u','s','l','y',' ','m','a','r','k','e','d',' ','p','o','s','i','t','i','o','n','.','\n', ' ',' ','\'','\'',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','G','o',' ','t','o',' ','t','h','e',' ','p','r','e','v','i','o','u','s',' ','p','o','s','i','t','i','o','n','.','\n', ' ',' ','^','X','^','X',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','a','m','e',' ','a','s',' ','\'','.','\n', ' ',' ','E','S','C','-','m','_','\b','<','_','\b','l','_','\b','e','_','\b','t','_','\b','t','_','\b','e','_','\b','r','_','\b','>',' ',' ',' ',' ',' ',' ',' ',' ','C','l','e','a','r',' ','a',' ','m','a','r','k','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','\n', ' ',' ',' ',' ',' ',' ',' ',' ','A',' ','m','a','r','k',' ','i','s',' ','a','n','y',' ','u','p','p','e','r','-','c','a','s','e',' ','o','r',' ','l','o','w','e','r','-','c','a','s','e',' ','l','e','t','t','e','r','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ','C','e','r','t','a','i','n',' ','m','a','r','k','s',' ','a','r','e',' ','p','r','e','d','e','f','i','n','e','d',':','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','^',' ',' ','m','e','a','n','s',' ',' ','b','e','g','i','n','n','i','n','g',' ','o','f',' ','t','h','e',' ','f','i','l','e','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','$',' ',' ','m','e','a','n','s',' ',' ','e','n','d',' ','o','f',' ','t','h','e',' ','f','i','l','e','\n', ' ','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','\n', '\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','C','\b','C','H','\b','H','A','\b','A','N','\b','N','G','\b','G','I','\b','I','N','\b','N','G','\b','G',' ','F','\b','F','I','\b','I','L','\b','L','E','\b','E','S','\b','S','\n', '\n', ' ',' ',':','e',' ','[','_','\b','f','_','\b','i','_','\b','l','_','\b','e',']',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','E','x','a','m','i','n','e',' ','a',' ','n','e','w',' ','f','i','l','e','.','\n', ' ',' ','^','X','^','V',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','a','m','e',' ','a','s',' ',':','e','.','\n', ' ',' ',':','n',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','E','x','a','m','i','n','e',' ','t','h','e',' ','(','_','\b','N','-','t','h',')',' ','n','e','x','t',' ','f','i','l','e',' ','f','r','o','m',' ','t','h','e',' ','c','o','m','m','a','n','d',' ','l','i','n','e','.','\n', ' ',' ',':','p',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','E','x','a','m','i','n','e',' ','t','h','e',' ','(','_','\b','N','-','t','h',')',' ','p','r','e','v','i','o','u','s',' ','f','i','l','e',' ','f','r','o','m',' ','t','h','e',' ','c','o','m','m','a','n','d',' ','l','i','n','e','.','\n', ' ',' ',':','x',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','*',' ',' ','E','x','a','m','i','n','e',' ','t','h','e',' ','f','i','r','s','t',' ','(','o','r',' ','_','\b','N','-','t','h',')',' ','f','i','l','e',' ','f','r','o','m',' ','t','h','e',' ','c','o','m','m','a','n','d',' ','l','i','n','e','.','\n', ' ',' ','^','O','^','O',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','O','p','e','n',' ','t','h','e',' ','c','u','r','r','e','n','t','l','y',' ','s','e','l','e','c','t','e','d',' ','O','S','C','8',' ','h','y','p','e','r','l','i','n','k','.','\n', ' ',' ',':','d',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','e','l','e','t','e',' ','t','h','e',' ','c','u','r','r','e','n','t',' ','f','i','l','e',' ','f','r','o','m',' ','t','h','e',' ','c','o','m','m','a','n','d',' ','l','i','n','e',' ','l','i','s','t','.','\n', ' ',' ','=',' ',' ','^','G',' ',' ',':','f',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','P','r','i','n','t',' ','c','u','r','r','e','n','t',' ','f','i','l','e',' ','n','a','m','e','.','\n', ' ','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','\n', '\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','M','\b','M','I','\b','I','S','\b','S','C','\b','C','E','\b','E','L','\b','L','L','\b','L','A','\b','A','N','\b','N','E','\b','E','O','\b','O','U','\b','U','S','\b','S',' ','C','\b','C','O','\b','O','M','\b','M','M','\b','M','A','\b','A','N','\b','N','D','\b','D','S','\b','S','\n', '\n', ' ',' ','-','_','\b','<','_','\b','f','_','\b','l','_','\b','a','_','\b','g','_','\b','>',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','T','o','g','g','l','e',' ','a',' ','c','o','m','m','a','n','d',' ','l','i','n','e',' ','o','p','t','i','o','n',' ','[','s','e','e',' ','O','P','T','I','O','N','S',' ','b','e','l','o','w',']','.','\n', ' ',' ','-','-','_','\b','<','_','\b','n','_','\b','a','_','\b','m','_','\b','e','_','\b','>',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','T','o','g','g','l','e',' ','a',' ','c','o','m','m','a','n','d',' ','l','i','n','e',' ','o','p','t','i','o','n',',',' ','b','y',' ','n','a','m','e','.','\n', ' ',' ','_','_','\b','<','_','\b','f','_','\b','l','_','\b','a','_','\b','g','_','\b','>',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','i','s','p','l','a','y',' ','t','h','e',' ','s','e','t','t','i','n','g',' ','o','f',' ','a',' ','c','o','m','m','a','n','d',' ','l','i','n','e',' ','o','p','t','i','o','n','.','\n', ' ',' ','_','_','_','\b','<','_','\b','n','_','\b','a','_','\b','m','_','\b','e','_','\b','>',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','i','s','p','l','a','y',' ','t','h','e',' ','s','e','t','t','i','n','g',' ','o','f',' ','a','n',' ','o','p','t','i','o','n',',',' ','b','y',' ','n','a','m','e','.','\n', ' ',' ','+','_','\b','c','_','\b','m','_','\b','d',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','E','x','e','c','u','t','e',' ','t','h','e',' ','l','e','s','s',' ','c','m','d',' ','e','a','c','h',' ','t','i','m','e',' ','a',' ','n','e','w',' ','f','i','l','e',' ','i','s',' ','e','x','a','m','i','n','e','d','.','\n', '\n', ' ',' ','!','_','\b','c','_','\b','o','_','\b','m','_','\b','m','_','\b','a','_','\b','n','_','\b','d',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','E','x','e','c','u','t','e',' ','t','h','e',' ','s','h','e','l','l',' ','c','o','m','m','a','n','d',' ','w','i','t','h',' ','$','S','H','E','L','L','.','\n', ' ',' ','#','_','\b','c','_','\b','o','_','\b','m','_','\b','m','_','\b','a','_','\b','n','_','\b','d',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','E','x','e','c','u','t','e',' ','t','h','e',' ','s','h','e','l','l',' ','c','o','m','m','a','n','d',',',' ','e','x','p','a','n','d','e','d',' ','l','i','k','e',' ','a',' ','p','r','o','m','p','t','.','\n', ' ',' ','|','X','\b','X','_','\b','c','_','\b','o','_','\b','m','_','\b','m','_','\b','a','_','\b','n','_','\b','d',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','P','i','p','e',' ','f','i','l','e',' ','b','e','t','w','e','e','n',' ','c','u','r','r','e','n','t',' ','p','o','s',' ','&',' ','m','a','r','k',' ','X','\b','X',' ','t','o',' ','s','h','e','l','l',' ','c','o','m','m','a','n','d','.','\n', ' ',' ','s',' ','_','\b','f','_','\b','i','_','\b','l','_','\b','e',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','a','v','e',' ','i','n','p','u','t',' ','t','o',' ','a',' ','f','i','l','e','.','\n', ' ',' ','v',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','E','d','i','t',' ','t','h','e',' ','c','u','r','r','e','n','t',' ','f','i','l','e',' ','w','i','t','h',' ','$','V','I','S','U','A','L',' ','o','r',' ','$','E','D','I','T','O','R','.','\n', ' ',' ','V',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','P','r','i','n','t',' ','v','e','r','s','i','o','n',' ','n','u','m','b','e','r',' ','o','f',' ','"','l','e','s','s','"','.','\n', ' ','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','\n', '\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','O','\b','O','P','\b','P','T','\b','T','I','\b','I','O','\b','O','N','\b','N','S','\b','S','\n', '\n', ' ',' ',' ',' ',' ',' ',' ',' ','M','o','s','t',' ','o','p','t','i','o','n','s',' ','m','a','y',' ','b','e',' ','c','h','a','n','g','e','d',' ','e','i','t','h','e','r',' ','o','n',' ','t','h','e',' ','c','o','m','m','a','n','d',' ','l','i','n','e',',','\n', ' ',' ',' ',' ',' ',' ',' ',' ','o','r',' ','f','r','o','m',' ','w','i','t','h','i','n',' ','l','e','s','s',' ','b','y',' ','u','s','i','n','g',' ','t','h','e',' ','-',' ','o','r',' ','-','-',' ','c','o','m','m','a','n','d','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ','O','p','t','i','o','n','s',' ','m','a','y',' ','b','e',' ','g','i','v','e','n',' ','i','n',' ','o','n','e',' ','o','f',' ','t','w','o',' ','f','o','r','m','s',':',' ','e','i','t','h','e','r',' ','a',' ','s','i','n','g','l','e','\n', ' ',' ',' ',' ',' ',' ',' ',' ','c','h','a','r','a','c','t','e','r',' ','p','r','e','c','e','d','e','d',' ','b','y',' ','a',' ','-',',',' ','o','r',' ','a',' ','n','a','m','e',' ','p','r','e','c','e','d','e','d',' ','b','y',' ','-','-','.','\n', '\n', ' ',' ','-','?',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','h','e','l','p','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','i','s','p','l','a','y',' ','h','e','l','p',' ','(','f','r','o','m',' ','c','o','m','m','a','n','d',' ','l','i','n','e',')','.','\n', ' ',' ','-','a',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','s','e','a','r','c','h','-','s','k','i','p','-','s','c','r','e','e','n','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','e','a','r','c','h',' ','s','k','i','p','s',' ','c','u','r','r','e','n','t',' ','s','c','r','e','e','n','.','\n', ' ',' ','-','A',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','S','E','A','R','C','H','-','S','K','I','P','-','S','C','R','E','E','N','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','e','a','r','c','h',' ','s','t','a','r','t','s',' ','j','u','s','t',' ','a','f','t','e','r',' ','t','a','r','g','e','t',' ','l','i','n','e','.','\n', ' ',' ','-','b',' ','[','_','\b','N',']',' ',' ','.','.','.','.',' ',' ','-','-','b','u','f','f','e','r','s','=','[','_','\b','N',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','N','u','m','b','e','r',' ','o','f',' ','b','u','f','f','e','r','s','.','\n', ' ',' ','-','B',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','a','u','t','o','-','b','u','f','f','e','r','s','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','o','n','\'','t',' ','a','u','t','o','m','a','t','i','c','a','l','l','y',' ','a','l','l','o','c','a','t','e',' ','b','u','f','f','e','r','s',' ','f','o','r',' ','p','i','p','e','s','.','\n', ' ',' ','-','c',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','c','l','e','a','r','-','s','c','r','e','e','n','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','R','e','p','a','i','n','t',' ','b','y',' ','c','l','e','a','r','i','n','g',' ','r','a','t','h','e','r',' ','t','h','a','n',' ','s','c','r','o','l','l','i','n','g','.','\n', ' ',' ','-','d',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','d','u','m','b','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','u','m','b',' ','t','e','r','m','i','n','a','l','.','\n', ' ',' ','-','D',' ','x','\b','x','_','\b','c','_','\b','o','_','\b','l','_','\b','o','_','\b','r',' ',' ','.',' ',' ','-','-','c','o','l','o','r','=','x','\b','x','_','\b','c','_','\b','o','_','\b','l','_','\b','o','_','\b','r','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','e','t',' ','s','c','r','e','e','n',' ','c','o','l','o','r','s','.','\n', ' ',' ','-','e',' ',' ','-','E',' ',' ','.','.','.','.',' ',' ','-','-','q','u','i','t','-','a','t','-','e','o','f',' ',' ','-','-','Q','U','I','T','-','A','T','-','E','O','F','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','Q','u','i','t',' ','a','t',' ','e','n','d',' ','o','f',' ','f','i','l','e','.','\n', ' ',' ','-','f',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','f','o','r','c','e','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','F','o','r','c','e',' ','o','p','e','n',' ','n','o','n','-','r','e','g','u','l','a','r',' ','f','i','l','e','s','.','\n', ' ',' ','-','F',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','q','u','i','t','-','i','f','-','o','n','e','-','s','c','r','e','e','n','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','Q','u','i','t',' ','i','f',' ','e','n','t','i','r','e',' ','f','i','l','e',' ','f','i','t','s',' ','o','n',' ','f','i','r','s','t',' ','s','c','r','e','e','n','.','\n', ' ',' ','-','g',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','h','i','l','i','t','e','-','s','e','a','r','c','h','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','H','i','g','h','l','i','g','h','t',' ','o','n','l','y',' ','l','a','s','t',' ','m','a','t','c','h',' ','f','o','r',' ','s','e','a','r','c','h','e','s','.','\n', ' ',' ','-','G',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','H','I','L','I','T','E','-','S','E','A','R','C','H','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','o','n','\'','t',' ','h','i','g','h','l','i','g','h','t',' ','a','n','y',' ','m','a','t','c','h','e','s',' ','f','o','r',' ','s','e','a','r','c','h','e','s','.','\n', ' ',' ','-','h',' ','[','_','\b','N',']',' ',' ','.','.','.','.',' ',' ','-','-','m','a','x','-','b','a','c','k','-','s','c','r','o','l','l','=','[','_','\b','N',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','B','a','c','k','w','a','r','d',' ','s','c','r','o','l','l',' ','l','i','m','i','t','.','\n', ' ',' ','-','i',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','i','g','n','o','r','e','-','c','a','s','e','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','I','g','n','o','r','e',' ','c','a','s','e',' ','i','n',' ','s','e','a','r','c','h','e','s',' ','t','h','a','t',' ','d','o',' ','n','o','t',' ','c','o','n','t','a','i','n',' ','u','p','p','e','r','c','a','s','e','.','\n', ' ',' ','-','I',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','I','G','N','O','R','E','-','C','A','S','E','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','I','g','n','o','r','e',' ','c','a','s','e',' ','i','n',' ','a','l','l',' ','s','e','a','r','c','h','e','s','.','\n', ' ',' ','-','j',' ','[','_','\b','N',']',' ',' ','.','.','.','.',' ',' ','-','-','j','u','m','p','-','t','a','r','g','e','t','=','[','_','\b','N',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','c','r','e','e','n',' ','p','o','s','i','t','i','o','n',' ','o','f',' ','t','a','r','g','e','t',' ','l','i','n','e','s','.','\n', ' ',' ','-','J',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','s','t','a','t','u','s','-','c','o','l','u','m','n','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','i','s','p','l','a','y',' ','a',' ','s','t','a','t','u','s',' ','c','o','l','u','m','n',' ','a','t',' ','l','e','f','t',' ','e','d','g','e',' ','o','f',' ','s','c','r','e','e','n','.','\n', ' ',' ','-','k',' ','_','\b','f','_','\b','i','_','\b','l','_','\b','e',' ',' ','.','.','.',' ',' ','-','-','l','e','s','s','k','e','y','-','f','i','l','e','=','_','\b','f','_','\b','i','_','\b','l','_','\b','e','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','U','s','e',' ','a',' ','c','o','m','p','i','l','e','d',' ','l','e','s','s','k','e','y',' ','f','i','l','e','.','\n', ' ',' ','-','K',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','q','u','i','t','-','o','n','-','i','n','t','r','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','E','x','i','t',' ','l','e','s','s',' ','i','n',' ','r','e','s','p','o','n','s','e',' ','t','o',' ','c','t','r','l','-','C','.','\n', ' ',' ','-','L',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','n','o','-','l','e','s','s','o','p','e','n','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','I','g','n','o','r','e',' ','t','h','e',' ','L','E','S','S','O','P','E','N',' ','e','n','v','i','r','o','n','m','e','n','t',' ','v','a','r','i','a','b','l','e','.','\n', ' ',' ','-','m',' ',' ','-','M',' ',' ','.','.','.','.',' ',' ','-','-','l','o','n','g','-','p','r','o','m','p','t',' ',' ','-','-','L','O','N','G','-','P','R','O','M','P','T','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','e','t',' ','p','r','o','m','p','t',' ','s','t','y','l','e','.','\n', ' ',' ','-','n',' ','.','.','.','.','.','.','.','.','.',' ',' ','-','-','l','i','n','e','-','n','u','m','b','e','r','s','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','u','p','p','r','e','s','s',' ','l','i','n','e',' ','n','u','m','b','e','r','s',' ','i','n',' ','p','r','o','m','p','t','s',' ','a','n','d',' ','m','e','s','s','a','g','e','s','.','\n', ' ',' ','-','N',' ','.','.','.','.','.','.','.','.','.',' ',' ','-','-','L','I','N','E','-','N','U','M','B','E','R','S','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','i','s','p','l','a','y',' ','l','i','n','e',' ','n','u','m','b','e','r',' ','a','t',' ','s','t','a','r','t',' ','o','f',' ','e','a','c','h',' ','l','i','n','e','.','\n', ' ',' ','-','o',' ','[','_','\b','f','_','\b','i','_','\b','l','_','\b','e',']',' ','.','.',' ',' ','-','-','l','o','g','-','f','i','l','e','=','[','_','\b','f','_','\b','i','_','\b','l','_','\b','e',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','C','o','p','y',' ','t','o',' ','l','o','g',' ','f','i','l','e',' ','(','s','t','a','n','d','a','r','d',' ','i','n','p','u','t',' ','o','n','l','y',')','.','\n', ' ',' ','-','O',' ','[','_','\b','f','_','\b','i','_','\b','l','_','\b','e',']',' ','.','.',' ',' ','-','-','L','O','G','-','F','I','L','E','=','[','_','\b','f','_','\b','i','_','\b','l','_','\b','e',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','C','o','p','y',' ','t','o',' ','l','o','g',' ','f','i','l','e',' ','(','u','n','c','o','n','d','i','t','i','o','n','a','l','l','y',' ','o','v','e','r','w','r','i','t','e',')','.','\n', ' ',' ','-','p',' ','_','\b','p','_','\b','a','_','\b','t','_','\b','t','_','\b','e','_','\b','r','_','\b','n',' ','.',' ',' ','-','-','p','a','t','t','e','r','n','=','[','_','\b','p','_','\b','a','_','\b','t','_','\b','t','_','\b','e','_','\b','r','_','\b','n',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','t','a','r','t',' ','a','t',' ','p','a','t','t','e','r','n',' ','(','f','r','o','m',' ','c','o','m','m','a','n','d',' ','l','i','n','e',')','.','\n', ' ',' ','-','P',' ','[','_','\b','p','_','\b','r','_','\b','o','_','\b','m','_','\b','p','_','\b','t',']',' ',' ',' ','-','-','p','r','o','m','p','t','=','[','_','\b','p','_','\b','r','_','\b','o','_','\b','m','_','\b','p','_','\b','t',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','e','f','i','n','e',' ','n','e','w',' ','p','r','o','m','p','t','.','\n', ' ',' ','-','q',' ',' ','-','Q',' ',' ','.','.','.','.',' ',' ','-','-','q','u','i','e','t',' ',' ','-','-','Q','U','I','E','T',' ',' ','-','-','s','i','l','e','n','t',' ','-','-','S','I','L','E','N','T','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','Q','u','i','e','t',' ','t','h','e',' ','t','e','r','m','i','n','a','l',' ','b','e','l','l','.','\n', ' ',' ','-','r',' ',' ','-','R',' ',' ','.','.','.','.',' ',' ','-','-','r','a','w','-','c','o','n','t','r','o','l','-','c','h','a','r','s',' ',' ','-','-','R','A','W','-','C','O','N','T','R','O','L','-','C','H','A','R','S','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','O','u','t','p','u','t',' ','"','r','a','w','"',' ','c','o','n','t','r','o','l',' ','c','h','a','r','a','c','t','e','r','s','.','\n', ' ',' ','-','s',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','s','q','u','e','e','z','e','-','b','l','a','n','k','-','l','i','n','e','s','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','q','u','e','e','z','e',' ','m','u','l','t','i','p','l','e',' ','b','l','a','n','k',' ','l','i','n','e','s','.','\n', ' ',' ','-','S',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','c','h','o','p','-','l','o','n','g','-','l','i','n','e','s','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','C','h','o','p',' ','(','t','r','u','n','c','a','t','e',')',' ','l','o','n','g',' ','l','i','n','e','s',' ','r','a','t','h','e','r',' ','t','h','a','n',' ','w','r','a','p','p','i','n','g','.','\n', ' ',' ','-','t',' ','_','\b','t','_','\b','a','_','\b','g',' ',' ','.','.','.','.',' ',' ','-','-','t','a','g','=','[','_','\b','t','_','\b','a','_','\b','g',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','F','i','n','d',' ','a',' ','t','a','g','.','\n', ' ',' ','-','T',' ','[','_','\b','t','_','\b','a','_','\b','g','_','\b','s','_','\b','f','_','\b','i','_','\b','l','_','\b','e',']',' ','-','-','t','a','g','-','f','i','l','e','=','[','_','\b','t','_','\b','a','_','\b','g','_','\b','s','_','\b','f','_','\b','i','_','\b','l','_','\b','e',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','U','s','e',' ','a','n',' ','a','l','t','e','r','n','a','t','e',' ','t','a','g','s',' ','f','i','l','e','.','\n', ' ',' ','-','u',' ',' ','-','U',' ',' ','.','.','.','.',' ',' ','-','-','u','n','d','e','r','l','i','n','e','-','s','p','e','c','i','a','l',' ',' ','-','-','U','N','D','E','R','L','I','N','E','-','S','P','E','C','I','A','L','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','C','h','a','n','g','e',' ','h','a','n','d','l','i','n','g',' ','o','f',' ','b','a','c','k','s','p','a','c','e','s',',',' ','t','a','b','s',' ','a','n','d',' ','c','a','r','r','i','a','g','e',' ','r','e','t','u','r','n','s','.','\n', ' ',' ','-','V',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','v','e','r','s','i','o','n','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','i','s','p','l','a','y',' ','t','h','e',' ','v','e','r','s','i','o','n',' ','n','u','m','b','e','r',' ','o','f',' ','"','l','e','s','s','"','.','\n', ' ',' ','-','w',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','h','i','l','i','t','e','-','u','n','r','e','a','d','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','H','i','g','h','l','i','g','h','t',' ','f','i','r','s','t',' ','n','e','w',' ','l','i','n','e',' ','a','f','t','e','r',' ','f','o','r','w','a','r','d','-','s','c','r','e','e','n','.','\n', ' ',' ','-','W',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','H','I','L','I','T','E','-','U','N','R','E','A','D','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','H','i','g','h','l','i','g','h','t',' ','f','i','r','s','t',' ','n','e','w',' ','l','i','n','e',' ','a','f','t','e','r',' ','a','n','y',' ','f','o','r','w','a','r','d',' ','m','o','v','e','m','e','n','t','.','\n', ' ',' ','-','x',' ','[','_','\b','N','[',',','.','.','.',']',']',' ',' ','-','-','t','a','b','s','=','[','_','\b','N','[',',','.','.','.',']',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','e','t',' ','t','a','b',' ','s','t','o','p','s','.','\n', ' ',' ','-','X',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','n','o','-','i','n','i','t','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','o','n','\'','t',' ','u','s','e',' ','t','e','r','m','c','a','p',' ','i','n','i','t','/','d','e','i','n','i','t',' ','s','t','r','i','n','g','s','.','\n', ' ',' ','-','y',' ','[','_','\b','N',']',' ',' ','.','.','.','.',' ',' ','-','-','m','a','x','-','f','o','r','w','-','s','c','r','o','l','l','=','[','_','\b','N',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','F','o','r','w','a','r','d',' ','s','c','r','o','l','l',' ','l','i','m','i','t','.','\n', ' ',' ','-','z',' ','[','_','\b','N',']',' ',' ','.','.','.','.',' ',' ','-','-','w','i','n','d','o','w','=','[','_','\b','N',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','e','t',' ','s','i','z','e',' ','o','f',' ','w','i','n','d','o','w','.','\n', ' ',' ','-','"',' ','[','_','\b','c','[','_','\b','c',']',']',' ',' ','.',' ',' ','-','-','q','u','o','t','e','s','=','[','_','\b','c','[','_','\b','c',']',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','e','t',' ','s','h','e','l','l',' ','q','u','o','t','e',' ','c','h','a','r','a','c','t','e','r','s','.','\n', ' ',' ','-','~',' ',' ','.','.','.','.','.','.','.','.',' ',' ','-','-','t','i','l','d','e','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','o','n','\'','t',' ','d','i','s','p','l','a','y',' ','t','i','l','d','e','s',' ','a','f','t','e','r',' ','e','n','d',' ','o','f',' ','f','i','l','e','.','\n', ' ',' ','-','#',' ','[','_','\b','N',']',' ',' ','.','.','.','.',' ',' ','-','-','s','h','i','f','t','=','[','_','\b','N',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','e','t',' ','h','o','r','i','z','o','n','t','a','l',' ','s','c','r','o','l','l',' ','a','m','o','u','n','t',' ','(','0',' ','=',' ','o','n','e',' ','h','a','l','f',' ','s','c','r','e','e','n',' ','w','i','d','t','h',')','.','\n', '\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','e','x','i','t','-','f','o','l','l','o','w','-','o','n','-','c','l','o','s','e','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','E','x','i','t',' ','F',' ','c','o','m','m','a','n','d',' ','o','n',' ','a',' ','p','i','p','e',' ','w','h','e','n',' ','w','r','i','t','e','r',' ','c','l','o','s','e','s',' ','p','i','p','e','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','f','i','l','e','-','s','i','z','e','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','A','u','t','o','m','a','t','i','c','a','l','l','y',' ','d','e','t','e','r','m','i','n','e',' ','t','h','e',' ','s','i','z','e',' ','o','f',' ','t','h','e',' ','i','n','p','u','t',' ','f','i','l','e','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','f','o','l','l','o','w','-','n','a','m','e','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','T','h','e',' ','F',' ','c','o','m','m','a','n','d',' ','c','h','a','n','g','e','s',' ','f','i','l','e','s',' ','i','f',' ','t','h','e',' ','i','n','p','u','t',' ','f','i','l','e',' ','i','s',' ','r','e','n','a','m','e','d','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','h','e','a','d','e','r','=','[','_','\b','L','[',',','_','\b','C','[',',','_','\b','N',']',']',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','U','s','e',' ','_','\b','L',' ','l','i','n','e','s',' ','(','s','t','a','r','t','i','n','g',' ','a','t',' ','l','i','n','e',' ','_','\b','N',')',' ','a','n','d',' ','_','\b','C',' ','c','o','l','u','m','n','s',' ','a','s',' ','h','e','a','d','e','r','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','i','n','c','s','e','a','r','c','h','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','e','a','r','c','h',' ','f','i','l','e',' ','a','s',' ','e','a','c','h',' ','p','a','t','t','e','r','n',' ','c','h','a','r','a','c','t','e','r',' ','i','s',' ','t','y','p','e','d',' ','i','n','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','i','n','t','r','=','[','_','\b','C',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','U','s','e',' ','_','\b','C',' ','i','n','s','t','e','a','d',' ','o','f',' ','^','X',' ','t','o',' ','i','n','t','e','r','r','u','p','t',' ','a',' ','r','e','a','d','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','l','e','s','s','k','e','y','-','c','o','n','t','e','x','t','=','_','\b','t','_','\b','e','_','\b','x','_','\b','t','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','U','s','e',' ','l','e','s','s','k','e','y',' ','s','o','u','r','c','e',' ','f','i','l','e',' ','c','o','n','t','e','n','t','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','l','e','s','s','k','e','y','-','s','r','c','=','_','\b','f','_','\b','i','_','\b','l','_','\b','e','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','U','s','e',' ','a',' ','l','e','s','s','k','e','y',' ','s','o','u','r','c','e',' ','f','i','l','e','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','l','i','n','e','-','n','u','m','-','w','i','d','t','h','=','[','_','\b','N',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','e','t',' ','t','h','e',' ','w','i','d','t','h',' ','o','f',' ','t','h','e',' ','-','N',' ','l','i','n','e',' ','n','u','m','b','e','r',' ','f','i','e','l','d',' ','t','o',' ','_','\b','N',' ','c','h','a','r','a','c','t','e','r','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','m','a','t','c','h','-','s','h','i','f','t','=','[','_','\b','N',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','h','o','w',' ','a','t',' ','l','e','a','s','t',' ','_','\b','N',' ','c','h','a','r','a','c','t','e','r','s',' ','t','o',' ','t','h','e',' ','l','e','f','t',' ','o','f',' ','a',' ','s','e','a','r','c','h',' ','m','a','t','c','h','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','m','o','d','e','l','i','n','e','s','=','[','_','\b','N',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','R','e','a','d',' ','_','\b','N',' ','l','i','n','e','s',' ','f','r','o','m',' ','t','h','e',' ','i','n','p','u','t',' ','f','i','l','e',' ','a','n','d',' ','l','o','o','k',' ','f','o','r',' ','v','i','m',' ','m','o','d','e','l','i','n','e','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','m','o','u','s','e','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','E','n','a','b','l','e',' ','m','o','u','s','e',' ','i','n','p','u','t','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','n','o','-','k','e','y','p','a','d','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','o','n','\'','t',' ','s','e','n','d',' ','t','e','r','m','c','a','p',' ','k','e','y','p','a','d',' ','i','n','i','t','/','d','e','i','n','i','t',' ','s','t','r','i','n','g','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','n','o','-','h','i','s','t','d','u','p','s','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','R','e','m','o','v','e',' ','d','u','p','l','i','c','a','t','e','s',' ','f','r','o','m',' ','c','o','m','m','a','n','d',' ','h','i','s','t','o','r','y','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','n','o','-','n','u','m','b','e','r','-','h','e','a','d','e','r','s','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','o','n','\'','t',' ','g','i','v','e',' ','l','i','n','e',' ','n','u','m','b','e','r','s',' ','t','o',' ','h','e','a','d','e','r',' ','l','i','n','e','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','n','o','-','s','e','a','r','c','h','-','h','e','a','d','e','r','-','l','i','n','e','s','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','e','a','r','c','h','e','s',' ','d','o',' ','n','o','t',' ','i','n','c','l','u','d','e',' ','h','e','a','d','e','r',' ','l','i','n','e','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','n','o','-','s','e','a','r','c','h','-','h','e','a','d','e','r','-','c','o','l','u','m','n','s','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','e','a','r','c','h','e','s',' ','d','o',' ','n','o','t',' ','i','n','c','l','u','d','e',' ','h','e','a','d','e','r',' ','c','o','l','u','m','n','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','n','o','-','s','e','a','r','c','h','-','h','e','a','d','e','r','s','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','e','a','r','c','h','e','s',' ','d','o',' ','n','o','t',' ','i','n','c','l','u','d','e',' ','h','e','a','d','e','r',' ','l','i','n','e','s',' ','o','r',' ','c','o','l','u','m','n','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','n','o','-','v','b','e','l','l','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','i','s','a','b','l','e',' ','t','h','e',' ','t','e','r','m','i','n','a','l','\'','s',' ','v','i','s','u','a','l',' ','b','e','l','l','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','r','e','d','r','a','w','-','o','n','-','q','u','i','t','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','R','e','d','r','a','w',' ','f','i','n','a','l',' ','s','c','r','e','e','n',' ','w','h','e','n',' ','q','u','i','t','t','i','n','g','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','r','s','c','r','o','l','l','=','[','_','\b','C',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','e','t',' ','t','h','e',' ','c','h','a','r','a','c','t','e','r',' ','u','s','e','d',' ','t','o',' ','m','a','r','k',' ','t','r','u','n','c','a','t','e','d',' ','l','i','n','e','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','s','a','v','e','-','m','a','r','k','s','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','R','e','t','a','i','n',' ','m','a','r','k','s',' ','a','c','r','o','s','s',' ','i','n','v','o','c','a','t','i','o','n','s',' ','o','f',' ','l','e','s','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','s','e','a','r','c','h','-','o','p','t','i','o','n','s','=','[','E','F','K','N','R','W','-',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','e','t',' ','d','e','f','a','u','l','t',' ','o','p','t','i','o','n','s',' ','f','o','r',' ','e','v','e','r','y',' ','s','e','a','r','c','h','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','s','h','o','w','-','p','r','e','p','r','o','c','-','e','r','r','o','r','s','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','i','s','p','l','a','y',' ','a',' ','m','e','s','s','a','g','e',' ','i','f',' ','p','r','e','p','r','o','c','e','s','s','o','r',' ','e','x','i','t','s',' ','w','i','t','h',' ','a','n',' ','e','r','r','o','r',' ','s','t','a','t','u','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','p','r','o','c','-','b','a','c','k','s','p','a','c','e','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','P','r','o','c','e','s','s',' ','b','a','c','k','s','p','a','c','e','s',' ','f','o','r',' ','b','o','l','d','/','u','n','d','e','r','l','i','n','e','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','P','R','O','C','-','B','A','C','K','S','P','A','C','E','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','T','r','e','a','t',' ','b','a','c','k','s','p','a','c','e','s',' ','a','s',' ','c','o','n','t','r','o','l',' ','c','h','a','r','a','c','t','e','r','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','p','r','o','c','-','r','e','t','u','r','n','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','D','e','l','e','t','e',' ','c','a','r','r','i','a','g','e',' ','r','e','t','u','r','n','s',' ','b','e','f','o','r','e',' ','n','e','w','l','i','n','e','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','P','R','O','C','-','R','E','T','U','R','N','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','T','r','e','a','t',' ','c','a','r','r','i','a','g','e',' ','r','e','t','u','r','n','s',' ','a','s',' ','c','o','n','t','r','o','l',' ','c','h','a','r','a','c','t','e','r','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','p','r','o','c','-','t','a','b','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','E','x','p','a','n','d',' ','t','a','b','s',' ','t','o',' ','s','p','a','c','e','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','P','R','O','C','-','T','A','B','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','T','r','e','a','t',' ','t','a','b','s',' ','a','s',' ','c','o','n','t','r','o','l',' ','c','h','a','r','a','c','t','e','r','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','s','t','a','t','u','s','-','c','o','l','-','w','i','d','t','h','=','[','_','\b','N',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','e','t',' ','t','h','e',' ','w','i','d','t','h',' ','o','f',' ','t','h','e',' ','-','J',' ','s','t','a','t','u','s',' ','c','o','l','u','m','n',' ','t','o',' ','_','\b','N',' ','c','h','a','r','a','c','t','e','r','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','s','t','a','t','u','s','-','l','i','n','e','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','H','i','g','h','l','i','g','h','t',' ','o','r',' ','c','o','l','o','r',' ','t','h','e',' ','e','n','t','i','r','e',' ','l','i','n','e',' ','c','o','n','t','a','i','n','i','n','g',' ','a',' ','m','a','r','k','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','u','s','e','-','b','a','c','k','s','l','a','s','h','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','S','u','b','s','e','q','u','e','n','t',' ','o','p','t','i','o','n','s',' ','u','s','e',' ','b','a','c','k','s','l','a','s','h',' ','a','s',' ','e','s','c','a','p','e',' ','c','h','a','r','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','u','s','e','-','c','o','l','o','r','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','E','n','a','b','l','e','s',' ','c','o','l','o','r','e','d',' ','t','e','x','t','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','w','h','e','e','l','-','l','i','n','e','s','=','[','_','\b','N',']','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','E','a','c','h',' ','c','l','i','c','k',' ','o','f',' ','t','h','e',' ','m','o','u','s','e',' ','w','h','e','e','l',' ','m','o','v','e','s',' ','_','\b','N',' ','l','i','n','e','s','.','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','-','-','w','o','r','d','w','r','a','p','\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','W','r','a','p',' ','l','i','n','e','s',' ','a','t',' ','s','p','a','c','e','s','.','\n', '\n', '\n', ' ','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','-','\n', '\n', ' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','L','\b','L','I','\b','I','N','\b','N','E','\b','E',' ','E','\b','E','D','\b','D','I','\b','I','T','\b','T','I','\b','I','N','\b','N','G','\b','G','\n', '\n', ' ',' ',' ',' ',' ',' ',' ',' ','T','h','e','s','e',' ','k','e','y','s',' ','c','a','n',' ','b','e',' ','u','s','e','d',' ','t','o',' ','e','d','i','t',' ','t','e','x','t',' ','b','e','i','n','g',' ','e','n','t','e','r','e','d',' ','\n', ' ',' ',' ',' ',' ',' ',' ',' ','o','n',' ','t','h','e',' ','"','c','o','m','m','a','n','d',' ','l','i','n','e','"',' ','a','t',' ','t','h','e',' ','b','o','t','t','o','m',' ','o','f',' ','t','h','e',' ','s','c','r','e','e','n','.','\n', '\n', ' ','R','i','g','h','t','A','r','r','o','w',' ','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.',' ','E','S','C','-','l',' ','.','.','.',' ','M','o','v','e',' ','c','u','r','s','o','r',' ','r','i','g','h','t',' ','o','n','e',' ','c','h','a','r','a','c','t','e','r','.','\n', ' ','L','e','f','t','A','r','r','o','w',' ','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.',' ','E','S','C','-','h',' ','.','.','.',' ','M','o','v','e',' ','c','u','r','s','o','r',' ','l','e','f','t',' ','o','n','e',' ','c','h','a','r','a','c','t','e','r','.','\n', ' ','c','t','r','l','-','R','i','g','h','t','A','r','r','o','w',' ',' ','E','S','C','-','R','i','g','h','t','A','r','r','o','w',' ',' ','E','S','C','-','w',' ','.','.','.',' ','M','o','v','e',' ','c','u','r','s','o','r',' ','r','i','g','h','t',' ','o','n','e',' ','w','o','r','d','.','\n', ' ','c','t','r','l','-','L','e','f','t','A','r','r','o','w',' ',' ',' ','E','S','C','-','L','e','f','t','A','r','r','o','w',' ',' ',' ','E','S','C','-','b',' ','.','.','.',' ','M','o','v','e',' ','c','u','r','s','o','r',' ','l','e','f','t',' ','o','n','e',' ','w','o','r','d','.','\n', ' ','H','O','M','E',' ','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.',' ','E','S','C','-','0',' ','.','.','.',' ','M','o','v','e',' ','c','u','r','s','o','r',' ','t','o',' ','s','t','a','r','t',' ','o','f',' ','l','i','n','e','.','\n', ' ','E','N','D',' ','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.',' ','E','S','C','-','$',' ','.','.','.',' ','M','o','v','e',' ','c','u','r','s','o','r',' ','t','o',' ','e','n','d',' ','o','f',' ','l','i','n','e','.','\n', ' ','B','A','C','K','S','P','A','C','E',' ','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.',' ','D','e','l','e','t','e',' ','c','h','a','r',' ','t','o',' ','l','e','f','t',' ','o','f',' ','c','u','r','s','o','r','.','\n', ' ','D','E','L','E','T','E',' ','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.',' ','E','S','C','-','x',' ','.','.','.',' ','D','e','l','e','t','e',' ','c','h','a','r',' ','u','n','d','e','r',' ','c','u','r','s','o','r','.','\n', ' ','c','t','r','l','-','B','A','C','K','S','P','A','C','E',' ',' ',' ','E','S','C','-','B','A','C','K','S','P','A','C','E',' ','.','.','.','.','.','.','.','.','.','.','.',' ','D','e','l','e','t','e',' ','w','o','r','d',' ','t','o',' ','l','e','f','t',' ','o','f',' ','c','u','r','s','o','r','.','\n', ' ','c','t','r','l','-','D','E','L','E','T','E',' ','.','.','.','.',' ','E','S','C','-','D','E','L','E','T','E',' ','.','.','.','.',' ','E','S','C','-','X',' ','.','.','.',' ','D','e','l','e','t','e',' ','w','o','r','d',' ','u','n','d','e','r',' ','c','u','r','s','o','r','.','\n', ' ','c','t','r','l','-','U',' ','.','.','.','.','.','.','.','.','.',' ','E','S','C',' ','(','M','S','-','D','O','S',' ','o','n','l','y',')',' ','.','.','.','.','.','.','.',' ','D','e','l','e','t','e',' ','e','n','t','i','r','e',' ','l','i','n','e','.','\n', ' ','U','p','A','r','r','o','w',' ','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.',' ','E','S','C','-','k',' ','.','.','.',' ','R','e','t','r','i','e','v','e',' ','p','r','e','v','i','o','u','s',' ','c','o','m','m','a','n','d',' ','l','i','n','e','.','\n', ' ','D','o','w','n','A','r','r','o','w',' ','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.',' ','E','S','C','-','j',' ','.','.','.',' ','R','e','t','r','i','e','v','e',' ','n','e','x','t',' ','c','o','m','m','a','n','d',' ','l','i','n','e','.','\n', ' ','T','A','B',' ','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.',' ','C','o','m','p','l','e','t','e',' ','f','i','l','e','n','a','m','e',' ','&',' ','c','y','c','l','e','.','\n', ' ','S','H','I','F','T','-','T','A','B',' ','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.',' ','E','S','C','-','T','A','B',' ',' ',' ','C','o','m','p','l','e','t','e',' ','f','i','l','e','n','a','m','e',' ','&',' ','r','e','v','e','r','s','e',' ','c','y','c','l','e','.','\n', ' ','c','t','r','l','-','L',' ','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.','.',' ','C','o','m','p','l','e','t','e',' ','f','i','l','e','n','a','m','e',',',' ','l','i','s','t',' ','a','l','l','.','\n', 0 }; constant int size_helpdata = sizeof(helpdata) - 1; less-668/ifile.c0000444060175306017530000001724314700607617012642 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * An IFILE represents an input file. * * It is actually a pointer to an ifile structure, * but is opaque outside this module. * Ifile structures are kept in a linked list in the order they * appear on the command line. * Any new file which does not already appear in the list is * inserted after the current file. */ #include "less.h" extern IFILE curr_ifile; struct ifile { struct ifile *h_next; /* Links for command line list */ struct ifile *h_prev; char *h_filename; /* Name of the file */ char *h_rfilename; /* Canonical name of the file */ void *h_filestate; /* File state (used in ch.c) */ int h_index; /* Index within command line list */ int h_hold; /* Hold count */ char h_opened; /* Has this ifile been opened? */ struct scrpos h_scrpos; /* Saved position within the file */ void *h_altpipe; /* Alt pipe */ char *h_altfilename; /* Alt filename */ }; /* * Convert an IFILE (external representation) * to a struct file (internal representation), and vice versa. */ #define int_ifile(h) ((struct ifile *)(h)) #define ext_ifile(h) ((IFILE)(h)) /* * Anchor for linked list. */ static struct ifile anchor = { &anchor, &anchor, NULL, NULL, NULL, 0, 0, '\0', { NULL_POSITION, 0 }, NULL, NULL }; static int ifiles = 0; static void incr_index(struct ifile *p, int incr) { for (; p != &anchor; p = p->h_next) p->h_index += incr; } /* * Link an ifile into the ifile list. */ static void link_ifile(struct ifile *p, struct ifile *prev) { /* * Link into list. */ if (prev == NULL) prev = &anchor; p->h_next = prev->h_next; p->h_prev = prev; prev->h_next->h_prev = p; prev->h_next = p; /* * Calculate index for the new one, * and adjust the indexes for subsequent ifiles in the list. */ p->h_index = prev->h_index + 1; incr_index(p->h_next, 1); ifiles++; } /* * Unlink an ifile from the ifile list. */ static void unlink_ifile(struct ifile *p) { p->h_next->h_prev = p->h_prev; p->h_prev->h_next = p->h_next; incr_index(p->h_next, -1); ifiles--; } /* * Allocate a new ifile structure and stick a filename in it. * It should go after "prev" in the list * (or at the beginning of the list if "prev" is NULL). * Return a pointer to the new ifile structure. */ static struct ifile * new_ifile(constant char *filename, struct ifile *prev) { struct ifile *p; /* * Allocate and initialize structure. */ p = (struct ifile *) ecalloc(1, sizeof(struct ifile)); p->h_filename = save(filename); p->h_rfilename = lrealpath(filename); p->h_scrpos.pos = NULL_POSITION; p->h_opened = 0; p->h_hold = 0; p->h_filestate = NULL; p->h_altfilename = NULL; p->h_altpipe = NULL; link_ifile(p, prev); /* * {{ It's dodgy to call mark.c functions from here; * there is potentially dangerous recursion. * Probably need to revisit this design. }} */ mark_check_ifile(ext_ifile(p)); return (p); } /* * Delete an existing ifile structure. */ public void del_ifile(IFILE h) { struct ifile *p; if (h == NULL_IFILE) return; /* * If the ifile we're deleting is the currently open ifile, * move off it. */ unmark(h); if (h == curr_ifile) curr_ifile = getoff_ifile(curr_ifile); p = int_ifile(h); unlink_ifile(p); free(p->h_rfilename); free(p->h_filename); free(p); } /* * Get the ifile after a given one in the list. */ public IFILE next_ifile(IFILE h) { struct ifile *p; p = (h == NULL_IFILE) ? &anchor : int_ifile(h); if (p->h_next == &anchor) return (NULL_IFILE); return (ext_ifile(p->h_next)); } /* * Get the ifile before a given one in the list. */ public IFILE prev_ifile(IFILE h) { struct ifile *p; p = (h == NULL_IFILE) ? &anchor : int_ifile(h); if (p->h_prev == &anchor) return (NULL_IFILE); return (ext_ifile(p->h_prev)); } /* * Return a different ifile from the given one. */ public IFILE getoff_ifile(IFILE ifile) { IFILE newifile; if ((newifile = prev_ifile(ifile)) != NULL_IFILE) return (newifile); if ((newifile = next_ifile(ifile)) != NULL_IFILE) return (newifile); return (NULL_IFILE); } /* * Return the number of ifiles. */ public int nifile(void) { return (ifiles); } /* * Find an ifile structure, given a filename. */ static struct ifile * find_ifile(constant char *filename) { struct ifile *p; char *rfilename = lrealpath(filename); for (p = anchor.h_next; p != &anchor; p = p->h_next) { if (strcmp(rfilename, p->h_rfilename) == 0) { /* * If given name is shorter than the name we were * previously using for this file, adopt shorter name. */ if (strlen(filename) < strlen(p->h_filename)) { free(p->h_filename); p->h_filename = save(filename); } break; } } free(rfilename); if (p == &anchor) p = NULL; return (p); } /* * Get the ifile associated with a filename. * If the filename has not been seen before, * insert the new ifile after "prev" in the list. */ public IFILE get_ifile(constant char *filename, IFILE prev) { struct ifile *p; if ((p = find_ifile(filename)) == NULL) p = new_ifile(filename, int_ifile(prev)); return (ext_ifile(p)); } /* * Get the display filename associated with a ifile. */ public constant char * get_filename(IFILE ifile) { if (ifile == NULL) return (NULL); return (int_ifile(ifile)->h_filename); } /* * Get the canonical filename associated with a ifile. */ public constant char * get_real_filename(IFILE ifile) { if (ifile == NULL) return (NULL); return (int_ifile(ifile)->h_rfilename); } /* * Get the index of the file associated with a ifile. */ public int get_index(IFILE ifile) { return (int_ifile(ifile)->h_index); } /* * Save the file position to be associated with a given file. */ public void store_pos(IFILE ifile, struct scrpos *scrpos) { int_ifile(ifile)->h_scrpos = *scrpos; } /* * Recall the file position associated with a file. * If no position has been associated with the file, return NULL_POSITION. */ public void get_pos(IFILE ifile, struct scrpos *scrpos) { *scrpos = int_ifile(ifile)->h_scrpos; } /* * Mark the ifile as "opened". */ public void set_open(IFILE ifile) { int_ifile(ifile)->h_opened = 1; } /* * Return whether the ifile has been opened previously. */ public int opened(IFILE ifile) { return (int_ifile(ifile)->h_opened); } public void hold_ifile(IFILE ifile, int incr) { int_ifile(ifile)->h_hold += incr; } public int held_ifile(IFILE ifile) { return (int_ifile(ifile)->h_hold); } public void * get_filestate(IFILE ifile) { return (int_ifile(ifile)->h_filestate); } public void set_filestate(IFILE ifile, void *filestate) { int_ifile(ifile)->h_filestate = filestate; } public void set_altpipe(IFILE ifile, void *p) { int_ifile(ifile)->h_altpipe = p; } public void *get_altpipe(IFILE ifile) { return (int_ifile(ifile)->h_altpipe); } public void set_altfilename(IFILE ifile, char *altfilename) { struct ifile *p = int_ifile(ifile); if (p->h_altfilename != NULL && p->h_altfilename != altfilename) free(p->h_altfilename); p->h_altfilename = altfilename; } /* * Not constant; caller can free altfilename. * {{ This is poor design and should be changed. }} */ public char * get_altfilename(IFILE ifile) { return (int_ifile(ifile)->h_altfilename); } #if 0 public void if_dump(void) { struct ifile *p; for (p = anchor.h_next; p != &anchor; p = p->h_next) { printf("%x: %d. <%s> pos %d,%x\n", p, p->h_index, p->h_filename, p->h_scrpos.ln, p->h_scrpos.pos); ch_dump(p->h_filestate); } } #endif less-668/input.c0000444060175306017530000003022114700607620012672 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * High level routines dealing with getting lines of input * from the file being viewed. * * When we speak of "lines" here, we mean PRINTABLE lines; * lines processed with respect to the screen width. * We use the term "raw line" to refer to lines simply * delimited by newlines; not processed with respect to screen width. */ #include "less.h" extern int squeeze; extern int hshift; extern int quit_if_one_screen; extern int ignore_eoi; extern int status_col; extern int wordwrap; extern POSITION start_attnpos; extern POSITION end_attnpos; #if HILITE_SEARCH extern int hilite_search; extern size_t size_linebuf; extern int show_attn; #endif /* * Set the status column. * base Position of first char in line. * disp First visible char. * Different than base_pos if line is shifted. * edisp Last visible char. * eol End of line. Normally the newline. * Different than edisp if line is chopped. */ static void init_status_col(POSITION base_pos, POSITION disp_pos, POSITION edisp_pos, POSITION eol_pos) { int hl_before = (chop_line() && disp_pos != NULL_POSITION) ? is_hilited_attr(base_pos, disp_pos, TRUE, NULL) : 0; int hl_after = (chop_line() && edisp_pos != NULL_POSITION) ? is_hilited_attr(edisp_pos, eol_pos, TRUE, NULL) : 0; int attr; char ch; if (hl_before && hl_after) { attr = hl_after; ch = '='; } else if (hl_before) { attr = hl_before; ch = '<'; } else if (hl_after) { attr = hl_after; ch = '>'; } else if (disp_pos != NULL_POSITION) { attr = is_hilited_attr(disp_pos, edisp_pos, TRUE, NULL); ch = '*'; } else { attr = 0; } if (attr) set_status_col(ch, attr); } /* * Get the next line. * A "current" position is passed and a "new" position is returned. * The current position is the position of the first character of * a line. The new position is the position of the first character * of the NEXT line. The line obtained is the line starting at curr_pos. */ public POSITION forw_line_seg(POSITION curr_pos, lbool skipeol, lbool rscroll, lbool nochop) { POSITION base_pos; POSITION new_pos; POSITION edisp_pos; int c; lbool blankline; lbool endline; lbool chopped; int backchars; POSITION wrap_pos; lbool skipped_leading; get_forw_line: if (curr_pos == NULL_POSITION) { null_line(); return (NULL_POSITION); } #if HILITE_SEARCH if (hilite_search == OPT_ONPLUS || is_filtering() || status_col) { /* * If we are ignoring EOI (command F), only prepare * one line ahead, to avoid getting stuck waiting for * slow data without displaying the data we already have. * If we're not ignoring EOI, we *could* do the same, but * for efficiency we prepare several lines ahead at once. */ prep_hilite(curr_pos, curr_pos + (POSITION) (3*size_linebuf), ignore_eoi ? 1 : -1); curr_pos = next_unfiltered(curr_pos); } #endif if (ch_seek(curr_pos)) { null_line(); return (NULL_POSITION); } /* * Step back to the beginning of the line. */ base_pos = curr_pos; for (;;) { c = ch_back_get(); if (c == EOI) break; if (c == '\n') { (void) ch_forw_get(); break; } --base_pos; } /* * Read forward again to the position we should start at. */ prewind(); plinestart(base_pos); (void) ch_seek(base_pos); new_pos = base_pos; while (new_pos < curr_pos) { c = ch_forw_get(); if (c == EOI) { null_line(); return (NULL_POSITION); } backchars = pappend((char) c, new_pos); new_pos++; if (backchars > 0) { pshift_all(); if (wordwrap && (c == ' ' || c == '\t')) { do { new_pos++; c = ch_forw_get(); /* {{ what if c == EOI? }} */ } while (c == ' ' || c == '\t'); backchars = 1; } new_pos -= backchars; while (--backchars >= 0) (void) ch_back_get(); } } (void) pflushmbc(); pshift_all(); /* * Read the first character to display. */ c = ch_forw_get(); if (c == EOI) { null_line(); return (NULL_POSITION); } blankline = (c == '\n' || c == '\r'); wrap_pos = NULL_POSITION; skipped_leading = FALSE; /* * Read each character in the line and append to the line buffer. */ chopped = FALSE; for (;;) { if (c == '\n' || c == EOI) { /* * End of the line. */ backchars = pflushmbc(); new_pos = ch_tell(); if (backchars > 0 && (nochop || !chop_line()) && hshift == 0) { new_pos -= backchars + 1; endline = FALSE; } else endline = TRUE; edisp_pos = new_pos; break; } if (c != '\r') blankline = FALSE; /* * Append the char to the line and get the next char. */ backchars = pappend((char) c, ch_tell()-1); if (backchars > 0) { /* * The char won't fit in the line; the line * is too long to print in the screen width. * End the line here. */ if (skipeol) { /* Read to end of line. */ edisp_pos = ch_tell() - backchars; do { c = ch_forw_get(); } while (c != '\n' && c != EOI); new_pos = ch_tell(); endline = TRUE; quit_if_one_screen = FALSE; chopped = TRUE; } else { if (!wordwrap) new_pos = ch_tell() - backchars; else { /* * We're word-wrapping, so go back to the last space. * However, if it's the space itself that couldn't fit, * simply ignore it and any subsequent spaces. */ if (c == ' ' || c == '\t') { do { new_pos = ch_tell(); c = ch_forw_get(); /* {{ what if c == EOI? }} */ } while (c == ' ' || c == '\t'); if (c == '\r') c = ch_forw_get(); /* {{ what if c == EOI? }} */ if (c == '\n') new_pos = ch_tell(); } else if (wrap_pos == NULL_POSITION) new_pos = ch_tell() - backchars; else { new_pos = wrap_pos; loadc(); } } endline = FALSE; edisp_pos = new_pos; } break; } if (wordwrap) { if (c == ' ' || c == '\t') { if (skipped_leading) { wrap_pos = ch_tell(); savec(); } } else skipped_leading = TRUE; } c = ch_forw_get(); } #if HILITE_SEARCH if (blankline && show_attn) { /* Add spurious space to carry possible attn hilite. * Use pappend_b so that if line ended with \r\n, * we insert the space before the \r. */ pappend_b(' ', ch_tell()-1, TRUE); } #endif pdone(endline, rscroll && chopped, 1); #if HILITE_SEARCH if (is_filtered(base_pos)) { /* * We don't want to display this line. * Get the next line. */ curr_pos = new_pos; goto get_forw_line; } if (status_col) init_status_col(base_pos, line_position(), edisp_pos, new_pos); #endif if (squeeze && blankline) { /* * This line is blank. * Skip down to the last contiguous blank line * and pretend it is the one which we are returning. */ while ((c = ch_forw_get()) == '\n' || c == '\r') continue; if (c != EOI) (void) ch_back_get(); new_pos = ch_tell(); } return (new_pos); } public POSITION forw_line(POSITION curr_pos) { return forw_line_seg(curr_pos, (chop_line() || hshift > 0), TRUE, FALSE); } /* * Get the previous line. * A "current" position is passed and a "new" position is returned. * The current position is the position of the first character of * a line. The new position is the position of the first character * of the PREVIOUS line. The line obtained is the one starting at new_pos. */ public POSITION back_line(POSITION curr_pos) { POSITION base_pos; POSITION new_pos; POSITION edisp_pos; POSITION begin_new_pos; int c; lbool endline; lbool chopped; int backchars; POSITION wrap_pos; lbool skipped_leading; get_back_line: if (curr_pos == NULL_POSITION || curr_pos <= ch_zero()) { null_line(); return (NULL_POSITION); } #if HILITE_SEARCH if (hilite_search == OPT_ONPLUS || is_filtering() || status_col) prep_hilite((curr_pos < (POSITION) (3*size_linebuf)) ? 0 : curr_pos - (POSITION) (3*size_linebuf), curr_pos, -1); #endif if (ch_seek(curr_pos-1)) { null_line(); return (NULL_POSITION); } if (squeeze) { /* * Find out if the "current" line was blank. */ (void) ch_forw_get(); /* Skip the newline */ c = ch_forw_get(); /* First char of "current" line */ /* {{ what if c == EOI? }} */ (void) ch_back_get(); /* Restore our position */ (void) ch_back_get(); if (c == '\n' || c == '\r') { /* * The "current" line was blank. * Skip over any preceding blank lines, * since we skipped them in forw_line(). */ while ((c = ch_back_get()) == '\n' || c == '\r') continue; if (c == EOI) { null_line(); return (NULL_POSITION); } (void) ch_forw_get(); } } /* * Scan backwards until we hit the beginning of the line. */ for (;;) { c = ch_back_get(); if (c == '\n') { /* * This is the newline ending the previous line. * We have hit the beginning of the line. */ base_pos = ch_tell() + 1; break; } if (c == EOI) { /* * We have hit the beginning of the file. * This must be the first line in the file. * This must, of course, be the beginning of the line. */ base_pos = ch_tell(); break; } } /* * Now scan forwards from the beginning of this line. * We keep discarding "printable lines" (based on screen width) * until we reach the curr_pos. * * {{ This algorithm is pretty inefficient if the lines * are much longer than the screen width, * but I don't know of any better way. }} */ new_pos = base_pos; if (ch_seek(new_pos)) { null_line(); return (NULL_POSITION); } endline = FALSE; prewind(); plinestart(new_pos); loop: wrap_pos = NULL_POSITION; skipped_leading = FALSE; begin_new_pos = new_pos; (void) ch_seek(new_pos); chopped = FALSE; for (;;) { c = ch_forw_get(); if (c == EOI) { null_line(); return (NULL_POSITION); } new_pos++; if (c == '\n') { backchars = pflushmbc(); if (backchars > 0 && !chop_line() && hshift == 0) { backchars++; goto shift; } endline = TRUE; edisp_pos = new_pos; break; } backchars = pappend((char) c, ch_tell()-1); if (backchars > 0) { /* * Got a full printable line, but we haven't * reached our curr_pos yet. Discard the line * and start a new one. */ if (chop_line() || hshift > 0) { endline = TRUE; chopped = TRUE; quit_if_one_screen = FALSE; edisp_pos = new_pos; break; } shift: if (!wordwrap) { pshift_all(); new_pos -= backchars; } else { if (c == ' ' || c == '\t') { for (;;) { c = ch_forw_get(); /* {{ what if c == EOI? }} */ if (c == ' ' || c == '\t') new_pos++; else { if (c == '\r') { c = ch_forw_get(); /* {{ what if c == EOI? }} */ if (c == '\n') new_pos++; } if (c == '\n') new_pos++; edisp_pos = new_pos; break; } } if (new_pos >= curr_pos) { edisp_pos = new_pos; break; } pshift_all(); } else { pshift_all(); if (wrap_pos == NULL_POSITION) new_pos -= backchars; else new_pos = wrap_pos; } } goto loop; } if (wordwrap) { if (c == ' ' || c == '\t') { if (skipped_leading) wrap_pos = new_pos; } else skipped_leading = TRUE; } if (new_pos >= curr_pos) { edisp_pos = new_pos; break; } } pdone(endline, chopped, 0); #if HILITE_SEARCH if (is_filtered(base_pos)) { /* * We don't want to display this line. * Get the previous line. */ curr_pos = begin_new_pos; goto get_back_line; } if (status_col) init_status_col(base_pos, line_position(), edisp_pos, new_pos); #endif return (begin_new_pos); } /* * Set attnpos. */ public void set_attnpos(POSITION pos) { int c; if (pos != NULL_POSITION) { if (ch_seek(pos)) return; for (;;) { c = ch_forw_get(); if (c == EOI) break; if (c == '\n' || c == '\r') { (void) ch_back_get(); break; } pos++; } end_attnpos = pos; for (;;) { c = ch_back_get(); if (c == EOI || c == '\n' || c == '\r') break; pos--; } } start_attnpos = pos; } less-668/INSTALL0000444060175306017530000001733514700607636012442 0ustar marknmarknThis file contains generic instructions on how to build and install software using autoconf. For specific instructions on how to build "less", see the README or README.VER file. Basic Installation ================== These are generic installation instructions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, a file `config.cache' that saves the results of its tests to speed up reconfiguring, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' is used to create `configure' by a program called `autoconf'. You only need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. If you're using `csh' on an old version of System V, you might need to type `sh ./configure' instead to prevent `csh' from trying to execute `configure' itself. Running `configure' takes awhile. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package. 4. Type `make install' to install the programs and any data files and documentation. 5. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. You can give `configure' initial values for variables by setting them in the environment. Using a Bourne-compatible shell, you can do that on the command line like this: CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure Or on systems that have the `env' program, you can do it like this: env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you must use a version of `make' that supports the `VPATH' variable, such as GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. If you have to use a `make' that does not supports the `VPATH' variable, you have to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. Installation Names ================== By default, `make install' will install the package's files in `/usr/local/bin', `/usr/local/man', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PATH'. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you give `configure' the option `--exec-prefix=PATH', the package will use PATH as the prefix for installing programs and libraries. Documentation and other data files will still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=PATH' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Optional Features ================= Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Specifying the System Type ========================== There may be some features `configure' can not figure out automatically, but needs to determine by the type of host the package will run on. Usually `configure' can figure that out, but if it prints a message saying it can not guess the host type, give it the `--host=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name with three fields: CPU-COMPANY-SYSTEM See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the host type. If you are building compiler tools for cross-compiling, you can also use the `--target=TYPE' option to select the type of system they will produce code for and the `--build=TYPE' option to select the type of system on which you are compiling the package. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Operation Controls ================== `configure' recognizes the following options to control how it operates. `--cache-file=FILE' Use and save the results of the tests in FILE instead of `./config.cache'. Set FILE to `/dev/null' to disable caching, for debugging `configure'. `--help' Print a summary of the options to `configure', and exit. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--version' Print the version of Autoconf used to generate the `configure' script, and exit. `configure' also accepts some other, not widely useful, options. less-668/install.sh0000555060175306017530000000421214700607655013405 0ustar marknmarkn#!/bin/sh # # install - install a program, script, or datafile # This comes from X11R5; it is not part of GNU. # # $XConsortium: install.sh,v 1.2 89/12/18 14:47:22 jim Exp $ # # This script is compatible with the BSD install script, but was written # from scratch. # # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit="${DOITPROG-}" # put in absolute paths if you don't have them in your path; or use env. vars. mvprog="${MVPROG-mv}" cpprog="${CPPROG-cp}" chmodprog="${CHMODPROG-chmod}" chownprog="${CHOWNPROG-chown}" chgrpprog="${CHGRPPROG-chgrp}" stripprog="${STRIPPROG-strip}" rmprog="${RMPROG-rm}" instcmd="$mvprog" chmodcmd="" chowncmd="" chgrpcmd="" stripcmd="" rmcmd="$rmprog -f" mvcmd="$mvprog" src="" dst="" while [ x"$1" != x ]; do case $1 in -c) instcmd="$cpprog" shift continue;; -m) chmodcmd="$chmodprog $2" shift shift continue;; -o) chowncmd="$chownprog $2" shift shift continue;; -g) chgrpcmd="$chgrpprog $2" shift shift continue;; -s) stripcmd="$stripprog" shift continue;; *) if [ x"$src" = x ] then src=$1 else dst=$1 fi shift continue;; esac done if [ x"$src" = x ] then echo "install: no input file specified" exit 1 fi if [ x"$dst" = x ] then echo "install: no destination specified" exit 1 fi # If destination is a directory, append the input filename; if your system # does not like double slashes in filenames, you may need to add some logic if [ -d $dst ] then dst="$dst"/`basename $src` fi # Make a temp file name in the proper directory. dstdir=`dirname $dst` dsttmp=$dstdir/_inst.$$_ # Move or copy the file name to the temp name $doit $instcmd $src $dsttmp # and set any options; do chmod last to preserve setuid bits if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; fi if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; fi if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; fi if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; fi # Now rename the file to the real destination. $doit $rmcmd $dst $doit $mvcmd $dsttmp $dst exit 0 less-668/jump.c0000444060175306017530000001704114700607620012513 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Routines which jump to a new location in the file. */ #include "less.h" #include "position.h" extern int jump_sline; extern lbool squished; extern int sc_width, sc_height; extern int show_attn; extern int top_scroll; extern POSITION header_start_pos; /* * Jump to the end of the file. */ public void jump_forw(void) { POSITION pos; POSITION end_pos; if (ch_end_seek()) { error("Cannot seek to end of file", NULL_PARG); return; } end_pos = ch_tell(); if (position(sc_height-1) == end_pos) { eof_bell(); return; } /* * Note; lastmark will be called later by jump_loc, but it fails * because the position table has been cleared by pos_clear below. * So call it here before calling pos_clear. */ lastmark(); /* * Position the last line in the file at the last screen line. * Go back one line from the end of the file * to get to the beginning of the last line. */ pos_clear(); pos = back_line(end_pos); if (pos == NULL_POSITION) jump_loc(ch_zero(), sc_height-1); else { jump_loc(pos, sc_height-1); if (position(sc_height-1) != end_pos) repaint(); } } /* * Jump to the last buffered line in the file. */ public void jump_forw_buffered(void) { POSITION end; if (ch_end_buffer_seek()) { error("Cannot seek to end of buffers", NULL_PARG); return; } end = ch_tell(); if (end != NULL_POSITION && end > 0) jump_line_loc(end-1, sc_height-1); } /* * Jump to line n in the file. */ public void jump_back(LINENUM linenum) { POSITION pos; PARG parg; /* * Find the position of the specified line. * If we can seek there, just jump to it. * If we can't seek, but we're trying to go to line number 1, * use ch_beg_seek() to get as close as we can. */ pos = find_pos(linenum); if (pos != NULL_POSITION && ch_seek(pos) == 0) { if (show_attn) set_attnpos(pos); jump_loc(pos, jump_sline); } else if (linenum <= 1 && ch_beg_seek() == 0) { jump_loc(ch_tell(), jump_sline); error("Cannot seek to beginning of file", NULL_PARG); } else { parg.p_linenum = linenum; error("Cannot seek to line number %n", &parg); } } /* * Repaint the screen. */ public void repaint(void) { struct scrpos scrpos; /* * Start at the line currently at the top of the screen * and redisplay the screen. */ get_scrpos(&scrpos, TOP); pos_clear(); if (scrpos.pos == NULL_POSITION) /* Screen hasn't been drawn yet. */ jump_loc(ch_zero(), 1); else jump_loc(scrpos.pos, scrpos.ln); } /* * Jump to a specified percentage into the file. */ public void jump_percent(int percent, long fraction) { POSITION pos, len; /* * Determine the position in the file * (the specified percentage of the file's length). */ if ((len = ch_length()) == NULL_POSITION) { ierror("Determining length of file", NULL_PARG); ch_end_seek(); } if ((len = ch_length()) == NULL_POSITION) { error("Don't know length of file", NULL_PARG); return; } pos = percent_pos(len, percent, fraction); if (pos >= len) pos = len-1; jump_line_loc(pos, jump_sline); } /* * Jump to a specified position in the file. * Like jump_loc, but the position need not be * the first character in a line. */ public void jump_line_loc(POSITION pos, int sline) { int c; if (ch_seek(pos) == 0) { /* * Back up to the beginning of the line. */ while ((c = ch_back_get()) != '\n' && c != EOI) ; if (c == '\n') (void) ch_forw_get(); pos = ch_tell(); } if (show_attn) set_attnpos(pos); jump_loc(pos, sline); } static void after_header_message(void) { #if HAVE_TIME #define MSG_FREQ 1 /* seconds */ static time_type last_msg = (time_type) 0; time_type now = get_time(); if (now < last_msg + MSG_FREQ) return; last_msg = now; #endif bell(); /* {{ This message displays before the file text is updated, which is not a good UX. }} */ /** error("Cannot display text before header; use --header=- to disable header", NULL_PARG); */ } /* * Ensure that a position is not before the header. * If it is, print a message and return the position of the start of the header. * {{ This is probably not being used correctly in all cases. * It does not account for the location of pos on the screen, * so lines before pos could be displayed. }} */ public POSITION after_header_pos(POSITION pos) { if (header_start_pos != NULL_POSITION && pos < header_start_pos) { after_header_message(); pos = header_start_pos; } return pos; } /* * Jump to a specified position in the file. * The position must be the first character in a line. * Place the target line on a specified line on the screen. */ public void jump_loc(POSITION pos, int sline) { int nline; int sindex; POSITION tpos; POSITION bpos; /* * Normalize sline. */ pos = after_header_pos(pos); sindex = sindex_from_sline(sline); if ((nline = onscreen(pos)) >= 0) { /* * The line is currently displayed. * Just scroll there. */ nline -= sindex; if (nline > 0) forw(nline, position(BOTTOM_PLUS_ONE), 1, 0, 0); else back(-nline, position(TOP), 1, 0); #if HILITE_SEARCH if (show_attn) repaint_hilite(TRUE); #endif return; } /* * Line is not on screen. * Seek to the desired location. */ if (ch_seek(pos)) { error("Cannot seek to that file position", NULL_PARG); return; } /* * See if the desired line is before or after * the currently displayed screen. */ tpos = position(TOP); bpos = position(BOTTOM_PLUS_ONE); if (tpos == NULL_POSITION || pos >= tpos) { /* * The desired line is after the current screen. * Move back in the file far enough so that we can * call forw() and put the desired line at the * sline-th line on the screen. */ for (nline = 0; nline < sindex; nline++) { if (bpos != NULL_POSITION && pos <= bpos) { /* * Surprise! The desired line is * close enough to the current screen * that we can just scroll there after all. */ forw(sc_height-sindex+nline-1, bpos, 1, 0, 0); #if HILITE_SEARCH if (show_attn) repaint_hilite(TRUE); #endif return; } pos = back_line(pos); if (pos == NULL_POSITION) { /* * Oops. Ran into the beginning of the file. * Exit the loop here and rely on forw() * below to draw the required number of * blank lines at the top of the screen. */ break; } } lastmark(); squished = FALSE; screen_trashed_num(0); forw(sc_height-1, pos, 1, 0, sindex-nline); } else { /* * The desired line is before the current screen. * Move forward in the file far enough so that we * can call back() and put the desired line at the * sindex-th line on the screen. */ for (nline = sindex; nline < sc_height - 1; nline++) { pos = forw_line(pos); if (pos == NULL_POSITION) { /* * Ran into end of file. * This shouldn't normally happen, * but may if there is some kind of read error. */ break; } #if HILITE_SEARCH pos = next_unfiltered(pos); #endif if (pos >= tpos) { /* * Surprise! The desired line is * close enough to the current screen * that we can just scroll there after all. */ back(nline+1, tpos, 1, 0); #if HILITE_SEARCH if (show_attn) repaint_hilite(TRUE); #endif return; } } lastmark(); if (!top_scroll) clear(); else home(); screen_trashed_num(0); add_back_pos(pos); back(sc_height-1, pos, 1, 0); } } less-668/lang.h0000444060175306017530000000211114700607647012467 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ #ifndef LESS_LANG_H_ #define LESS_LANG_H_ 1 /* * C language details. */ #if HAVE_CONST #define constant const #else #define constant #endif /* * mutable is the opposite of constant. * It documents that a pointer parameter will be written through by the * called function, more directly than by the mere absence of "constant". */ #define mutable #define public /* PUBLIC FUNCTION */ #undef ptr_diff #define ptr_diff(p1,p2) ((size_t) ((p1)-(p2))) #undef countof #define countof(a) ((int)(sizeof(a)/sizeof(*a))) #define size_t_null ((size_t)-1) #ifndef NULL #define NULL 0 #endif typedef enum lbool { LFALSE, LTRUE } lbool; #undef TRUE #define TRUE LTRUE #undef FALSE #define FALSE LFALSE #ifdef _MSC_VER #if _WIN64 typedef __int64 ssize_t; #else typedef __int32 ssize_t; #endif #endif #endif // LESS_LANG_H_ less-668/less.h0000444060175306017530000004471214700607650012523 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ #define NEWBOT 1 /* * Standard include file for "less". */ /* * Defines for MSDOS_COMPILER. */ #define MSOFTC 1 /* Microsoft C */ #define BORLANDC 2 /* Borland C */ #define WIN32C 3 /* Windows (Borland C or Microsoft C) */ #define DJGPPC 4 /* DJGPP C */ /* * Include the file of compile-time options. * The <> make cc search for it in -I., not srcdir. */ #include #ifdef _SEQUENT_ /* * Kludge for Sequent Dynix systems that have sigsetmask, but * it's not compatible with the way less calls it. * {{ Do other systems need this? }} */ #undef HAVE_SIGSETMASK #endif /* Library function declarations */ #if HAVE_SYS_TYPES_H #include #endif #if HAVE_STDIO_H #include #endif #if HAVE_FCNTL_H #include #endif #if HAVE_UNISTD_H #include #endif #if HAVE_CTYPE_H #include #endif #if HAVE_WCTYPE_H #include #endif #if HAVE_LIMITS_H #include #endif #if HAVE_STDINT_H #include #endif #if HAVE_STDLIB_H #include #endif #if HAVE_STRING_H #include #endif #if HAVE_STDCKDINT_H #include #else /* * These substitutes for C23 stdckdint macros do not set *R on overflow, * and they assume A and B are nonnegative. That is good enough for us. */ #define ckd_add(r, a, b) help_ckd_add(r, (uintmax)(a), (uintmax)(b), sizeof *(r), signed_expr(*(r))) #define ckd_mul(r, a, b) help_ckd_mul(r, (uintmax)(a), (uintmax)(b), sizeof *(r), signed_expr(*(r))) /* True if the integer expression E, after promotion, is signed. */ #define signed_expr(e) ((TRUE ? 0 : e) - 1 < 0) #endif #define muldiv(val,num,den) umuldiv((uintmax)(val), (uintmax)(num), (uintmax)(den)) #include "lang.h" #if defined UINTMAX_MAX typedef uintmax_t uintmax; #elif defined ULLONG_MAX typedef unsigned long long uintmax; #else typedef unsigned long uintmax; #endif /* OS-specific includes */ #ifdef _OSK #include #include #endif #ifdef __TANDEM #include #endif #if MSDOS_COMPILER==WIN32C || OS2 #include #endif #if MSDOS_COMPILER==DJGPPC #include #include #include #include #endif #if !HAVE_STDLIB_H char *getenv(); off_t lseek(); void *calloc(); void free(); #endif /* * Simple lowercase test which can be used during option processing * (before options are parsed which might tell us what charset to use). */ #define ASCII_IS_UPPER(c) ((c) >= 'A' && (c) <= 'Z') #define ASCII_IS_LOWER(c) ((c) >= 'a' && (c) <= 'z') #define ASCII_TO_UPPER(c) ((c) - 'a' + 'A') #define ASCII_TO_LOWER(c) ((c) - 'A' + 'a') #undef IS_UPPER #undef IS_LOWER #undef TO_UPPER #undef TO_LOWER #undef IS_SPACE #undef IS_DIGIT #if HAVE_WCTYPE #define IS_UPPER(c) iswupper((wint_t) (c)) #define IS_LOWER(c) iswlower((wint_t) (c)) #define TO_UPPER(c) towupper((wint_t) (c)) #define TO_LOWER(c) towlower((wint_t) (c)) #else #if HAVE_UPPER_LOWER #define IS_UPPER(c) (is_ascii_char(c) && isupper((unsigned char) (c))) #define IS_LOWER(c) (is_ascii_char(c) && islower((unsigned char) (c))) #define TO_UPPER(c) (is_ascii_char(c) ? toupper((unsigned char) (c)) : (c)) #define TO_LOWER(c) (is_ascii_char(c) ? tolower((unsigned char) (c)) : (c)) #else #define IS_UPPER(c) (is_ascii_char(c) && ASCII_IS_UPPER(c)) #define IS_LOWER(c) (is_ascii_char(c) && ASCII_IS_LOWER(c)) #define TO_UPPER(c) (is_ascii_char(c) ? ASCII_TO_UPPER(c) : (c)) #define TO_LOWER(c) (is_ascii_char(c) ? ASCII_TO_LOWER(c) : (c)) #endif #endif #ifdef isspace #define IS_SPACE(c) isspace((unsigned char)(c)) #else #define IS_SPACE(c) ((c) == ' ' || (c) == '\t' || (c) == '\n' || (c) == '\r' || (c) == '\f') #endif #ifdef isdigit #define IS_DIGIT(c) isdigit((unsigned char)(c)) #else #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') #endif #define IS_CSI_START(c) (((LWCHAR)(c)) == ESC || (((LWCHAR)(c)) == CSI)) #define OPT_OFF 0 #define OPT_ON 1 #define OPT_ONPLUS 2 #if !HAVE_MEMCPY #ifndef memcpy #define memcpy(to,from,len) bcopy((from),(to),(len)) #endif #endif #if HAVE_SNPRINTF #define SNPRINTF1(str, size, fmt, v1) snprintf((str), (size), (fmt), (v1)) #define SNPRINTF2(str, size, fmt, v1, v2) snprintf((str), (size), (fmt), (v1), (v2)) #define SNPRINTF3(str, size, fmt, v1, v2, v3) snprintf((str), (size), (fmt), (v1), (v2), (v3)) #define SNPRINTF4(str, size, fmt, v1, v2, v3, v4) snprintf((str), (size), (fmt), (v1), (v2), (v3), (v4)) #else /* Use unsafe sprintf if we don't have snprintf. */ #define SNPRINTF1(str, size, fmt, v1) sprintf((str), (fmt), (v1)) #define SNPRINTF2(str, size, fmt, v1, v2) sprintf((str), (fmt), (v1), (v2)) #define SNPRINTF3(str, size, fmt, v1, v2, v3) sprintf((str), (fmt), (v1), (v2), (v3)) #define SNPRINTF4(str, size, fmt, v1, v2, v3, v4) sprintf((str), (fmt), (v1), (v2), (v3), (v4)) #endif #define BAD_LSEEK ((off_t)-1) #ifndef SEEK_SET #define SEEK_SET 0 #endif #ifndef SEEK_END #define SEEK_END 2 #endif #ifndef CHAR_BIT #define CHAR_BIT 8 #endif /* * Upper bound on the string length of an integer converted to string. * 302 / 1000 is ceil (log10 (2.0)). Subtract 1 for the sign bit; * add 1 for integer division truncation; add 1 more for a minus sign. */ #define INT_STRLEN_BOUND(t) ((sizeof(t) * CHAR_BIT - 1) * 302 / 1000 + 1 + 1) /* * Special types and constants. */ typedef unsigned long LWCHAR; #if defined(MINGW) || (defined(_MSC_VER) && _MSC_VER >= 1500) typedef long long less_off_t; /* __int64 */ typedef struct _stat64 less_stat_t; #define less_fstat _fstat64 #define less_stat _stat64 #define less_lseek _lseeki64 #else typedef off_t less_off_t; typedef struct stat less_stat_t; #define less_fstat fstat #define less_stat stat #define less_lseek lseek #endif typedef less_off_t POSITION; typedef off_t LINENUM; #define MIN_LINENUM_WIDTH 7 /* Default min printing width of a line number */ #define MAX_LINENUM_WIDTH 16 /* Max width of a line number */ #define MAX_STATUSCOL_WIDTH 4 /* Max width of the status column */ #define MAX_UTF_CHAR_LEN 6 /* Max bytes in one UTF-8 char */ #define MAX_PRCHAR_LEN 31 /* Max chars in prchar() result */ #define NULL_POSITION ((POSITION)(-1)) /* * Flags for open() */ #if MSDOS_COMPILER || OS2 #define OPEN_READ (O_RDONLY|O_BINARY) #else #ifdef _OSK #define OPEN_READ (S_IREAD) #else #ifdef O_RDONLY #define OPEN_READ (O_RDONLY) #else #define OPEN_READ (0) #endif #endif #endif #if defined(O_WRONLY) && defined(O_APPEND) #define OPEN_APPEND (O_APPEND|O_WRONLY) #else #ifdef _OSK #define OPEN_APPEND (S_IWRITE) #else #define OPEN_APPEND (1) #endif #endif /* * Flags for creat() */ #if MSDOS_COMPILER #define CREAT_RW (S_IREAD|S_IWRITE) #else #define CREAT_RW 0644 #endif /* * Set a file descriptor to binary mode. */ #if MSDOS_COMPILER==MSOFTC #define SET_BINARY(f) _setmode(f, _O_BINARY); #else #if MSDOS_COMPILER || OS2 #define SET_BINARY(f) setmode(f, O_BINARY) #else #define SET_BINARY(f) #endif #endif /* * Does the shell treat "?" as a metacharacter? */ #if MSDOS_COMPILER || OS2 || _OSK #define SHELL_META_QUEST 0 #else #define SHELL_META_QUEST 1 #endif #define SPACES_IN_FILENAMES 1 /* * An IFILE represents an input file. */ #define IFILE void* #define NULL_IFILE ((IFILE)NULL) /* * The structure used to represent a "screen position". * This consists of a file position, and a screen line number. * The meaning is that the line starting at the given file * position is displayed on the ln-th line of the screen. * (Screen lines before ln are empty.) */ struct scrpos { POSITION pos; int ln; }; typedef union parg { constant char *p_string; int p_int; LINENUM p_linenum; char p_char; } PARG; #define NULL_PARG ((PARG *)NULL) struct textlist { char *string; char *endstring; }; struct wchar_range { LWCHAR first, last; }; struct wchar_range_table { struct wchar_range *table; unsigned int count; }; #if HAVE_POLL typedef short POLL_EVENTS; #endif #define EOI (-1) #define READ_ERR (-1) #define READ_INTR (-2) #define READ_AGAIN (-3) /* * A fraction is represented by a long n; the fraction is n/NUM_FRAC_DENOM. * To avoid overflow problems, 0 <= n < NUM_FRAC_DENUM <= LONG_MAX/100. */ #define NUM_FRAC_DENOM 1000000 #define NUM_LOG_FRAC_DENOM 6 /* How quiet should we be? */ #define NOT_QUIET 0 /* Ring bell at eof and for errors */ #define LITTLE_QUIET 1 /* Ring bell only for errors */ #define VERY_QUIET 2 /* Never ring bell */ /* How should we prompt? */ #define PR_SHORT 0 /* Prompt with colon */ #define PR_MEDIUM 1 /* Prompt with message */ #define PR_LONG 2 /* Prompt with longer message */ /* How should we handle backspaces? */ #define BS_SPECIAL 0 /* Do special things for underlining and bold */ #define BS_NORMAL 1 /* \b treated as normal char; actually output */ #define BS_CONTROL 2 /* \b treated as control char; prints as ^H */ /* How should we search? */ #define SRCH_FORW (1 << 0) /* Search forward from current position */ #define SRCH_BACK (1 << 1) /* Search backward from current position */ #define SRCH_NO_MOVE (1 << 2) /* Highlight, but don't move */ #define SRCH_INCR (1 << 3) /* Incremental search */ #define SRCH_FIND_ALL (1 << 4) /* Find and highlight all matches */ #define SRCH_NO_MATCH (1 << 8) /* Search for non-matching lines */ #define SRCH_PAST_EOF (1 << 9) /* Search past end-of-file, into next file */ #define SRCH_FIRST_FILE (1 << 10) /* Search starting at the first file */ #define SRCH_NO_REGEX (1 << 12) /* Don't use regular expressions */ #define SRCH_FILTER (1 << 13) /* Search is for '&' (filter) command */ #define SRCH_AFTER_TARGET (1 << 14) /* Start search after the target line */ #define SRCH_WRAP (1 << 15) /* Wrap-around search (continue at BOF/EOF) */ #if OSC8_LINK #define SRCH_OSC8 (1 << 16) /* */ #endif #define SRCH_SUBSEARCH(i) (1 << (17+(i))) /* Search for subpattern */ /* {{ Depends on NUM_SEARCH_COLORS==5 }} */ #define SRCH_SUBSEARCH_ALL (SRCH_SUBSEARCH(1)|SRCH_SUBSEARCH(2)|SRCH_SUBSEARCH(3)|SRCH_SUBSEARCH(4)|SRCH_SUBSEARCH(5)) #define SRCH_REVERSE(t) (((t) & SRCH_FORW) ? \ (((t) & ~SRCH_FORW) | SRCH_BACK) : \ (((t) & ~SRCH_BACK) | SRCH_FORW)) /* Parsing position in an OSC8 link: "\e]8;PARAMS;URI\e\\" (final "\e\\" may be "\7") */ typedef enum osc8_state { OSC8_NOT, /* This is not an OSC8 link */ OSC8_PREFIX, /* In the "\e]8;" */ OSC8_PARAMS, /* In the parameters */ OSC8_URI, /* In the URI */ OSC8_ST_ESC, /* After the final \e */ OSC8_END, /* At end */ } osc8_state; /* */ #define NO_MCA 0 #define MCA_DONE 1 #define MCA_MORE 2 #define CC_OK 0 /* Char was accepted & processed */ #define CC_QUIT 1 /* Char was a request to abort current cmd */ #define CC_ERROR 2 /* Char could not be accepted due to error */ #define CC_PASS 3 /* Char was rejected (internal) */ #define CF_QUIT_ON_ERASE 0001 /* Abort cmd if its entirely erased */ /* Special char bit-flags used to tell put_line() to do something special */ #define AT_NORMAL (0) #define AT_UNDERLINE (1 << 0) #define AT_BOLD (1 << 1) #define AT_BLINK (1 << 2) #define AT_STANDOUT (1 << 3) #define AT_ANSI (1 << 4) /* Content-supplied "ANSI" escape sequence */ #define AT_BINARY (1 << 5) /* LESS*BINFMT representation */ #define AT_HILITE (1 << 6) /* Internal highlights (e.g., for search) */ #define AT_COLOR_SHIFT 8 #define AT_NUM_COLORS 16 #define AT_COLOR ((AT_NUM_COLORS-1) << AT_COLOR_SHIFT) #define AT_COLOR_ATTN (1 << AT_COLOR_SHIFT) #define AT_COLOR_BIN (2 << AT_COLOR_SHIFT) #define AT_COLOR_CTRL (3 << AT_COLOR_SHIFT) #define AT_COLOR_ERROR (4 << AT_COLOR_SHIFT) #define AT_COLOR_LINENUM (5 << AT_COLOR_SHIFT) #define AT_COLOR_MARK (6 << AT_COLOR_SHIFT) #define AT_COLOR_PROMPT (7 << AT_COLOR_SHIFT) #define AT_COLOR_RSCROLL (8 << AT_COLOR_SHIFT) #define AT_COLOR_HEADER (9 << AT_COLOR_SHIFT) #define AT_COLOR_SEARCH (10 << AT_COLOR_SHIFT) #define AT_COLOR_SUBSEARCH(i) ((10+(i)) << AT_COLOR_SHIFT) #define NUM_SEARCH_COLORS (AT_NUM_COLORS-10-1) typedef enum { CT_NULL, CT_4BIT, CT_6BIT } COLOR_TYPE; typedef enum { CV_BLUE = 1, CV_GREEN = 2, CV_RED = 4, CV_BRIGHT = 8, CV_NOCHANGE = -2, CV_ERROR = -1 } COLOR_VALUE; typedef enum { CATTR_NULL = 0, CATTR_STANDOUT = (1 << 0), CATTR_BOLD = (1 << 1), CATTR_UNDERLINE = (1 << 2), CATTR_BLINK = (1 << 3), } CHAR_ATTR; /* ANSI states */ typedef enum { ANSI_NULL, ANSI_MID, ANSI_ERR, ANSI_END, } ansi_state; #if '0' == 240 #define IS_EBCDIC_HOST 1 #endif #if IS_EBCDIC_HOST /* * Long definition for EBCDIC. * Since the argument is usually a constant, this macro normally compiles * into a constant. */ #define CONTROL(c) ( \ (c)=='[' ? '\047' : \ (c)=='a' ? '\001' : \ (c)=='b' ? '\002' : \ (c)=='c' ? '\003' : \ (c)=='d' ? '\067' : \ (c)=='e' ? '\055' : \ (c)=='f' ? '\056' : \ (c)=='g' ? '\057' : \ (c)=='h' ? '\026' : \ (c)=='i' ? '\005' : \ (c)=='j' ? '\025' : \ (c)=='k' ? '\013' : \ (c)=='l' ? '\014' : \ (c)=='m' ? '\015' : \ (c)=='n' ? '\016' : \ (c)=='o' ? '\017' : \ (c)=='p' ? '\020' : \ (c)=='q' ? '\021' : \ (c)=='r' ? '\022' : \ (c)=='s' ? '\023' : \ (c)=='t' ? '\074' : \ (c)=='u' ? '\075' : \ (c)=='v' ? '\062' : \ (c)=='w' ? '\046' : \ (c)=='x' ? '\030' : \ (c)=='y' ? '\031' : \ (c)=='z' ? '\077' : \ (c)=='A' ? '\001' : \ (c)=='B' ? '\002' : \ (c)=='C' ? '\003' : \ (c)=='D' ? '\067' : \ (c)=='E' ? '\055' : \ (c)=='F' ? '\056' : \ (c)=='G' ? '\057' : \ (c)=='H' ? '\026' : \ (c)=='I' ? '\005' : \ (c)=='J' ? '\025' : \ (c)=='K' ? '\013' : \ (c)=='L' ? '\014' : \ (c)=='M' ? '\015' : \ (c)=='N' ? '\016' : \ (c)=='O' ? '\017' : \ (c)=='P' ? '\020' : \ (c)=='Q' ? '\021' : \ (c)=='R' ? '\022' : \ (c)=='S' ? '\023' : \ (c)=='T' ? '\074' : \ (c)=='U' ? '\075' : \ (c)=='V' ? '\062' : \ (c)=='W' ? '\046' : \ (c)=='X' ? '\030' : \ (c)=='Y' ? '\031' : \ (c)=='Z' ? '\077' : \ (c)=='|' ? '\031' : \ (c)=='\\' ? '\034' : \ (c)=='^' ? '\036' : \ (c)&077) #else #define CONTROL(c) ((c)&037) #endif /* IS_EBCDIC_HOST */ #define ESC CONTROL('[') #define ESCS "\33" #define CSI ((unsigned char)'\233') #if _OSK_MWC32 #define LSIGNAL(sig,func) os9_signal(sig,func) #else #define LSIGNAL(sig,func) signal(sig,func) #endif #if HAVE_SIGPROCMASK #if HAVE_SIGSET_T #else #undef HAVE_SIGPROCMASK #endif #endif #if HAVE_SIGPROCMASK #if HAVE_SIGEMPTYSET #else #undef sigemptyset #define sigemptyset(mp) *(mp) = 0 #endif #endif #define S_INTERRUPT 01 #define S_STOP 02 #define S_WINCH 04 #define ABORT_SIGS() (sigs & (S_INTERRUPT|S_STOP)) #ifdef EXIT_SUCCESS #define QUIT_OK EXIT_SUCCESS #else #define QUIT_OK 0 #endif #ifdef EXIT_FAILURE #define QUIT_ERROR EXIT_FAILURE #define QUIT_INTERRUPT (EXIT_FAILURE+1) #else #define QUIT_ERROR 1 #define QUIT_INTERRUPT 2 #endif #define QUIT_SAVED_STATUS (-1) #define FOLLOW_DESC 0 #define FOLLOW_NAME 1 /* filestate flags */ #define CH_CANSEEK 001 #define CH_KEEPOPEN 002 #define CH_POPENED 004 #define CH_HELPFILE 010 #define CH_NODATA 020 /* Special case for zero length files */ #define CH_NOTRUSTSIZE 040 /* For files that claim 0 length size falsely */ #define ch_zero() ((POSITION)0) #define FAKE_HELPFILE "@/\\less/\\help/\\file/\\@" #define FAKE_EMPTYFILE "@/\\less/\\empty/\\file/\\@" /* Flags for cvt_text */ #define CVT_TO_LC 01 /* Convert upper-case to lower-case */ #define CVT_BS 02 /* Do backspace processing */ #define CVT_CRLF 04 /* Remove CR after LF */ #define CVT_ANSI 010 /* Remove ANSI escape sequences */ #if HAVE_TIME_T #define time_type time_t #else #define time_type long #endif /* X11 mouse reporting definitions */ #define X11MOUSE_BUTTON1 0 /* Left button press */ #define X11MOUSE_BUTTON2 1 /* Middle button press */ #define X11MOUSE_BUTTON3 2 /* Right button press */ #define X11MOUSE_BUTTON_REL 3 /* Button release */ #define X11MOUSE_WHEEL_UP 0x40 /* Wheel scroll up */ #define X11MOUSE_WHEEL_DOWN 0x41 /* Wheel scroll down */ #define X11MOUSE_OFFSET 0x20 /* Added to button & pos bytes to create a char */ /* Security features. */ #define SF_EDIT (1<<1) /* Edit file (v) */ #define SF_EXAMINE (1<<2) /* Examine file (:e) */ #define SF_GLOB (1<<3) /* Expand file pattern */ #define SF_HISTORY (1<<4) /* History file */ #define SF_LESSKEY (1<<5) /* Lesskey files */ #define SF_LESSOPEN (1<<6) /* LESSOPEN */ #define SF_LOGFILE (1<<7) /* Log file (s, -o) */ #define SF_PIPE (1<<8) /* Pipe (|) */ #define SF_SHELL (1<<9) /* Shell command (!) */ #define SF_STOP (1<<10) /* Stop signal */ #define SF_TAGS (1<<11) /* Tags */ #define SF_OSC8_OPEN (1<<12) /* OSC8 open */ #if LESSTEST #define LESS_DUMP_CHAR CONTROL(']') #endif struct mlist; struct loption; struct hilite_tree; struct ansi_state; #include "pattern.h" #include "xbuf.h" #include "funcs.h" /* Functions not included in funcs.h */ void postoa(POSITION, char*, int); void linenumtoa(LINENUM, char*, int); void inttoa(int, char*, int); int lstrtoi(char*, char**, int); POSITION lstrtopos(char*, char**, int); unsigned long lstrtoul(char*, char**, int); int lstrtoic(constant char*, constant char**, int); POSITION lstrtoposc(constant char*, constant char**, int); unsigned long lstrtoulc(constant char*, constant char**, int); #if MSDOS_COMPILER==WIN32C int pclose(FILE*); #endif less-668/less.hlp0000444060175306017530000003705314700607662013062 0ustar marknmarkn SSUUMMMMAARRYY OOFF LLEESSSS CCOOMMMMAANNDDSS Commands marked with * may be preceded by a number, _N. Notes in parentheses indicate the behavior if _N is given. A key preceded by a caret indicates the Ctrl key; thus ^K is ctrl-K. h H Display this help. q :q Q :Q ZZ Exit. --------------------------------------------------------------------------- MMOOVVIINNGG e ^E j ^N CR * Forward one line (or _N lines). y ^Y k ^K ^P * Backward one line (or _N lines). f ^F ^V SPACE * Forward one window (or _N lines). b ^B ESC-v * Backward one window (or _N lines). z * Forward one window (and set window to _N). w * Backward one window (and set window to _N). ESC-SPACE * Forward one window, but don't stop at end-of-file. d ^D * Forward one half-window (and set half-window to _N). u ^U * Backward one half-window (and set half-window to _N). ESC-) RightArrow * Right one half screen width (or _N positions). ESC-( LeftArrow * Left one half screen width (or _N positions). ESC-} ^RightArrow Right to last column displayed. ESC-{ ^LeftArrow Left to first column. F Forward forever; like "tail -f". ESC-F Like F but stop when search pattern is found. r ^R ^L Repaint screen. R Repaint screen, discarding buffered input. --------------------------------------------------- Default "window" is the screen height. Default "half-window" is half of the screen height. --------------------------------------------------------------------------- SSEEAARRCCHHIINNGG /_p_a_t_t_e_r_n * Search forward for (_N-th) matching line. ?_p_a_t_t_e_r_n * Search backward for (_N-th) matching line. n * Repeat previous search (for _N-th occurrence). N * Repeat previous search in reverse direction. ESC-n * Repeat previous search, spanning files. ESC-N * Repeat previous search, reverse dir. & spanning files. ^O^N ^On * Search forward for (_N-th) OSC8 hyperlink. ^O^P ^Op * Search backward for (_N-th) OSC8 hyperlink. ^O^L ^Ol Jump to the currently selected OSC8 hyperlink. ESC-u Undo (toggle) search highlighting. ESC-U Clear search highlighting. &_p_a_t_t_e_r_n * Display only matching lines. --------------------------------------------------- A search pattern may begin with one or more of: ^N or ! Search for NON-matching lines. ^E or * Search multiple files (pass thru END OF FILE). ^F or @ Start search at FIRST file (for /) or last file (for ?). ^K Highlight matches, but don't move (KEEP position). ^R Don't use REGULAR EXPRESSIONS. ^S _n Search for match in _n-th parenthesized subpattern. ^W WRAP search if no match found. ^L Enter next character literally into pattern. --------------------------------------------------------------------------- JJUUMMPPIINNGG g < ESC-< * Go to first line in file (or line _N). G > ESC-> * Go to last line in file (or line _N). p % * Go to beginning of file (or _N percent into file). t * Go to the (_N-th) next tag. T * Go to the (_N-th) previous tag. { ( [ * Find close bracket } ) ]. } ) ] * Find open bracket { ( [. ESC-^F _<_c_1_> _<_c_2_> * Find close bracket _<_c_2_>. ESC-^B _<_c_1_> _<_c_2_> * Find open bracket _<_c_1_>. --------------------------------------------------- Each "find close bracket" command goes forward to the close bracket matching the (_N-th) open bracket in the top line. Each "find open bracket" command goes backward to the open bracket matching the (_N-th) close bracket in the bottom line. m_<_l_e_t_t_e_r_> Mark the current top line with . M_<_l_e_t_t_e_r_> Mark the current bottom line with . '_<_l_e_t_t_e_r_> Go to a previously marked position. '' Go to the previous position. ^X^X Same as '. ESC-m_<_l_e_t_t_e_r_> Clear a mark. --------------------------------------------------- A mark is any upper-case or lower-case letter. Certain marks are predefined: ^ means beginning of the file $ means end of the file --------------------------------------------------------------------------- CCHHAANNGGIINNGG FFIILLEESS :e [_f_i_l_e] Examine a new file. ^X^V Same as :e. :n * Examine the (_N-th) next file from the command line. :p * Examine the (_N-th) previous file from the command line. :x * Examine the first (or _N-th) file from the command line. ^O^O Open the currently selected OSC8 hyperlink. :d Delete the current file from the command line list. = ^G :f Print current file name. --------------------------------------------------------------------------- MMIISSCCEELLLLAANNEEOOUUSS CCOOMMMMAANNDDSS -_<_f_l_a_g_> Toggle a command line option [see OPTIONS below]. --_<_n_a_m_e_> Toggle a command line option, by name. __<_f_l_a_g_> Display the setting of a command line option. ___<_n_a_m_e_> Display the setting of an option, by name. +_c_m_d Execute the less cmd each time a new file is examined. !_c_o_m_m_a_n_d Execute the shell command with $SHELL. #_c_o_m_m_a_n_d Execute the shell command, expanded like a prompt. |XX_c_o_m_m_a_n_d Pipe file between current pos & mark XX to shell command. s _f_i_l_e Save input to a file. v Edit the current file with $VISUAL or $EDITOR. V Print version number of "less". --------------------------------------------------------------------------- OOPPTTIIOONNSS Most options may be changed either on the command line, or from within less by using the - or -- command. Options may be given in one of two forms: either a single character preceded by a -, or a name preceded by --. -? ........ --help Display help (from command line). -a ........ --search-skip-screen Search skips current screen. -A ........ --SEARCH-SKIP-SCREEN Search starts just after target line. -b [_N] .... --buffers=[_N] Number of buffers. -B ........ --auto-buffers Don't automatically allocate buffers for pipes. -c ........ --clear-screen Repaint by clearing rather than scrolling. -d ........ --dumb Dumb terminal. -D xx_c_o_l_o_r . --color=xx_c_o_l_o_r Set screen colors. -e -E .... --quit-at-eof --QUIT-AT-EOF Quit at end of file. -f ........ --force Force open non-regular files. -F ........ --quit-if-one-screen Quit if entire file fits on first screen. -g ........ --hilite-search Highlight only last match for searches. -G ........ --HILITE-SEARCH Don't highlight any matches for searches. -h [_N] .... --max-back-scroll=[_N] Backward scroll limit. -i ........ --ignore-case Ignore case in searches that do not contain uppercase. -I ........ --IGNORE-CASE Ignore case in all searches. -j [_N] .... --jump-target=[_N] Screen position of target lines. -J ........ --status-column Display a status column at left edge of screen. -k _f_i_l_e ... --lesskey-file=_f_i_l_e Use a compiled lesskey file. -K ........ --quit-on-intr Exit less in response to ctrl-C. -L ........ --no-lessopen Ignore the LESSOPEN environment variable. -m -M .... --long-prompt --LONG-PROMPT Set prompt style. -n ......... --line-numbers Suppress line numbers in prompts and messages. -N ......... --LINE-NUMBERS Display line number at start of each line. -o [_f_i_l_e] .. --log-file=[_f_i_l_e] Copy to log file (standard input only). -O [_f_i_l_e] .. --LOG-FILE=[_f_i_l_e] Copy to log file (unconditionally overwrite). -p _p_a_t_t_e_r_n . --pattern=[_p_a_t_t_e_r_n] Start at pattern (from command line). -P [_p_r_o_m_p_t] --prompt=[_p_r_o_m_p_t] Define new prompt. -q -Q .... --quiet --QUIET --silent --SILENT Quiet the terminal bell. -r -R .... --raw-control-chars --RAW-CONTROL-CHARS Output "raw" control characters. -s ........ --squeeze-blank-lines Squeeze multiple blank lines. -S ........ --chop-long-lines Chop (truncate) long lines rather than wrapping. -t _t_a_g .... --tag=[_t_a_g] Find a tag. -T [_t_a_g_s_f_i_l_e] --tag-file=[_t_a_g_s_f_i_l_e] Use an alternate tags file. -u -U .... --underline-special --UNDERLINE-SPECIAL Change handling of backspaces, tabs and carriage returns. -V ........ --version Display the version number of "less". -w ........ --hilite-unread Highlight first new line after forward-screen. -W ........ --HILITE-UNREAD Highlight first new line after any forward movement. -x [_N[,...]] --tabs=[_N[,...]] Set tab stops. -X ........ --no-init Don't use termcap init/deinit strings. -y [_N] .... --max-forw-scroll=[_N] Forward scroll limit. -z [_N] .... --window=[_N] Set size of window. -" [_c[_c]] . --quotes=[_c[_c]] Set shell quote characters. -~ ........ --tilde Don't display tildes after end of file. -# [_N] .... --shift=[_N] Set horizontal scroll amount (0 = one half screen width). --exit-follow-on-close Exit F command on a pipe when writer closes pipe. --file-size Automatically determine the size of the input file. --follow-name The F command changes files if the input file is renamed. --header=[_L[,_C[,_N]]] Use _L lines (starting at line _N) and _C columns as headers. --incsearch Search file as each pattern character is typed in. --intr=[_C] Use _C instead of ^X to interrupt a read. --lesskey-context=_t_e_x_t Use lesskey source file contents. --lesskey-src=_f_i_l_e Use a lesskey source file. --line-num-width=[_N] Set the width of the -N line number field to _N characters. --match-shift=[_N] Show at least _N characters to the left of a search match. --modelines=[_N] Read _N lines from the input file and look for vim modelines. --mouse Enable mouse input. --no-keypad Don't send termcap keypad init/deinit strings. --no-histdups Remove duplicates from command history. --no-number-headers Don't give line numbers to header lines. --no-search-header-lines Searches do not include header lines. --no-search-header-columns Searches do not include header columns. --no-search-headers Searches do not include header lines or columns. --no-vbell Disable the terminal's visual bell. --redraw-on-quit Redraw final screen when quitting. --rscroll=[_C] Set the character used to mark truncated lines. --save-marks Retain marks across invocations of less. --search-options=[EFKNRW-] Set default options for every search. --show-preproc-errors Display a message if preprocessor exits with an error status. --proc-backspace Process backspaces for bold/underline. --PROC-BACKSPACE Treat backspaces as control characters. --proc-return Delete carriage returns before newline. --PROC-RETURN Treat carriage returns as control characters. --proc-tab Expand tabs to spaces. --PROC-TAB Treat tabs as control characters. --status-col-width=[_N] Set the width of the -J status column to _N characters. --status-line Highlight or color the entire line containing a mark. --use-backslash Subsequent options use backslash as escape char. --use-color Enables colored text. --wheel-lines=[_N] Each click of the mouse wheel moves _N lines. --wordwrap Wrap lines at spaces. --------------------------------------------------------------------------- LLIINNEE EEDDIITTIINNGG These keys can be used to edit text being entered on the "command line" at the bottom of the screen. RightArrow ..................... ESC-l ... Move cursor right one character. LeftArrow ...................... ESC-h ... Move cursor left one character. ctrl-RightArrow ESC-RightArrow ESC-w ... Move cursor right one word. ctrl-LeftArrow ESC-LeftArrow ESC-b ... Move cursor left one word. HOME ........................... ESC-0 ... Move cursor to start of line. END ............................ ESC-$ ... Move cursor to end of line. BACKSPACE ................................ Delete char to left of cursor. DELETE ......................... ESC-x ... Delete char under cursor. ctrl-BACKSPACE ESC-BACKSPACE ........... Delete word to left of cursor. ctrl-DELETE .... ESC-DELETE .... ESC-X ... Delete word under cursor. ctrl-U ......... ESC (MS-DOS only) ....... Delete entire line. UpArrow ........................ ESC-k ... Retrieve previous command line. DownArrow ...................... ESC-j ... Retrieve next command line. TAB ...................................... Complete filename & cycle. SHIFT-TAB ...................... ESC-TAB Complete filename & reverse cycle. ctrl-L ................................... Complete filename, list all. less-668/less.man0000444060175306017530000036145314700607657013062 0ustar marknmarknLESS(1) General Commands Manual LESS(1) NAME less - display the contents of a file in a terminal SYNOPSIS less -? less --help less -V less --version less [-[+]aABcCdeEfFgGiIJKLmMnNqQrRsSuUVwWX~] [-b space] [-h lines] [-j line] [-k keyfile] [-{oO} logfile] [-p pattern] [-P prompt] [-t tag] [-T tagsfile] [-x tab,...] [-y lines] [-[z] lines] [-# shift] [+[+]cmd] [--] [filename]... (See the OPTIONS section for alternate option syntax with long option names.) DESCRIPTION Less is a program similar to more(1), but it has many more features. Less does not have to read the entire input file before starting, so with large input files it starts up faster than text editors like vi(1). Less uses termcap (or terminfo on some systems), so it can run on a variety of terminals. There is even limited support for hardcopy terminals. (On a hardcopy terminal, lines which should be printed at the top of the screen are prefixed with a caret.) Commands are based on both more and vi. Commands may be preceded by a decimal number, called N in the descriptions below. The number is used by some commands, as indicated. COMMANDS In the following descriptions, ^X means control‐X. ESC stands for the ESCAPE key; for example ESC‐v means the two character sequence "ES‐ CAPE", then "v". h or H Help: display a summary of these commands. If you forget all the other commands, remember this one. SPACE or ^V or f or ^F Scroll forward N lines, default one window (see option -z be‐ low). If N is more than the screen size, only the final screen‐ ful is displayed. Warning: some systems use ^V as a special literalization character. z Like SPACE, but if N is specified, it becomes the new window size. ESC‐SPACE Like SPACE, but scrolls a full screenful, even if it reaches end‐of‐file in the process. ENTER or RETURN or ^N or e or ^E or j or ^J Scroll forward N lines, default 1. The entire N lines are dis‐ played, even if N is more than the screen size. d or ^D Scroll forward N lines, default one half of the screen size. If N is specified, it becomes the new default for subsequent d and u commands. b or ^B or ESC‐v Scroll backward N lines, default one window (see option -z be‐ low). If N is more than the screen size, only the final screen‐ ful is displayed. w Like ESC‐v, but if N is specified, it becomes the new window size. y or ^Y or ^P or k or ^K Scroll backward N lines, default 1. The entire N lines are dis‐ played, even if N is more than the screen size. Warning: some systems use ^Y as a special job control character. u or ^U Scroll backward N lines, default one half of the screen size. If N is specified, it becomes the new default for subsequent d and u commands. J Like j, but continues to scroll beyond the end of the file. K or Y Like k, but continues to scroll beyond the beginning of the file. ESC‐) or RIGHTARROW Scroll horizontally right N characters, default half the screen width (see the -# option). If a number N is specified, it be‐ comes the default for future RIGHTARROW and LEFTARROW commands. While the text is scrolled, it acts as though the -S option (chop lines) were in effect. ESC‐( or LEFTARROW Scroll horizontally left N characters, default half the screen width (see the -# option). If a number N is specified, it be‐ comes the default for future RIGHTARROW and LEFTARROW commands. ESC‐} or ^RIGHTARROW Scroll horizontally right to show the end of the longest dis‐ played line. ESC‐{ or ^LEFTARROW Scroll horizontally left back to the first column. r or ^R or ^L Repaint the screen. R Repaint the screen, discarding any buffered input. That is, re‐ load the current file. Useful if the file is changing while it is being viewed. F Scroll forward, and keep trying to read when the end of file is reached. Normally this command would be used when already at the end of the file. It is a way to monitor the tail of a file which is growing while it is being viewed. (The behavior is similar to the "tail -f" command.) To stop waiting for more data, enter the interrupt character (usually ^C). On systems which support poll(2) you can also use ^X or the character spec‐ ified by the --intr option. If the input is a pipe and the --exit‐follow‐on‐close option is in effect, less will automati‐ cally stop waiting for data when the input side of the pipe is closed. ESC‐F Like F, but as soon as a line is found which matches the last search pattern, the terminal bell is rung and forward scrolling stops. g or < or ESC‐< Go to line N in the file, default 1 (beginning of file). (Warn‐ ing: this may be slow if N is large.) G or > or ESC‐> Go to line N in the file, default the end of the file. (Warn‐ ing: this may be slow if N is large, or if N is not specified and standard input, rather than a file, is being read.) ESC‐G Same as G, except if no number N is specified and the input is standard input, goes to the last line which is currently buffered. p or % Go to a position N percent into the file. N should be between 0 and 100, and may contain a decimal point. P Go to the line containing byte offset N in the file. { If a left curly bracket appears in the top line displayed on the screen, the { command will go to the matching right curly bracket. The matching right curly bracket is positioned on the bottom line of the screen. If there is more than one left curly bracket on the top line, a number N may be used to specify the N‐th bracket on the line. } If a right curly bracket appears in the bottom line displayed on the screen, the } command will go to the matching left curly bracket. The matching left curly bracket is positioned on the top line of the screen. If there is more than one right curly bracket on the bottom line, a number N may be used to specify the N‐th bracket on the line. ( Like {, but applies to parentheses rather than curly brackets. ) Like }, but applies to parentheses rather than curly brackets. [ Like {, but applies to square brackets rather than curly brack‐ ets. ] Like }, but applies to square brackets rather than curly brack‐ ets. ESC‐^F Followed by two characters, acts like {, but uses the two char‐ acters as open and close brackets, respectively. For example, "ESC ^F < >" could be used to go forward to the > which matches the < in the top displayed line. ESC‐^B Followed by two characters, acts like }, but uses the two char‐ acters as open and close brackets, respectively. For example, "ESC ^B < >" could be used to go backward to the < which matches the > in the bottom displayed line. m Followed by any lowercase or uppercase letter, marks the first displayed line with that letter. If the status column is en‐ abled via the -J option, the status column shows the marked line. M Acts like m, except the last displayed line is marked rather than the first displayed line. ' (Single quote.) Followed by any lowercase or uppercase letter, returns to the position which was previously marked with that letter. Followed by another single quote, returns to the posi‐ tion at which the last "large" movement command was executed. Followed by a ^ or $, jumps to the beginning or end of the file respectively. Marks are preserved when a new file is examined, so the ' command can be used to switch between input files. ^X^X Same as single quote. ESC‐m Followed by any lowercase or uppercase letter, clears the mark identified by that letter. /pattern Search forward in the file for the N‐th line containing the pat‐ tern. N defaults to 1. The pattern is a regular expression, as recognized by the regular expression library supplied by your system. By default, searching is case‐sensitive (uppercase and lowercase are considered different); the -i option can be used to change this. The search starts at the first line displayed (but see the -a and -j options, which change this). Certain characters are special if entered at the beginning of the pattern; they modify the type of search rather than become part of the pattern: ^N or ! Search for lines which do NOT match the pattern. ^E or * Search multiple files. That is, if the search reaches the END of the current file without finding a match, the search continues in the next file in the command line list. ^F or @ Begin the search at the first line of the FIRST file in the command line list, regardless of what is currently displayed on the screen or the settings of the -a or -j options. ^K Highlight any text which matches the pattern on the cur‐ rent screen, but don’t move to the first match (KEEP cur‐ rent position). ^R Don’t interpret regular expression metacharacters; that is, do a simple textual comparison. ^S Followed by a digit N between 1 and 5. Only text which has a non‐empty match for the N‐th parenthesized SUB‐PAT‐ TERN will be considered to match the pattern. (Supported only if less is built with one of the regular expression libraries posix, pcre, or pcre2.) Multiple ^S modifiers can be specified, to match more than one sub‐pattern. ^W WRAP around the current file. That is, if the search reaches the end of the current file without finding a match, the search continues from the first line of the current file up to the line where it started. If the ^W modifier is set, the ^E modifier is ignored. ^L The next character is taken literally; that is, it be‐ comes part of the pattern even if it is one of the above search modifier characters. ?pattern Search backward in the file for the N‐th line containing the pattern. The search starts at the last line displayed (but see the -a and -j options, which change this). Certain characters are special as in the / command: ^N or ! Search for lines which do NOT match the pattern. ^E or * Search multiple files. That is, if the search reaches the beginning of the current file without finding a match, the search continues in the previous file in the command line list. ^F or @ Begin the search at the last line of the last file in the command line list, regardless of what is currently dis‐ played on the screen or the settings of the -a or -j op‐ tions. ^K As in forward searches. ^R As in forward searches. ^S As in forward searches. ^W WRAP around the current file. That is, if the search reaches the beginning of the current file without finding a match, the search continues from the last line of the current file up to the line where it started. ESC‐/pattern Same as "/*". ESC‐?pattern Same as "?*". n Repeat previous search, for N‐th line containing the last pat‐ tern. If the previous search was modified by ^N, the search is made for the N‐th line NOT containing the pattern. If the pre‐ vious search was modified by ^E, the search continues in the next (or previous) file if not satisfied in the current file. If the previous search was modified by ^R, the search is done without using regular expressions. There is no effect if the previous search was modified by ^F or ^K. N Repeat previous search, but in the reverse direction. ESC‐n Repeat previous search, but crossing file boundaries. The ef‐ fect is as if the previous search were modified by *. ESC‐N Repeat previous search, but in the reverse direction and cross‐ ing file boundaries. ESC‐u Undo search highlighting. Turn off highlighting of strings matching the current search pattern. If highlighting is already off because of a previous ESC‐u command, turn highlighting back on. Any search command will also turn highlighting back on. (Highlighting can also be disabled by toggling the -G option; in that case search commands do not turn highlighting back on.) ESC‐U Like ESC‐u but also clears the saved search pattern. If the status column is enabled via the -J option, this clears all search matches marked in the status column. &pattern Display only lines which match the pattern; lines which do not match the pattern are not displayed. If pattern is empty (if you type & immediately followed by ENTER), any filtering is turned off, and all lines are displayed. While filtering is in effect, an ampersand is displayed at the beginning of the prompt, as a reminder that some lines in the file may be hidden. Multiple & commands may be entered, in which case only lines which match all of the patterns will be displayed. Certain characters are special as in the / command: ^N or ! Display only lines which do NOT match the pattern. ^R Don’t interpret regular expression metacharacters; that is, do a simple textual comparison. :e [filename] Examine a new file. If the filename is missing, the "current" file (see the :n and :p commands below) from the list of files in the command line is re‐examined. A percent sign (%) in the filename is replaced by the name of the current file. A pound sign (#) is replaced by the name of the previously examined file. However, two consecutive percent signs are simply re‐ placed with a single percent sign. This allows you to enter a filename that contains a percent sign in the name. Similarly, two consecutive pound signs are replaced with a single pound sign. The filename is inserted into the command line list of files so that it can be seen by subsequent :n and :p commands. If the filename consists of several files, they are all inserted into the list of files and the first one is examined. If the filename contains one or more spaces, the entire filename should be enclosed in double quotes (also see the -" option). ^X^V or E Same as :e. Warning: some systems use ^V as a special literal‐ ization character. On such systems, you may not be able to use ^V. :n Examine the next file (from the list of files given in the com‐ mand line). If a number N is specified, the N‐th next file is examined. :p Examine the previous file in the command line list. If a number N is specified, the N‐th previous file is examined. :x Examine the first file in the command line list. If a number N is specified, the N‐th file in the list is examined. :d Remove the current file from the list of files. t Go to the next tag, if there were more than one matches for the current tag. See the -t option for more details about tags. T Go to the previous tag, if there were more than one matches for the current tag. ^O^N or ^On Search forward in the file for the N‐th next OSC 8 hyperlink. ^O^P or ^Op Search backward in the file for the N‐th previous OSC 8 hyper‐ link. ^O^L or ^Ol Jump to the currently selected OSC 8 hyperlink. = or ^G or :f Prints some information about the file being viewed, including its name and the line number and byte offset of the bottom line being displayed. If possible, it also prints the length of the file, the number of lines in the file and the percent of the file above the last displayed line. - Followed by one of the command line option letters (see OPTIONS below), this will change the setting of that option and print a message describing the new setting. If a ^P (CONTROL‐P) is en‐ tered immediately after the dash, the setting of the option is changed but no message is printed. If the option letter has a numeric value (such as -b or -h), or a string value (such as -P or -t), a new value may be entered after the option letter. If no new value is entered, a message describing the current set‐ ting is printed and nothing is changed. -- Like the - command, but takes a long option name (see OPTIONS below) rather than a single option letter. You must press ENTER or RETURN after typing the option name. A ^P immediately after the second dash suppresses printing of a message describing the new setting, as in the - command. -+ Followed by one of the command line option letters this will re‐ set the option to its default setting and print a message de‐ scribing the new setting. (The "-+X" command does the same thing as "-+X" on the command line.) This does not work for string‐valued options. --+ Like the -+ command, but takes a long option name rather than a single option letter. -! Followed by one of the command line option letters, this will reset the option to the "opposite" of its default setting and print a message describing the new setting. This does not work for numeric or string‐valued options. --! Like the -! command, but takes a long option name rather than a single option letter. _ (Underscore.) Followed by one of the command line option let‐ ters, this will print a message describing the current setting of that option. The setting of the option is not changed. __ (Double underscore.) Like the _ (underscore) command, but takes a long option name rather than a single option letter. You must press ENTER or RETURN after typing the option name. +cmd Causes the specified cmd to be executed each time a new file is examined. For example, +G causes less to initially display each file starting at the end rather than the beginning. V Prints the version number of less being run. q or Q or :q or :Q or ZZ Exits less. The following seven commands may or may not be valid, depending on your particular installation. v Invokes an editor to edit the current file being viewed. The editor is taken from the environment variable VISUAL if defined, or EDITOR if VISUAL is not defined, or defaults to "vi" if nei‐ ther VISUAL nor EDITOR is defined. See also the discussion of LESSEDIT under the section on PROMPTS below. ! shell‐command Invokes a shell to run the shell‐command given. A percent sign (%) in the command is replaced by the name of the current file. A pound sign (#) is replaced by the name of the previously exam‐ ined file. "!!" repeats the last shell command. "!" with no shell command simply invokes a shell. If a ^P (CONTROL‐P) is entered immediately after the !, no "done" message is printed after the shell command is executed. On Unix systems, the shell is taken from the environment variable SHELL, or defaults to "sh". On MS‐DOS, Windows, and OS/2 systems, the shell is the normal command processor. # shell‐command Similar to the "!" command, except that the command is expanded in the same way as prompt strings. For example, the name of the current file would be given as "%f". | shell‐command represents any mark letter. Pipes a section of the input file to the given shell command. The section of the file to be piped is between the position marked by the letter and the cur‐ rent screen. The entire current screen is included, regardless of whether the marked position is before or after the current screen. may also be ^ or $ to indicate beginning or end of file respectively. If is . or newline, the current screen is piped. If a ^P (CONTROL‐P) is entered immediately after the mark letter, no "done" message is printed after the shell com‐ mand is executed. s filename Save the input to a file. This works only if the input is a pipe, not an ordinary file. ^O^O Run a shell command to open the URI in the current OSC 8 hyper‐ link, selected by a previous ^O^N or ^O^P command. To find the shell command, the environment variable named "LESS_OSC8_xxx" is read, where "xxx" is the scheme from the URI (the part before the first colon), or is empty if there is no colon in the URI. The value of the environment variable is then expanded in the same way as prompt strings (in particular, any instance of "%o" is replaced with the URI) to produce an OSC 8 "handler" shell command. The standard output from the handler is an "opener" shell command which is then executed to open the URI. There are two special cases: 1. If the URI begins with "#", the remainder of the URI is taken to be the value of the id parameter in another OSC 8 link in the same file, and ^O^O will simply jump to that link. 2. If the opener begins with the characters ":e" fol‐ lowed by whitespace and a filename, then instead of running the opener as a shell command, the specified filename is opened in the current in‐ stance of less. In a simple case where the opener accepts the complete URI as a command line parameter, the handler may be as simple as echo mybrowser ’%o’ In other cases, the URI may need to be modified, so the handler may have to do some manipulation of the %o value. If the LESS_OSC8_xxx variable is not set, the variable LESS_OSC8_ANY is tried. If neither LESS_OSC8_xxx nor LESS_OSC8_ANY is set, links using the "xxx" scheme cannot be opened. However, there are default handlers for the schemes "man" (used when LESS_OSC8_man is not set) and "file" (used when LESS_OSC8_file is not set), which should work on systems which provide the sed(1) command and a shell with syntax compatible with the Bourne shell sh(1). If you use LESS_OSC8_ANY to over‐ ride LESS_OSC8_file, you must set LESS_OSC8_file to "‐" to indi‐ cate that the default value should not be used, and likewise for LESS_OSC8_man. The URI passed to an OSC8 handler via %o is guaranteed not to contain any single quote or double quote characters, but it may contain any other shell metacharacters such as semicolons, dol‐ lar signs, ampersands, etc. The handler should take care to ap‐ propriately quote parameters in the opener command, to prevent execution of unintended shell commands in the case of opening a URI which contains shell metacharacters. Also, since the han‐ dler command is expanded like a command prompt, any metacharac‐ ters interpreted by prompt expansion (such as percent, dot, colon, backslash, etc.) must be escaped with a backslash (see the PROMPTS section for details). ^X When the "Waiting for data" message is displayed, such as while in the F command, pressing ^X will stop less from waiting and return to a prompt. This may cause less to think that the file ends at the current position, so it may be necessary to use the R or F command to see more data. The --intr option can be used to specify a different character to use instead of ^X. This command works only on systems that support the poll(2) function. On systems without poll(2), the interrupt character (usually ^C) can be used instead. OPTIONS Command line options are described below. Most options may be changed while less is running, via the "-" command. Some options may be given in one of two forms: either a dash followed by a single letter, or two dashes followed by a long option name. A long option name may be abbreviated as long as the abbreviation is un‐ ambiguous. For example, --quit‐at‐eof may be abbreviated --quit, but not --qui, since both --quit‐at‐eof and --quiet begin with --qui. Some long option names are in uppercase, such as --QUIT‐AT‐EOF, as distinct from --quit‐at‐eof. Such option names need only have their first let‐ ter capitalized; the remainder of the name may be in either case. For example, --Quit‐at‐eof is equivalent to --QUIT‐AT‐EOF. Options are also taken from the environment variable "LESS". For exam‐ ple, to avoid typing "less -options ..." each time less is invoked, you might tell csh: setenv LESS "-options" or if you use sh: LESS="-options"; export LESS On MS‐DOS and Windows, you don’t need the quotes, but you should be careful that any percent signs in the options string are not inter‐ preted as an environment variable expansion. The environment variable is parsed before the command line, so command line options override the LESS environment variable. If an option ap‐ pears in the LESS variable, it can be reset to its default value on the command line by beginning the command line option with "-+". Some options like -k or -D require a string to follow the option let‐ ter. The string for that option is considered to end when a dollar sign ($) is found. For example, you can set two -D options like this: LESS="Dnwb$Dsbw" If the --use‐backslash option appears earlier in the options, then a dollar sign or backslash may be included literally in an option string by preceding it with a backslash. If the --use‐backslash option is not in effect, then backslashes are not treated specially, and there is no way to include a dollar sign in the option string. -? or --help This option displays a summary of the commands accepted by less (the same as the h command). (Depending on how your shell in‐ terprets the question mark, it may be necessary to quote the question mark, thus: "-\?".) -a or --search‐skip‐screen By default, forward searches start at the top of the displayed screen and backwards searches start at the bottom of the dis‐ played screen (except for repeated searches invoked by the n or N commands, which start after or before the "target" line re‐ spectively; see the -j option for more about the target line). The -a option causes forward searches to instead start at the bottom of the screen and backward searches to start at the top of the screen, thus skipping all lines displayed on the screen. -A or --SEARCH‐SKIP‐SCREEN Causes all forward searches (not just non‐repeated searches) to start just after the target line, and all backward searches to start just before the target line. Thus, forward searches will skip part of the displayed screen (from the first line up to and including the target line). Similarly backwards searches will skip the displayed screen from the last line up to and including the target line. This was the default behavior in less versions prior to 441. -bn or --buffers=n Specifies the amount of buffer space less will use for each file, in units of kilobytes (1024 bytes). By default 64 KB of buffer space is used for each file (unless the file is a pipe; see the -B option). The -b option specifies instead that n kilobytes of buffer space should be used for each file. If n is -1, buffer space is unlimited; that is, the entire file can be read into memory. -B or --auto‐buffers By default, when data is read from a pipe, buffers are allocated automatically as needed. If a large amount of data is read from the pipe, this can cause a large amount of memory to be allo‐ cated. The -B option disables this automatic allocation of buffers for pipes, so that only 64 KB (or the amount of space specified by the -b option) is used for the pipe. Warning: use of -B can result in erroneous display, since only the most re‐ cently viewed part of the piped data is kept in memory; any ear‐ lier data is lost. Lost characters are displayed as question marks. -c or --clear‐screen Causes full screen repaints to be painted from the top line down. By default, full screen repaints are done by scrolling from the bottom of the screen. -C or --CLEAR‐SCREEN Same as -c, for compatibility with older versions of less. -d or --dumb The -d option suppresses the error message normally displayed if the terminal is dumb; that is, lacks some important capability, such as the ability to clear the screen or scroll backward. The -d option does not otherwise change the behavior of less on a dumb terminal. -Dxcolor or --color=xcolor Changes the color of different parts of the displayed text. x is a single character which selects the type of text whose color is being set: B Binary characters. C Control characters. E Errors and informational messages. H Header lines and columns, set via the --header option. M Mark letters in the status column. N Line numbers enabled via the -N option. P Prompts. R The rscroll character. S Search results. W The highlight enabled via the -w option. 1‐5 The text in a search result which matches the first through fifth parenthesized sub‐pattern. Sub‐pattern coloring works only if less is built with one of the reg‐ ular expression libraries posix, pcre, or pcre2. d Bold text. k Blinking text. s Standout text. u Underlined text. The uppercase letters and digits can be used only when the --use‐color option is enabled. When text color is specified by both an uppercase letter and a lowercase letter, the uppercase letter takes precedence. For example, error messages are nor‐ mally displayed as standout text. So if both "s" and "E" are given a color, the "E" color applies to error messages, and the "s" color applies to other standout text. The lowercase letters refer to bold and underline text formed by overstriking with backspaces (see the -U option) and to non‐content text (such as line numbers and prompts), but not to text formatted using ANSI escape sequences with the -R option (but see the note below for different behavior on Windows and MS‐DOS). A lowercase letter may be followed by a + to indicate that the normal format change and the specified color should both be used. For example, -Dug displays underlined text as green with‐ out underlining; the green color has replaced the usual under‐ line formatting. But -Du+g displays underlined text as both green and in underlined format. color is either a 4‐bit color string or an 8‐bit color string: A 4‐bit color string is one or two characters, where the first character specifies the foreground color and the second speci‐ fies the background color as follows: b Blue c Cyan g Green k Black m Magenta r Red w White y Yellow The corresponding uppercase letter denotes a brighter shade of the color. For example, -DNGk displays line numbers as bright green text on a black background, and -DEbR displays error mes‐ sages as blue text on a bright red background. If either char‐ acter is a "‐" or is omitted, the corresponding color is set to that of normal text. An 8‐bit color string is one or two decimal integers separated by a dot, where the first integer specifies the foreground color and the second specifies the background color. Each integer is a value between 0 and 255 inclusive which selects a "CSI 38;5" color value (see https://en.wikipedia.org/wiki/ANSI_escape_code#SGR). If either integer is a "‐" or is omitted, the corresponding color is set to that of normal text. A 4‐bit or 8‐bit color string may be followed by one or more of the following characters to set text attributes in addition to the color. s or ˜ Standout (reverse video) u or _ Underline d or * Bold l or & Blinking On MS‐DOS and Windows, the --color option behaves differently from what is described above in these ways: • The bold (d and *) and blinking (l and &) text attributes at the end of a color string are not supported. • Lowercase color selector letters refer to text formatted by ANSI escape sequences with -R, in addition to over‐ struck and non‐content text (but see -Da). • For historical reasons, when a lowercase color selector letter is followed by a numeric color value, the number is not interpreted as an "CSI 38;5" color value as de‐ scribed above, but instead as a 4‐bit CHAR_INFO.Attributes value, between 0 and 15 inclusive (see https://learn.microsoft.com/en‐ us/windows/console/char‐info‐str). To avoid confusion, it is recommended that the equivalent letters rather than numbers be used after a lowercase color selector on MS‐DOS/Windows. • Numeric color values ("CSI 38;5" color) following an up‐ percase color selector letter are not supported on sys‐ tems earlier than Windows 10. • Only a limited set of ANSI escape sequences to set color in the content work correctly. 4‐bit color sequences work, but "CSI 38;5" color sequences do not. • The -Da option makes the behavior of --color more similar to its behavior on non‐MS‐DOS/Windows systems by (1) mak‐ ing lowercase color selector letters not affect text for‐ matted with ANSI escape sequences, and (2) allowing "CSI 38;5" color sequences in the content work by passing them to the terminal (only on Windows 10 and later; on earlier Windows systems, such sequences do not work regardless of the setting of -Da). -e or --quit‐at‐eof Causes less to automatically exit the second time it reaches end‐of‐file. By default, the only way to exit less is via the "q" command. -E or --QUIT‐AT‐EOF Causes less to automatically exit the first time it reaches end‐ of‐file. -f or --force Forces non‐regular files to be opened. (A non‐regular file is a directory or a device special file.) Also suppresses the warn‐ ing message when a binary file is opened. By default, less will refuse to open non‐regular files. Note that some operating sys‐ tems will not allow directories to be read, even if -f is set. -F or --quit‐if‐one‐screen Causes less to automatically exit if the entire file can be dis‐ played on the first screen. -g or --hilite‐search Normally, less will highlight ALL strings which match the last search command. The -g option changes this behavior to high‐ light only the particular string which was found by the last search command. This can cause less to run somewhat faster than the default. -G or --HILITE‐SEARCH The -G option suppresses all highlighting of strings found by search commands. -hn or --max‐back‐scroll=n Specifies a maximum number of lines to scroll backward. If it is necessary to scroll backward more than n lines, the screen is repainted in a forward direction instead. (If the terminal does not have the ability to scroll backward, -h0 is implied.) -i or --ignore‐case Causes searches to ignore case; that is, uppercase and lowercase are considered identical. This option is ignored if any upper‐ case letters appear in the search pattern; in other words, if a pattern contains uppercase letters, then that search does not ignore case. -I or --IGNORE‐CASE Like -i, but searches ignore case even if the pattern contains uppercase letters. -jn or --jump‐target=n Specifies a line on the screen where the "target" line is to be positioned. The target line is the line specified by any com‐ mand to search for a pattern, jump to a line number, jump to a file percentage or jump to a tag. The screen line may be speci‐ fied by a number: the top line on the screen is 1, the next is 2, and so on. The number may be negative to specify a line rel‐ ative to the bottom of the screen: the bottom line on the screen is -1, the second to the bottom is -2, and so on. Alternately, the screen line may be specified as a fraction of the height of the screen, starting with a decimal point: .5 is in the middle of the screen, .3 is three tenths down from the first line, and so on. If the line is specified as a fraction, the actual line number is recalculated if the terminal window is resized. If the --header option is used and the target line specified by -j would be obscured by the header, the target line is moved to the first line after the header. While the --header option is ac‐ tive, the -S option is ignored, and lines longer than the screen width are truncated. If any form of the -j option is used, repeated forward searches (invoked with "n" or "N") begin at the line immediately after the target line, and repeated backward searches begin at the target line, unless changed by -a or -A. For example, if "-j4" is used, the target line is the fourth line on the screen, so forward searches begin at the fifth line on the screen. However nonrepeated searches (invoked with "/" or "?") always begin at the start or end of the current screen respectively. -J or --status‐column Displays a status column at the left edge of the screen. The character displayed in the status column may be one of: > The line is chopped with the -S option, and the text that is chopped off beyond the right edge of the screen con‐ tains a match for the current search. < The line is horizontally shifted, and the text that is shifted beyond the left side of the screen contains a match for the current search. = The line is both chopped and shifted, and there are matches beyond both sides of the screen. * There are matches in the visible part of the line but none to the right or left of it. a‐z, A‐Z The line has been marked with the corresponding letter via the m command. -kfilename or --lesskey‐file=filename Causes less to open and interpret the named file as a lesskey(1) binary file. Multiple -k options may be specified. If the LESSKEY or LESSKEY_SYSTEM environment variable is set, or if a lesskey file is found in a standard place (see KEY BINDINGS), it is also used as a lesskey file. Note the warning under "--lesskey‐content" below. --lesskey‐src=filename Causes less to open and interpret the named file as a lesskey(1) source file. If the LESSKEYIN or LESSKEYIN_SYSTEM environment variable is set, or if a lesskey source file is found in a stan‐ dard place (see KEY BINDINGS), it is also used as a lesskey source file. Prior to version 582, the lesskey program needed to be run to convert a lesskey source file to a lesskey binary file for less to use. Newer versions of less read the lesskey source file directly and ignore the binary file if the source file exists. Note the warning under "--lesskey‐content" below. --lesskey‐content=text Causes less to interpret the specified text as the contents of a lesskey(1) source file. In the text, lesskey lines may be sepa‐ rated by either newlines as usual, or by semicolons. A literal semicolon may be represented by a backslash followed by a semi‐ colon. Warning: certain environment variables such as LESS, LESSSECURE, LESSCHARSET and others, which are used early in startup, cannot be set in a file specified by a command line option (--lesskey, --lesskey‐src or --lesskey‐content). When using a lesskey file to set environment variables, it is safer to use the default lesskey file, or to specify the file using the LESSKEYIN or LESSKEY_CONTENT environment variables rather than using a com‐ mand line option. -K or --quit‐on‐intr Causes less to exit immediately (with status 2) when an inter‐ rupt character (usually ^C) is typed. Normally, an interrupt character causes less to stop whatever it is doing and return to its command prompt. Note that use of this option makes it im‐ possible to return to the command prompt from the "F" command. -L or --no‐lessopen Ignore the LESSOPEN environment variable (see the INPUT PRE‐ PROCESSOR section below). This option can be set from within less, but it will apply only to files opened subsequently, not to the file which is currently open. -m or --long‐prompt Causes less to prompt verbosely (like more(1)), with the percent into the file. By default, less prompts with a colon. -M or --LONG‐PROMPT Causes less to prompt even more verbosely than more(1). -n or --line‐numbers Suppresses line numbers. The default (to use line numbers) may cause less to run more slowly in some cases, especially with a very large input file. Suppressing line numbers with the -n op‐ tion will avoid this problem. Using line numbers means: the line number will be displayed in the verbose prompt and in the = command, and the v command will pass the current line number to the editor (see also the discussion of LESSEDIT in PROMPTS be‐ low). -N or --LINE‐NUMBERS Causes a line number to be displayed at the beginning of each line in the display. -ofilename or --log‐file=filename Causes less to copy its input to the named file as it is being viewed. This applies only when the input file is a pipe, not an ordinary file. If the file already exists, less will ask for confirmation before overwriting it. -Ofilename or --LOG‐FILE=filename The -O option is like -o, but it will overwrite an existing file without asking for confirmation. If no log file has been specified, the -o and -O options can be used from within less to specify a log file. Without a file name, they will simply report the name of the log file. The "s" command is equivalent to specifying -o from within less. -ppattern or --pattern=pattern The -p option on the command line is equivalent to specifying +/pattern; that is, it tells less to start at the first occur‐ rence of pattern in the file. -Pprompt or --prompt=prompt Provides a way to tailor the three prompt styles to your own preference. This option would normally be put in the LESS envi‐ ronment variable, rather than being typed in with each less com‐ mand. Such an option must either be the last option in the LESS variable, or be terminated by a dollar sign. -Ps followed by a string changes the default (short) prompt to that string. -Pm changes the medium (-m) prompt. -PM changes the long (-M) prompt. -Ph changes the prompt for the help screen. -P= changes the message printed by the = command. -Pw changes the message printed while waiting for data (in the "F" command). All prompt strings consist of a sequence of letters and special escape sequences. See the section on PROMPTS for more details. -q or --quiet or --silent Causes moderately "quiet" operation: the terminal bell is not rung if an attempt is made to scroll past the end of the file or before the beginning of the file. If the terminal has a "visual bell", it is used instead. The bell will be rung on certain other errors, such as typing an invalid character. The default is to ring the terminal bell in all such cases. -Q or --QUIET or --SILENT Causes totally "quiet" operation: the terminal bell is never rung. If the terminal has a "visual bell", it is used in all cases where the terminal bell would have been rung. -r or --raw‐control‐chars Causes "raw" control characters to be displayed. The default is to display control characters using the caret notation; for ex‐ ample, a control‐A (octal 001) is displayed as "^A" (with some exceptions as described under the -U option). Warning: when the -r option is used, less cannot keep track of the actual appear‐ ance of the screen (since this depends on how the screen re‐ sponds to each type of control character). Thus, various dis‐ play problems may result, such as long lines being split in the wrong place. USE OF THE -r OPTION IS NOT RECOMMENDED. -R or --RAW‐CONTROL‐CHARS Like -r, but only ANSI "color" escape sequences and OSC 8 hyper‐ link sequences are output in "raw" form. Unlike -r, the screen appearance is maintained correctly, provided that there are no escape sequences in the file other than these types of escape sequences. Color escape sequences are only supported when the color is changed within one line, not across lines. In other words, the beginning of each line is assumed to be normal (non‐ colored), regardless of any escape sequences in previous lines. For the purpose of keeping track of screen appearance, these es‐ cape sequences are assumed to not move the cursor. OSC 8 hyperlinks are sequences of the form: ESC ] 8 ; ... \7 The terminating sequence may be either a BEL character (\7) or the two‐character sequence "ESC \". ANSI color escape sequences are sequences of the form: ESC [ ... m where the "..." is zero or more color specification characters. You can make less think that characters other than "m" can end ANSI color escape sequences by setting the environment variable LESSANSIENDCHARS to the list of characters which can end a color escape sequence. And you can make less think that characters other than the standard ones may appear between the ESC and the m by setting the environment variable LESSANSIMIDCHARS to the list of characters which can appear. -s or --squeeze‐blank‐lines Causes consecutive blank lines to be squeezed into a single blank line. This is useful when viewing nroff output. -S or --chop‐long‐lines Causes lines longer than the screen width to be chopped (trun‐ cated) rather than wrapped. That is, the portion of a long line that does not fit in the screen width is not displayed until you press RIGHT‐ARROW. The default is to wrap long lines; that is, display the remainder on the next line. See also the --wordwrap option. -ttag or --tag=tag The -t option, followed immediately by a TAG, will edit the file containing that tag. For this to work, tag information must be available; for example, there may be a file in the current di‐ rectory called "tags", which was previously built by ctags(1) or an equivalent command. If the environment variable LESSGLOBALT‐ AGS is set, it is taken to be the name of a command compatible with global(1), and that command is executed to find the tag. (See http://www.gnu.org/software/global/global.html). The -t option may also be specified from within less (using the - com‐ mand) as a way of examining a new file. The command ":t" is equivalent to specifying -t from within less. -Ttagsfile or --tag‐file=tagsfile Specifies a tags file to be used instead of "tags". -u or --underline‐special Causes backspaces and carriage returns to be treated as print‐ able characters; that is, they are sent to the terminal when they appear in the input. -U or --UNDERLINE‐SPECIAL Causes backspaces, tabs, carriage returns and "formatting char‐ acters" (as defined by Unicode) to be treated as control charac‐ ters; that is, they are handled as specified by the -r option. By default, if neither -u nor -U is given, backspaces which ap‐ pear adjacent to an underscore character are treated specially: the underlined text is displayed using the terminal’s hardware underlining capability. Also, backspaces which appear between two identical characters are treated specially: the overstruck text is printed using the terminal’s hardware boldface capabili‐ ty. Other backspaces are deleted, along with the preceding character. Carriage returns immediately followed by a newline are deleted. Other carriage returns are handled as specified by the -r option. Unicode formatting characters, such as the Byte Order Mark, are sent to the terminal. Text which is overstruck or underlined can be searched for if neither -u nor -U is in ef‐ fect. See also the --proc‐backspace, --proc‐tab, and --proc‐return op‐ tions. -V or --version Displays the version number of less. -w or --hilite‐unread Temporarily highlights the first "new" line after a forward movement of a full page. The first "new" line is the line imme‐ diately following the line previously at the bottom of the screen. Also highlights the target line after a g or p command. The highlight is removed at the next command which causes move‐ ment. If the --status‐line option is in effect, the entire line (the width of the screen) is highlighted. Otherwise, only the text in the line is highlighted, unless the -J option is in ef‐ fect, in which case only the status column is highlighted. -W or --HILITE‐UNREAD Like -w, but temporarily highlights the first new line after any forward movement command larger than one line. -xn,... or --tabs=n,... Sets tab stops. If only one n is specified, tab stops are set at multiples of n. If multiple values separated by commas are specified, tab stops are set at those positions, and then con‐ tinue with the same spacing as the last two. For example, "‐x9,17" will set tabs at positions 9, 17, 25, 33, etc. The de‐ fault for n is 8. -X or --no‐init Disables sending the termcap initialization and deinitialization strings to the terminal. This is sometimes desirable if the deinitialization string does something unnecessary, like clear‐ ing the screen. -yn or --max‐forw‐scroll=n Specifies a maximum number of lines to scroll forward. If it is necessary to scroll forward more than n lines, the screen is re‐ painted instead. The -c or -C option may be used to repaint from the top of the screen if desired. By default, any forward movement causes scrolling. -zn or --window=n or -n Changes the default scrolling window size to n lines. The de‐ fault is one screenful. The z and w commands can also be used to change the window size. The "z" may be omitted for compati‐ bility with some versions of more(1). If the number n is nega‐ tive, it indicates n lines less than the current screen size. For example, if the screen is 24 lines, -z-4 sets the scrolling window to 20 lines. If the screen is resized to 40 lines, the scrolling window automatically changes to 36 lines. -"cc or --quotes=cc Changes the filename quoting character. This may be necessary if you are trying to name a file which contains both spaces and quote characters. Followed by a single character, this changes the quote character to that character. Filenames containing a space should then be surrounded by that character rather than by double quotes. Followed by two characters, changes the open quote to the first character, and the close quote to the second character. Filenames containing a space should then be preceded by the open quote character and followed by the close quote character. Note that even after the quote characters are changed, this option remains -" (a dash followed by a double quote). -~ or --tilde Normally lines after end of file are displayed as a single tilde (~). This option causes lines after end of file to be displayed as blank lines. -# or --shift Specifies the default number of positions to scroll horizontally in the RIGHTARROW and LEFTARROW commands. If the number speci‐ fied is zero, it sets the default number of positions to one half of the screen width. Alternately, the number may be speci‐ fied as a fraction of the width of the screen, starting with a decimal point: .5 is half of the screen width, .3 is three tenths of the screen width, and so on. If the number is speci‐ fied as a fraction, the actual number of scroll positions is re‐ calculated if the terminal window is resized. --exit‐follow‐on‐close When using the "F" command on a pipe, less will automatically stop waiting for more data when the input side of the pipe is closed. --file‐size If --file‐size is specified, less will determine the size of the file immediately after opening the file. Then the "=" command will display the number of lines in the file. Normally this is not done, because it can be slow if the input file is non‐seek‐ able (such as a pipe) and is large. --follow‐name Normally, if the input file is renamed while an F command is ex‐ ecuting, less will continue to display the contents of the orig‐ inal file despite its name change. If --follow‐name is speci‐ fied, during an F command less will periodically attempt to re‐ open the file by name. If the reopen succeeds and the file is a different file from the original (which means that a new file has been created with the same name as the original (now re‐ named) file), less will display the contents of that new file. --header=L,C,N Sets the number of header lines and columns displayed on the screen. The number of header lines is set to L. If L is 0, header lines are disabled. If L is empty or missing, the number of header lines is unchanged. The number of header columns is set to C. If C is 0, header columns are disabled. If C is emp‐ ty or missing, the number of header columns is unchanged. The first header line is set to line number N in the file. If N is empty or missing, it is taken to be the number of the line cur‐ rently displayed in the first line of the screen (if the --head‐ er command has been issued from within less), or 1 (if the --header option has been given on the command line). The spe‐ cial form "--header=-" disables header lines and header columns, and is equivalent to "--header=0,0". When L is nonzero, the first L lines at the top of the screen are replaced with the L lines of the file beginning at line N, regardless of what part of the file is being viewed. When head‐ er lines are displayed, any file contents before the header line cannot be viewed. When C is nonzero, the first C characters displayed at the beginning of each line are replaced with the first C characters of the line, even if the rest of the line is scrolled horizontally. --incsearch Subsequent search commands will be "incremental"; that is, less will advance to the next line containing the search pattern as each character of the pattern is typed in. --intr=c Use the character c instead of ^X to interrupt a read when the "Waiting for data" message is displayed. c must be an ASCII character; that is, one with a value between 1 and 127 inclu‐ sive. A caret followed by a single character can be used to specify a control character. --line‐num‐width=n Sets the minimum width of the line number field when the -N op‐ tion is in effect to n characters. The default is 7. --match‐shift=n When -S is in effect, if a search match is not visible because it is shifted to the left or right of the currently visible screen, the text will horizontally shift to ensure that the search match is visible. This option selects the column in which the first character of the search match will be placed af‐ ter the shift. In other words, there will be n characters visi‐ ble to the left of the search match. Alternately, the number may be specified as a fraction of the width of the screen, starting with a decimal point: .5 is half of the screen width, .3 is three tenths of the screen width, and so on. If the number is specified as a fraction, the actual number of scroll positions is recalculated if the terminal win‐ dow is resized. --modelines=n Before displaying a file, less will read the first n lines to try to find a vim‐compatible modeline. If n is zero, less does not try to find modelines. By using a modeline, the file itself can specify the tab stops that should be used when viewing it. A modeline contains, anywhere in the line, a program name ("vi", "vim", "ex", or "less"), followed by a colon, possibly followed by the word "set", and finally followed by zero or more option settings. If the word "set" is used, option settings are sepa‐ rated by spaces, and end at the first colon. If the word "set" is not used, option settings may be separated by either spaces or colons. The word "set" is required if the program name is "less" but optional if any of the other three names are used. If any option setting is of the form "tabstop=n" or "ts=n", then tab stops are automatically set as if --tabs=n had been given. See the --tabs description for acceptable values of n. --mouse Enables mouse input: scrolling the mouse wheel down moves for‐ ward in the file, scrolling the mouse wheel up moves backwards in the file, left‐click sets the "#" mark to the line where the mouse is clicked, and right‐click (or any other) returns to the "#" mark position. If a left‐click is performed with the mouse cursor on an OSC 8 hyperlink, the hyperlink is selected as if by the ^O^N command. If a left‐click is performed with the mouse cursor on an OSC 8 hyperlink which is already selected, the hy‐ perlink is opened as if by the ^O^O command. The number of lines to scroll when the wheel is moved can be set by the --wheel‐lines option. Mouse input works only on terminals which support X11 mouse reporting, and on the Windows version of less. --MOUSE Like --mouse, except the direction scrolled on mouse wheel move‐ ment is reversed. --no‐keypad Disables sending the keypad initialization and deinitialization strings to the terminal. This is sometimes useful if the keypad strings make the numeric keypad behave in an undesirable manner. --no‐histdups This option changes the behavior so that if a search string or file name is typed in, and the same string is already in the history list, the existing copy is removed from the history list before the new one is added. Thus, a given string will appear only once in the history list. Normally, a string may appear multiple times. --no‐number‐headers Header lines (defined via the --header option) are not assigned line numbers. Line number 1 is assigned to the first line after any header lines. --no‐search‐header‐lines Searches do not include header lines, but still include header columns. --no‐search‐header‐columns Searches do not include header columns, but still include header lines. --no‐search‐headers Searches do not include header lines or header columns. --no‐vbell Disables the terminal’s visual bell. --proc‐backspace If set, backspaces are handled as if neither the -u option nor the -U option were set. That is, a backspace adjacent to an un‐ derscore causes text to be displayed in underline mode, and a backspace between identical characters cause text to be dis‐ played in boldface mode. This option overrides the -u and -U options, so that display of backspaces can be controlled sepa‐ rate from tabs and carriage returns. If not set, backspace dis‐ play is controlled by the -u and -U options. --PROC‐BACKSPACE If set, backspaces are handled as if the -U option were set; that is backspaces are treated as control characters. --proc‐return If set, carriage returns are handled as if neither the -u option nor the -U option were set. That is, a carriage return immedi‐ ately before a newline is deleted. This option overrides the -u and -U options, so that display of carriage returns can be con‐ trolled separate from that of backspaces and tabs. If not set, carriage return display is controlled by the -u and -U options. --PROC‐RETURN If set, carriage returns are handled as if the -U option were set; that is carriage returns are treated as control characters. --proc‐tab If set, tabs are handled as if the -U option were not set. That is, tabs are expanded to spaces. This option overrides the -U option, so that display of tabs can be controlled separate from that of backspaces and carriage returns. If not set, tab dis‐ play is controlled by the -U options. --PROC‐TAB If set, tabs are handled as if the -U option were set; that is tabs are treated as control characters. --redraw‐on‐quit When quitting, after sending the terminal deinitialization string, redraws the entire last screen. On terminals whose ter‐ minal deinitialization string causes the terminal to switch from an alternate screen, this makes the last screenful of the cur‐ rent file remain visible after less has quit. --rscroll=c This option changes the character used to mark truncated lines. It may begin with a two‐character attribute indicator like LESS‐ BINFMT does. If there is no attribute indicator, standout is used. If set to "-", truncated lines are not marked. --save‐marks Save marks in the history file, so marks are retained across different invocations of less. --search‐options=... Sets default search modifiers. The value is a string of one or more of the characters E, F, K, N, R or W. Setting any of these has the same effect as typing that control character at the be‐ ginning of every search pattern. For example, setting --search‐ options=W is the same as typing ^W at the beginning of every pattern. The value may also contain a digit between 1 and 5, which has the same effect as typing ^S followed by that digit at the beginning of every search pattern. The value "‐" disables all default search modifiers. --show‐preproc‐errors If a preprocessor produces data, then exits with a non‐zero exit code, less will display a warning. --status‐col‐width=n Sets the width of the status column when the -J option is in ef‐ fect. The default is 2 characters. --status‐line If a line is marked, the entire line (rather than just the sta‐ tus column) is highlighted. Also lines highlighted due to the -w option will have the entire line highlighted. If --use‐color is set, the line is colored rather than highlighted. --use‐backslash This option changes the interpretations of options which follow this one. After the --use‐backslash option, any backslash in an option string is removed and the following character is taken literally. This allows a dollar sign to be included in option strings. --use‐color Enables colored text in various places. The -D option can be used to change the colors. Colored text works only if the ter‐ minal supports ANSI color escape sequences (as defined in https://www.ecma‐international.org/publications‐and‐ standards/standards/ecma‐48). --wheel‐lines=n Set the number of lines to scroll when the mouse wheel is scrolled and the --mouse or --MOUSE option is in effect. The default is 1 line. --wordwrap When the -S option is not in use, wrap each line at a space or tab if possible, so that a word is not split between two lines. The default is to wrap at any character. -- A command line argument of "--" marks the end of option argu‐ ments. Any arguments following this are interpreted as file‐ names. This can be useful when viewing a file whose name begins with a "-" or "+". + If a command line option begins with +, the remainder of that option is taken to be an initial command to less. For example, +G tells less to start at the end of the file rather than the beginning, and +/xyz tells it to start at the first occurrence of "xyz" in the file. As a special case, + acts like +g; that is, it starts the display at the specified line number (however, see the caveat under the "g" command above). If the option starts with ++, the initial command applies to every file being viewed, not just the first one. The + command described previously may also be used to set (or change) an ini‐ tial command for every file. LINE EDITING When entering a command line at the bottom of the screen (for example, a filename for the :e command, or the pattern for a search command), certain keys can be used to manipulate the command line. Most commands have an alternate form in [ brackets ] which can be used if a key does not exist on a particular keyboard. (Note that the forms beginning with ESC do not work in some MS‐DOS and Windows systems because ESC is the line erase character.) Any of these special keys may be entered literally by preceding it with the "literal" character, either ^V or ^A. A backslash itself may also be entered literally by entering two backslashes. LEFTARROW [ ESC‐h ] Move the cursor one space to the left. RIGHTARROW [ ESC‐l ] Move the cursor one space to the right. ^LEFTARROW [ ESC‐b or ESC‐LEFTARROW ] (That is, CONTROL and LEFTARROW simultaneously.) Move the cur‐ sor one word to the left. ^RIGHTARROW [ ESC‐w or ESC‐RIGHTARROW ] (That is, CONTROL and RIGHTARROW simultaneously.) Move the cur‐ sor one word to the right. HOME [ ESC‐0 ] Move the cursor to the beginning of the line. END [ ESC‐$ ] Move the cursor to the end of the line. BACKSPACE Delete the character to the left of the cursor, or cancel the command if the command line is empty. DELETE or [ ESC‐x ] Delete the character under the cursor. ^BACKSPACE [ ESC‐BACKSPACE ] (That is, CONTROL and BACKSPACE simultaneously.) Delete the word to the left of the cursor. ^DELETE [ ESC‐X or ESC‐DELETE ] (That is, CONTROL and DELETE simultaneously.) Delete the word under the cursor. UPARROW [ ESC‐k ] Retrieve the previous command line. If you first enter some text and then press UPARROW, it will retrieve the previous com‐ mand which begins with that text. DOWNARROW [ ESC‐j ] Retrieve the next command line. If you first enter some text and then press DOWNARROW, it will retrieve the next command which begins with that text. TAB Complete the partial filename to the left of the cursor. If it matches more than one filename, the first match is entered into the command line. Repeated TABs will cycle thru the other matching filenames. If the completed filename is a directory, a "/" is appended to the filename. (On MS‐DOS and Windows sys‐ tems, a "\" is appended.) The environment variable LESSSEPARA‐ TOR can be used to specify a different character to append to a directory name. BACKTAB [ ESC‐TAB ] Like, TAB, but cycles in the reverse direction thru the matching filenames. ^L Complete the partial filename to the left of the cursor. If it matches more than one filename, all matches are entered into the command line (if they fit). ^U (Unix and OS/2) or ESC (MS‐DOS and Windows) Delete the entire command line, or cancel the command if the command line is empty. If you have changed your line‐kill char‐ acter in Unix to something other than ^U, that character is used instead of ^U. ^G Delete the entire command line and return to the main prompt. KEY BINDINGS You may define your own less commands by creating a lesskey source file. This file specifies a set of command keys and an action associ‐ ated with each key. You may also change the line‐editing keys (see LINE EDITING), and set environment variables used by less. See the lesskey(1) manual page for details about the file format. If the environment variable LESSKEYIN is set, less uses that as the name of the lesskey source file. Otherwise, less looks in a standard place for the lesskey source file: On Unix systems, less looks for a lesskey file called "$XDG_CONFIG_HOME/lesskey" or "$HOME/.con‐ fig/lesskey" or "$HOME/.lesskey". On MS‐DOS and Windows systems, less looks for a lesskey file called "$HOME/_lesskey", and if it is not found there, then looks for a lesskey file called "_lesskey" in any di‐ rectory specified in the PATH environment variable. On OS/2 systems, less looks for a lesskey file called "$HOME/lesskey.ini", and if it is not found, then looks for a lesskey file called "lesskey.ini" in any directory specified in the INIT environment variable, and if it not found there, then looks for a lesskey file called "lesskey.ini" in any directory specified in the PATH environment variable. A system‐wide lesskey source file may also be set up to provide key bindings. If a key is defined in both a local lesskey file and in the system‐wide file, key bindings in the local file take precedence over those in the system‐wide file. If the environment variable LESSKEYIN_SYSTEM is set, less uses that as the name of the system‐wide lesskey file. Otherwise, less looks in a standard place for the sys‐ tem‐wide lesskey file: On Unix systems, the system‐wide lesskey file is /usr/local/etc/syslesskey. (However, if less was built with a differ‐ ent sysconf directory than /usr/local/etc, that directory is where the sysless file is found.) On MS‐DOS and Windows systems, the system‐wide lesskey file is c:\_syslesskey. On OS/2 systems, the system‐wide lesskey file is c:\syslesskey.ini. Previous versions of less (before v582) used lesskey files with a bina‐ ry format, produced by the lesskey program. It is no longer necessary to use the lesskey program. INPUT PREPROCESSOR You may define an "input preprocessor" for less. Before less opens a file, it first gives your input preprocessor a chance to modify the way the contents of the file are displayed. An input preprocessor is sim‐ ply an executable program (or shell script), which writes the contents of the file to a different file, called the replacement file. The con‐ tents of the replacement file are then displayed in place of the con‐ tents of the original file. However, it will appear to the user as if the original file is opened; that is, less will display the original filename as the name of the current file. An input preprocessor receives one command line argument, the original filename, as entered by the user. It should create the replacement file, and when finished, print the name of the replacement file to its standard output. If the input preprocessor does not output a replace‐ ment filename, less uses the original file, as normal. The input pre‐ processor is not called when viewing standard input. To set up an in‐ put preprocessor, set the LESSOPEN environment variable to a command line which will invoke your input preprocessor. This command line should include one occurrence of the string "%s", which will be re‐ placed by the filename when the input preprocessor command is invoked. When less closes a file opened in such a way, it will call another pro‐ gram, called the input postprocessor, which may perform any desired clean‐up action (such as deleting the replacement file created by LESSOPEN). This program receives two command line arguments, the orig‐ inal filename as entered by the user, and the name of the replacement file. To set up an input postprocessor, set the LESSCLOSE environment variable to a command line which will invoke your input postprocessor. It may include two occurrences of the string "%s"; the first is re‐ placed with the original name of the file and the second with the name of the replacement file, which was output by LESSOPEN. For example, on many Unix systems, these two scripts will allow you to keep files in compressed format, but still let less view them directly: lessopen.sh: #! /bin/sh case "$1" in *.Z) TEMPFILE=$(mktemp) uncompress -c $1 >$TEMPFILE 2>/dev/null if [ -s $TEMPFILE ]; then echo $TEMPFILE else rm -f $TEMPFILE fi ;; esac lessclose.sh: #! /bin/sh rm $2 To use these scripts, put them both where they can be executed and set LESSOPEN="lessopen.sh %s", and LESSCLOSE="lessclose.sh %s %s". More complex LESSOPEN and LESSCLOSE scripts may be written to accept other types of compressed files, and so on. It is also possible to set up an input preprocessor to pipe the file data directly to less, rather than putting the data into a replacement file. This avoids the need to decompress the entire file before start‐ ing to view it. An input preprocessor that works this way is called an input pipe. An input pipe, instead of writing the name of a replace‐ ment file on its standard output, writes the entire contents of the re‐ placement file on its standard output. If the input pipe does not write any characters on its standard output, then there is no replace‐ ment file and less uses the original file, as normal. To use an input pipe, make the first character in the LESSOPEN environment variable a vertical bar (|) to signify that the input preprocessor is an input pipe. As with non‐pipe input preprocessors, the command string must contain one occurrence of %s, which is replaced with the filename of the input file. For example, on many Unix systems, this script will work like the pre‐ vious example scripts: lesspipe.sh: #! /bin/sh case "$1" in *.Z) uncompress -c $1 2>/dev/null ;; *) exit 1 ;; esac exit $? To use this script, put it where it can be executed and set LESSOPEN="|lesspipe.sh %s". Note that a preprocessor cannot output an empty file, since that is in‐ terpreted as meaning there is no replacement, and the original file is used. To avoid this, if LESSOPEN starts with two vertical bars, the exit status of the script determines the behavior when the output is empty. If the output is empty and the exit status is zero, the empty output is considered to be replacement text. If the output is empty and the exit status is nonzero, the original file is used. For compat‐ ibility with previous versions of less, if LESSOPEN starts with only one vertical bar, the exit status of the preprocessor is ignored. When an input pipe is used, a LESSCLOSE postprocessor can be used, but it is usually not necessary since there is no replacement file to clean up. In this case, the replacement file name passed to the LESSCLOSE postprocessor is "-". For compatibility with previous versions of less, the input preproces‐ sor or pipe is not used if less is viewing standard input. However, if the first character of LESSOPEN is a dash (-), the input preprocessor is used on standard input as well as other files. In this case, the dash is not considered to be part of the preprocessor command. If standard input is being viewed, the input preprocessor is passed a file name consisting of a single dash. Similarly, if the first two charac‐ ters of LESSOPEN are vertical bar and dash (|-) or two vertical bars and a dash (||-), the input pipe is used on standard input as well as other files. Again, in this case the dash is not considered to be part of the input pipe command. NATIONAL CHARACTER SETS There are three types of characters in the input file: normal characters can be displayed directly to the screen. control characters should not be displayed directly, but are expected to be found in ordinary text files (such as backspace and tab). binary characters should not be displayed directly and are not expected to be found in text files. A "character set" is simply a description of which characters are to be considered normal, control, and binary. The LESSCHARSET environment variable may be used to select a character set. Possible values for LESSCHARSET are: ascii BS, TAB, NL, CR, and formfeed are control characters, all chars with values between 32 and 126 are normal, and all others are binary. iso8859 Selects an ISO 8859 character set. This is the same as ASCII, except characters between 160 and 255 are treated as normal characters. latin1 Same as iso8859. latin9 Same as iso8859. dos Selects a character set appropriate for MS‐DOS. ebcdic Selects an EBCDIC character set. IBM‐1047 Selects an EBCDIC character set used by OS/390 Unix Services. This is the EBCDIC analogue of latin1. You get similar results by setting either LESSCHARSET=IBM‐1047 or LC_CTYPE=en_US in your environment. koi8‐r Selects a Russian character set. next Selects a character set appropriate for NeXT computers. utf‐8 Selects the UTF‐8 encoding of the ISO 10646 character set. UTF‐8 is special in that it supports multi‐byte characters in the input file. It is the only character set that supports mul‐ ti‐byte characters. windows Selects a character set appropriate for Microsoft Windows (cp 1252). In rare cases, it may be desired to tailor less to use a character set other than the ones definable by LESSCHARSET. In this case, the envi‐ ronment variable LESSCHARDEF can be used to define a character set. It should be set to a string where each character in the string represents one character in the character set. The character "." is used for a normal character, "c" for control, and "b" for binary. A decimal num‐ ber may be used for repetition. For example, "bccc4b." would mean character 0 is binary, 1, 2 and 3 are control, 4, 5, 6 and 7 are bina‐ ry, and 8 is normal. All characters after the last are taken to be the same as the last, so characters 9 through 255 would be normal. (This is an example, and does not necessarily represent any real character set.) This table shows the value of LESSCHARDEF which is equivalent to each of the possible values for LESSCHARSET: ascii 8bcccbcc18b95.b dos 8bcccbcc12bc5b95.b. ebcdic 5bc6bcc7bcc41b.9b7.9b5.b..8b6.10b6.b9.7b 9.8b8.17b3.3b9.7b9.8b8.6b10.b.b.b. IBM‐1047 4cbcbc3b9cbccbccbb4c6bcc5b3cbbc4bc4bccbc 191.b iso8859 8bcccbcc18b95.33b. koi8‐r 8bcccbcc18b95.b128. latin1 8bcccbcc18b95.33b. next 8bcccbcc18b95.bb125.bb If neither LESSCHARSET nor LESSCHARDEF is set, but any of the strings "UTF‐8", "UTF8", "utf‐8" or "utf8" is found in the LC_ALL, LC_CTYPE or LANG environment variables, then the default character set is utf‐8. If that string is not found, but your system supports the setlocale in‐ terface, less will use setlocale to determine the character set. set‐ locale is controlled by setting the LANG or LC_CTYPE environment vari‐ ables. Finally, if the setlocale interface is also not available, the default character set is utf‐8. Control and binary characters are displayed in standout (reverse video). Each such character is displayed in caret notation if possible (e.g. ^A for control‐A). Caret notation is used only if inverting the 0100 bit results in a normal printable character. Otherwise, the char‐ acter is displayed as a hex number in angle brackets. This format can be changed by setting the LESSBINFMT environment variable. LESSBINFMT may begin with a "*" and one character to select the display attribute: "*k" is blinking, "*d" is bold, "*u" is underlined, "*s" is standout, and "*n" is normal. If LESSBINFMT does not begin with a "*", normal attribute is assumed. The remainder of LESSBINFMT is a string which may include one printf‐style escape sequence (a % followed by x, X, o, d, etc.). For example, if LESSBINFMT is "*u[%x]", binary characters are displayed in underlined hexadecimal surrounded by brackets. The default if no LESSBINFMT is specified is "*s<%02X>". Warning: the re‐ sult of expanding the character via LESSBINFMT must be less than 31 characters. When the character set is utf‐8, the LESSUTFBINFMT environment variable acts similarly to LESSBINFMT but it applies to Unicode code points that were successfully decoded but are unsuitable for display (e.g., unas‐ signed code points). Its default value is "". Note that LESSUTFBINFMT and LESSBINFMT share their display attribute setting ("*x") so specifying one will affect both; LESSUTFBINFMT is read after LESSBINFMT so its setting, if any, will have priority. Problematic octets in a UTF‐8 file (octets of a truncated sequence, octets of a complete but non‐shortest form sequence, invalid octets, and stray trailing octets) are displayed individually using LESSBINFMT so as to facilitate diagnostic of how the UTF‐8 file is ill‐formed. When the character set is utf‐8, in rare cases it may be desirable to override the Unicode definition of the type of certain characters. For example, characters in a Private Use Area are normally treated as con‐ trol characters, but if you are using a custom font with printable characters in that range, it may be desirable to tell less to treat such characters as printable. This can be done by setting the LESSUT‐ FCHARDEF environment variable to a comma‐separated list of character type definitions. Each character type definition consists of either one hexadecimal codepoint or a pair of codepoints separated by a dash, followed by a colon and a type character. Each hexadecimal codepoint may optionally be preceded by a "U" or "U+". If a pair of codepoints is given, the type is set for all characters inclusively between the two values. If there are multiple comma‐separated codepoint values, they must be in ascending numerical order. The type character may be one of: p A normal printable character. w A wide (2‐space) printable character. b A binary (non‐printable) character. c A composing (zero width) character. For example, setting LESSUTFCHARDEF to E000‐F8FF:p,F0000‐FFFFD:p,100000‐10FFFD:p would make all Private Use Area characters be treated as printable. PROMPTS The -P option allows you to tailor the prompt to your preference. The string given to the -P option replaces the specified prompt string. Certain characters in the string are interpreted specially. The prompt mechanism is rather complicated to provide flexibility, but the ordi‐ nary user need not understand the details of constructing personalized prompt strings. A percent sign followed by a single character is expanded according to what the following character is. (References to the input file size below refer to the preprocessed size, if an input preprocessor is being used.) %bX Replaced by the byte offset into the current input file. The b is followed by a single character (shown as X above) which spec‐ ifies the line whose byte offset is to be used. If the charac‐ ter is a "t", the byte offset of the top line in the display is used, an "m" means use the middle line, a "b" means use the bot‐ tom line, a "B" means use the line just after the bottom line, and a "j" means use the "target" line, as specified by the -j option. %B Replaced by the size of the current input file. %c Replaced by the column number of the text appearing in the first column of the screen. %dX Replaced by the page number of a line in the input file. The line to be used is determined by the X, as with the %b option. %D Replaced by the number of pages in the input file, or equiva‐ lently, the page number of the last line in the input file. %E Replaced by the name of the editor (from the VISUAL environment variable, or the EDITOR environment variable if VISUAL is not defined). See the discussion of the LESSEDIT feature below. %f Replaced by the name of the current input file. %F Replaced by the last component of the name of the current input file. %g Replaced by the shell‐escaped name of the current input file. This is useful when the expanded string will be used in a shell command, such as in LESSEDIT. %i Replaced by the index of the current file in the list of input files. %lX Replaced by the line number of a line in the input file. The line to be used is determined by the X, as with the %b option. %L Replaced by the line number of the last line in the input file. %m Replaced by the total number of input files. %o Replaced by the URI of the currently selected OSC 8 hyperlink, or a question mark if no hyperlink is selected. This is used by OSC 8 handlers as explained in the ^O^O command description. %pX Replaced by the percent into the current input file, based on byte offsets. The line used is determined by the X as with the %b option. %PX Replaced by the percent into the current input file, based on line numbers. The line used is determined by the X as with the %b option. %s Same as %B. %t Causes any trailing spaces to be removed. Usually used at the end of the string, but may appear anywhere. %T Normally expands to the word "file". However if viewing files via a tags list using the -t option, it expands to the word "tag". %x Replaced by the name of the next input file in the list. If any item is unknown (for example, the file size if input is a pipe), a question mark is printed instead. The format of the prompt string can be changed depending on certain conditions. A question mark followed by a single character acts like an "IF": depending on the following character, a condition is evaluat‐ ed. If the condition is true, any characters following the question mark and condition character, up to a period, are included in the prompt. If the condition is false, such characters are not included. A colon appearing between the question mark and the period can be used to establish an "ELSE": any characters between the colon and the period are included in the string if and only if the IF condition is false. Condition characters (which follow a question mark) may be: ?a True if any characters have been included in the prompt so far. ?bX True if the byte offset of the specified line is known. ?B True if the size of current input file is known. ?c True if the text is horizontally shifted (%c is not zero). ?dX True if the page number of the specified line is known. ?e True if at end‐of‐file. ?f True if there is an input filename (that is, if input is not a pipe). ?lX True if the line number of the specified line is known. ?L True if the line number of the last line in the file is known. ?m True if there is more than one input file. ?n True if this is the first prompt in a new input file. ?pX True if the percent into the current input file, based on byte offsets, of the specified line is known. ?PX True if the percent into the current input file, based on line numbers, of the specified line is known. ?s Same as "?B". ?x True if there is a next input file (that is, if the current in‐ put file is not the last one). Any characters other than the special ones (question mark, colon, peri‐ od, percent, and backslash) become literally part of the prompt. Any of the special characters may be included in the prompt literally by preceding it with a backslash. Some examples: ?f%f:Standard input. This prompt prints the filename, if known; otherwise the string "Stan‐ dard input". ?f%f .?ltLine %lt:?pt%pt\%:?btByte %bt:‐... This prompt would print the filename, if known. The filename is fol‐ lowed by the line number, if known, otherwise the percent if known, otherwise the byte offset if known. Otherwise, a dash is printed. No‐ tice how each question mark has a matching period, and how the % after the %pt is included literally by escaping it with a backslash. ?n?f%f .?m(%T %i of %m) ..?e(END) ?x‐ Next\: %x..%t This prints the filename if this is the first prompt in a file, fol‐ lowed by the "file N of N" message if there is more than one input file. Then, if we are at end‐of‐file, the string "(END)" is printed followed by the name of the next file, if there is one. Finally, any trailing spaces are truncated. This is the default prompt. For refer‐ ence, here are the defaults for the other two prompts (-m and -M re‐ spectively). Each is broken into two lines here for readability only. ?n?f%f .?m(%T %i of %m) ..?e(END) ?x‐ Next\: %x.: ?pB%pB\%:byte %bB?s/%s...%t ?f%f .?n?m(%T %i of %m) ..?ltlines %lt‐%lb?L/%L. : byte %bB?s/%s. .?e(END) ?x‐ Next\: %x.:?pB%pB\%..%t And here is the default message produced by the = command: ?f%f .?m(%T %i of %m) .?ltlines %lt‐%lb?L/%L. . byte %bB?s/%s. ?e(END) :?pB%pB\%..%t The prompt expansion features are also used for another purpose: if an environment variable LESSEDIT is defined, it is used as the command to be executed when the v command is invoked. The LESSEDIT string is ex‐ panded in the same way as the prompt strings. The default value for LESSEDIT is: %E ?lm+%lm. %g Note that this expands to the editor name, followed by a + and the line number, followed by the shell‐escaped file name. If your editor does not accept the "+linenumber" syntax, or has other differences in invo‐ cation syntax, the LESSEDIT variable can be changed to modify this de‐ fault. SECURITY When the environment variable LESSSECURE is set to 1, less runs in a "secure" mode. In this mode, these features are disabled: edit the edit command (v) examine the examine command (:e) glob metacharacters such as * in filenames, and filename completion (TAB, ^L) history history file lesskey use of lesskey files (‐k and --lesskey‐src) lessopen input preprocessor (LESSOPEN environment variable) logfile log files (s and -o) osc8 opening OSC 8 links (^O^O) pipe the pipe command (|) shell the shell and pshell commands (! and #) stop stopping less via a SIGSTOP signal tags use of tags files (‐t) The LESSSECURE_ALLOW environment variable can be set to a comma‐sepa‐ rated list of names of features which are selectively enabled when LESSSECURE is set. Each feature name is the first word in each line in the above list. A feature name may be abbreviated as long as the ab‐ breviation is unambiguous. For example, if LESSSECURE=1 and LESSSECURE_ALLOW=hist,edit were set, all of the above features would be disabled except for history files and the edit command. Less can also be compiled to be permanently in "secure" mode. In that case, the LESSSECURE and LESSSECURE_ALLOW variables are ignored. COMPATIBILITY WITH MORE If the environment variable LESS_IS_MORE is set to 1, or if the program is invoked via a file link named "more", less behaves (mostly) in con‐ formance with the POSIX more(1) command specification. In this mode, less behaves differently in these ways: The -e option works differently. If the -e option is not set, less be‐ haves as if the -e option were set. If the -e option is set, less be‐ haves as if the -E option were set. The -m option works differently. If the -m option is not set, the medium prompt is used, and it is prefixed with the string "--More--". If the -m option is set, the short prompt is used. The -n option acts like the -z option. The normal behavior of the -n option is unavailable in this mode. The parameter to the -p option is taken to be a less command rather than a search pattern. The LESS environment variable is ignored, and the MORE environment variable is used in its place. ENVIRONMENT VARIABLES Environment variables may be specified either in the system environment as usual, or in a lesskey(1) file. If environment variables are de‐ fined in more than one place, variables defined in a local lesskey file take precedence over variables defined in the system environment, which take precedence over variables defined in the system‐wide lesskey file. COLUMNS Sets the number of columns on the screen. Takes precedence over the number of columns specified by the TERM variable. (But if you have a windowing system which supports TIOCGWINSZ or WIOCGETD, the window system’s idea of the screen size takes precedence over the LINES and COLUMNS environment variables.) EDITOR The name of the editor (used for the v command). HOME Name of the user’s home directory (used to find a lesskey file on Unix and OS/2 systems). HOMEDRIVE, HOMEPATH Concatenation of the HOMEDRIVE and HOMEPATH environment vari‐ ables is the name of the user’s home directory if the HOME vari‐ able is not set (only in the Windows version). INIT Name of the user’s init directory (used to find a lesskey file on OS/2 systems). LANG Language for determining the character set. LC_CTYPE Language for determining the character set. LESS Options which are passed to less automatically. LESSANSIENDCHARS Characters which may end an ANSI color escape sequence (default "m"). LESSANSIMIDCHARS Characters which may appear between the ESC character and the end character in an ANSI color escape sequence (default "0123456789:;[?!"'#%()*+ ". LESSBINFMT Format for displaying non‐printable, non‐control characters. LESSCHARDEF Defines a character set. LESSCHARSET Selects a predefined character set. LESSCLOSE Command line to invoke the (optional) input‐postprocessor. LESSECHO Name of the lessecho program (default "lessecho"). The lessecho program is needed to expand metacharacters, such as * and ?, in filenames on Unix systems. LESSEDIT Editor prototype string (used for the v command). See discus‐ sion under PROMPTS. LESSGLOBALTAGS Name of the command used by the -t option to find global tags. Normally should be set to "global" if your system has the glob‐ al(1) command. If not set, global tags are not used. LESSHISTFILE Name of the history file used to remember search commands and shell commands between invocations of less. If set to "-" or "/dev/null", a history file is not used. The default depends on the operating system, but is usually: Linux and Unix "$XDG_STATE_HOME/lesshst" or "$HOME/.local/state/lesshst" or "$XDG_DATA_HOME/lesshst" or "$HOME/.lesshst". Windows and MS‐DOS "$HOME/_lesshst". OS/2 "$HOME/lesshst.ini" or "$INIT/lesshst.ini". LESSHISTSIZE The maximum number of commands to save in the history file. The default is 100. LESSKEYIN Name of the default lesskey source file. LESSKEY Name of the default lesskey binary file. (Not used if "$LESSKEYIN" exists.) LESSKEY_CONTENT The value is parsed as if it were the parameter of a --lesskey‐ content option. LESSKEYIN_SYSTEM Name of the default system‐wide lesskey source file. LESSKEY_SYSTEM Name of the default system‐wide lesskey binary file. (Not used if "$LESSKEYIN_SYSTEM" exists.) LESSMETACHARS List of characters which are considered "metacharacters" by the shell. LESSMETAESCAPE Prefix which less will add before each metacharacter in a com‐ mand sent to the shell. If LESSMETAESCAPE is an empty string, commands containing metacharacters will not be passed to the shell. LESSOPEN Command line to invoke the (optional) input‐preprocessor. LESSSECURE Runs less in "secure" mode. See discussion under SECURITY. LESSSECURE_ALLOW Enables individual features which are normally disabled by LESSSECURE. See discussion under SECURITY. LESSSEPARATOR String to be appended to a directory name in filename comple‐ tion. LESSUTFBINFMT Format for displaying non‐printable Unicode code points. LESSUTFCHARDEF Overrides the type of specified Unicode characters. LESS_COLUMNS Sets the number of columns on the screen. Unlike COLUMNS, takes precedence over the system’s idea of the screen size, so it can be used to make less use less than the full screen width. If set to a negative number, sets the number of columns used to this much less than the actual screen width. LESS_LINES Sets the number of lines on the screen. Unlike LINES, takes precedence over the system’s idea of the screen size, so it can be used to make less use less than the full screen height. If set to a negative number, sets the number of lines used to this much less than the actual screen height. When set, less re‐ paints the entire screen on every movement command, so scrolling may be slower. LESS_DATA_DELAY Duration (in milliseconds) after starting to read data from the input, after which the "Waiting for data" message will be dis‐ played. The default is 4000 (4 seconds). LESS_IS_MORE Emulate the more(1) command. LESS_OSC8_xxx Where "xxx" is a URI scheme such as "http" or "file", sets an OSC 8 handler for opening OSC 8 links containing a URI with that scheme. LESS_OSC8_ANY Sets an OSC 8 handler for opening OSC 8 links for which there is no specific LESS_OSC8_xxx handler set for the "xxx" scheme. LESS_TERMCAP_xx Where "xx" is any two characters, overrides the definition of the termcap "xx" capability for the terminal. LESS_UNSUPPORT A space‐separated list of command line options. These options will be ignored (with no error message) if they appear on the command line or in the LESS environment variable. Options list‐ ed in LESS_UNSUPPORT can still be changed by the - and -- com‐ mands. Each option in LESS_UNSUPPORT is a dash followed by a single character option letter, or two dashes followed by a long option name. LINES Sets the number of lines on the screen. Takes precedence over the number of lines specified by the TERM variable. (But if you have a windowing system which supports TIOCGWINSZ or WIOCGETD, the window system’s idea of the screen size takes precedence over the LINES and COLUMNS environment variables.) MORE Options which are passed to less automatically when running in more‐compatible mode. PATH User’s search path (used to find a lesskey file on MS‐DOS, Win‐ dows, and OS/2 systems). SHELL The shell used to execute the ! command, as well as to expand filenames. TERM The type of terminal on which less is being run. VISUAL The name of the editor (used for the v command). XDG_CONFIG_HOME Possible location of the lesskey file; see the KEY BINDINGS sec‐ tion. XDG_DATA_HOME Possible location of the history file; see the description of the LESSHISTFILE environment variable. XDG_STATE_HOME Possible location of the history file; see the description of the LESSHISTFILE environment variable. SEE ALSO lesskey(1), lessecho(1) COPYRIGHT Copyright (C) 1984‐2024 Mark Nudelman less is part of the GNU project and is free software. You can redis‐ tribute it and/or modify it under the terms of either (1) the GNU Gen‐ eral Public License as published by the Free Software Foundation; or (2) the Less License. See the file README in the less distribution for more details regarding redistribution. You should have received a copy of the GNU General Public License along with the source for less; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111‐1307, USA. You should also have received a copy of the Less License; see the file LICENSE. less is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FIT‐ NESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. AUTHOR Mark Nudelman Report bugs at https://github.com/gwsw/less/issues. For more information, see the less homepage at https://greenwoodsoftware.com/less. Version 668: 06 Oct 2024 LESS(1) less-668/less.nro0000444060175306017530000030053214700607657013074 0ustar marknmarkn'\" t .TH LESS 1 "Version 668: 06 Oct 2024" .SH NAME less \- display the contents of a file in a terminal .SH SYNOPSIS .B "less \-?" .br .B "less \-\-help" .br .B "less \-V" .br .B "less \-\-version" .br .B "less [\-[+]aABcCdeEfFgGiIJKLmMnNqQrRsSuUVwWX\(ti]" .br .B " [\-b \fIspace\/\fP] [\-h \fIlines\/\fP] [\-j \fIline\/\fP] [\-k \fIkeyfile\/\fP]" .br .B " [\-{oO} \fIlogfile\/\fP] [\-p \fIpattern\/\fP] [\-P \fIprompt\/\fP] [\-t \fItag\/\fP]" .br .B " [\-T \fItagsfile\/\fP] [\-x \fItab\/\fP,...] [\-y \fIlines\/\fP] [\-[z] \fIlines\/\fP]" .br .B " [\-# \fIshift\/\fP] [+[+]\fIcmd\/\fP] [\-\-] [\fIfilename\/\fP]..." .br (See the OPTIONS section for alternate option syntax with long option names.) . .SH DESCRIPTION .B Less is a program similar to .BR more (1), but it has many more features. .B Less does not have to read the entire input file before starting, so with large input files it starts up faster than text editors like .BR vi (1). .B Less uses termcap (or terminfo on some systems), so it can run on a variety of terminals. There is even limited support for hardcopy terminals. (On a hardcopy terminal, lines which should be printed at the top of the screen are prefixed with a caret.) .PP Commands are based on both .B more and .BR vi . Commands may be preceded by a decimal number, called N in the descriptions below. The number is used by some commands, as indicated. . .SH COMMANDS In the following descriptions, \(haX means control-X. ESC stands for the ESCAPE key; for example ESC-v means the two character sequence "ESCAPE", then "v". .IP "h or H" Help: display a summary of these commands. If you forget all the other commands, remember this one. .IP "SPACE or \(haV or f or \(haF" Scroll forward N lines, default one window (see option \-z below). If N is more than the screen size, only the final screenful is displayed. Warning: some systems use \(haV as a special literalization character. .IP "z" Like SPACE, but if N is specified, it becomes the new window size. .IP "ESC-SPACE" Like SPACE, but scrolls a full screenful, even if it reaches end-of-file in the process. .IP "ENTER or RETURN or \(haN or e or \(haE or j or \(haJ" Scroll forward N lines, default 1. The entire N lines are displayed, even if N is more than the screen size. .IP "d or \(haD" Scroll forward N lines, default one half of the screen size. If N is specified, it becomes the new default for subsequent d and u commands. .IP "b or \(haB or ESC-v" Scroll backward N lines, default one window (see option \-z below). If N is more than the screen size, only the final screenful is displayed. .IP "w" Like ESC-v, but if N is specified, it becomes the new window size. .IP "y or \(haY or \(haP or k or \(haK" Scroll backward N lines, default 1. The entire N lines are displayed, even if N is more than the screen size. Warning: some systems use \(haY as a special job control character. .IP "u or \(haU" Scroll backward N lines, default one half of the screen size. If N is specified, it becomes the new default for subsequent d and u commands. .IP "J" Like j, but continues to scroll beyond the end of the file. .IP "K or Y" Like k, but continues to scroll beyond the beginning of the file. .IP "ESC-) or RIGHTARROW" Scroll horizontally right N characters, default half the screen width (see the \-# option). If a number N is specified, it becomes the default for future RIGHTARROW and LEFTARROW commands. While the text is scrolled, it acts as though the \-S option (chop lines) were in effect. .IP "ESC-( or LEFTARROW" Scroll horizontally left N characters, default half the screen width (see the \-# option). If a number N is specified, it becomes the default for future RIGHTARROW and LEFTARROW commands. .IP "ESC-} or \(haRIGHTARROW" Scroll horizontally right to show the end of the longest displayed line. .IP "ESC-{ or \(haLEFTARROW" Scroll horizontally left back to the first column. .IP "r or \(haR or \(haL" Repaint the screen. .IP R Repaint the screen, discarding any buffered input. That is, reload the current file. Useful if the file is changing while it is being viewed. .IP "F" Scroll forward, and keep trying to read when the end of file is reached. Normally this command would be used when already at the end of the file. It is a way to monitor the tail of a file which is growing while it is being viewed. (The behavior is similar to the "tail \-f" command.) To stop waiting for more data, enter the interrupt character (usually \(haC). On systems which support .BR poll (2) you can also use \(haX or the character specified by the \-\-intr option. If the input is a pipe and the \-\-exit-follow-on-close option is in effect, .B less will automatically stop waiting for data when the input side of the pipe is closed. .IP "ESC-F" Like F, but as soon as a line is found which matches the last search pattern, the terminal bell is rung and forward scrolling stops. .IP "g or < or ESC-<" Go to line N in the file, default 1 (beginning of file). (Warning: this may be slow if N is large.) .IP "G or > or ESC->" Go to line N in the file, default the end of the file. (Warning: this may be slow if N is large, or if N is not specified and standard input, rather than a file, is being read.) .IP "ESC-G" Same as G, except if no number N is specified and the input is standard input, goes to the last line which is currently buffered. .IP "p or %" Go to a position N percent into the file. N should be between 0 and 100, and may contain a decimal point. .IP "P" Go to the line containing byte offset N in the file. .IP "{" If a left curly bracket appears in the top line displayed on the screen, the { command will go to the matching right curly bracket. The matching right curly bracket is positioned on the bottom line of the screen. If there is more than one left curly bracket on the top line, a number N may be used to specify the N-th bracket on the line. .IP "}" If a right curly bracket appears in the bottom line displayed on the screen, the } command will go to the matching left curly bracket. The matching left curly bracket is positioned on the top line of the screen. If there is more than one right curly bracket on the bottom line, a number N may be used to specify the N-th bracket on the line. .IP "(" Like {, but applies to parentheses rather than curly brackets. .IP ")" Like }, but applies to parentheses rather than curly brackets. .IP "[" Like {, but applies to square brackets rather than curly brackets. .IP "]" Like }, but applies to square brackets rather than curly brackets. .IP "ESC-\(haF" Followed by two characters, acts like {, but uses the two characters as open and close brackets, respectively. For example, "ESC \(haF < >" could be used to go forward to the > which matches the < in the top displayed line. .IP "ESC-\(haB" Followed by two characters, acts like }, but uses the two characters as open and close brackets, respectively. For example, "ESC \(haB < >" could be used to go backward to the < which matches the > in the bottom displayed line. .IP m Followed by any lowercase or uppercase letter, marks the first displayed line with that letter. If the status column is enabled via the \-J option, the status column shows the marked line. .IP M Acts like m, except the last displayed line is marked rather than the first displayed line. .IP "\(aq" (Single quote.) Followed by any lowercase or uppercase letter, returns to the position which was previously marked with that letter. Followed by another single quote, returns to the position at which the last "large" movement command was executed. Followed by a \(ha or $, jumps to the beginning or end of the file respectively. Marks are preserved when a new file is examined, so the \(aq command can be used to switch between input files. .IP "\(haX\(haX" Same as single quote. .IP "ESC-m" Followed by any lowercase or uppercase letter, clears the mark identified by that letter. .IP /pattern Search forward in the file for the N-th line containing the pattern. N defaults to 1. The pattern is a regular expression, as recognized by the regular expression library supplied by your system. By default, searching is case-sensitive (uppercase and lowercase are considered different); the \-i option can be used to change this. The search starts at the first line displayed (but see the \-a and \-j options, which change this). .sp Certain characters are special if entered at the beginning of the pattern; they modify the type of search rather than become part of the pattern: .RS .IP "\(haN or !" Search for lines which do NOT match the pattern. .IP "\(haE or *" Search multiple files. That is, if the search reaches the END of the current file without finding a match, the search continues in the next file in the command line list. .IP "\(haF or @" Begin the search at the first line of the FIRST file in the command line list, regardless of what is currently displayed on the screen or the settings of the \-a or \-j options. .IP "\(haK" Highlight any text which matches the pattern on the current screen, but don't move to the first match (KEEP current position). .IP "\(haR" Don't interpret regular expression metacharacters; that is, do a simple textual comparison. .IP "\(haS" Followed by a digit N between 1 and 5. Only text which has a non-empty match for the N-th parenthesized SUB-PATTERN will be considered to match the pattern. (Supported only if .B less is built with one of the regular expression libraries .BR posix ", " pcre ", or " pcre2 ".)" Multiple \(haS modifiers can be specified, to match more than one sub-pattern. .IP "\(haW" WRAP around the current file. That is, if the search reaches the end of the current file without finding a match, the search continues from the first line of the current file up to the line where it started. If the \(haW modifier is set, the \(haE modifier is ignored. .IP "\(haL" The next character is taken literally; that is, it becomes part of the pattern even if it is one of the above search modifier characters. .RE .IP ?pattern Search backward in the file for the N-th line containing the pattern. The search starts at the last line displayed (but see the \-a and \-j options, which change this). .sp Certain characters are special as in the / command: .RS .IP "\(haN or !" Search for lines which do NOT match the pattern. .IP "\(haE or *" Search multiple files. That is, if the search reaches the beginning of the current file without finding a match, the search continues in the previous file in the command line list. .IP "\(haF or @" Begin the search at the last line of the last file in the command line list, regardless of what is currently displayed on the screen or the settings of the \-a or \-j options. .IP "\(haK" As in forward searches. .IP "\(haR" As in forward searches. .IP "\(haS" As in forward searches. .IP "\(haW" WRAP around the current file. That is, if the search reaches the beginning of the current file without finding a match, the search continues from the last line of the current file up to the line where it started. .RE .IP "ESC-/pattern" Same as "/*". .IP "ESC-?pattern" Same as "?*". .IP n Repeat previous search, for N-th line containing the last pattern. If the previous search was modified by \(haN, the search is made for the N-th line NOT containing the pattern. If the previous search was modified by \(haE, the search continues in the next (or previous) file if not satisfied in the current file. If the previous search was modified by \(haR, the search is done without using regular expressions. There is no effect if the previous search was modified by \(haF or \(haK. .IP N Repeat previous search, but in the reverse direction. .IP "ESC-n" Repeat previous search, but crossing file boundaries. The effect is as if the previous search were modified by *. .IP "ESC-N" Repeat previous search, but in the reverse direction and crossing file boundaries. .IP "ESC-u" Undo search highlighting. Turn off highlighting of strings matching the current search pattern. If highlighting is already off because of a previous ESC-u command, turn highlighting back on. Any search command will also turn highlighting back on. (Highlighting can also be disabled by toggling the \-G option; in that case search commands do not turn highlighting back on.) .IP "ESC-U" Like ESC-u but also clears the saved search pattern. If the status column is enabled via the \-J option, this clears all search matches marked in the status column. .IP "&pattern" Display only lines which match the pattern; lines which do not match the pattern are not displayed. If pattern is empty (if you type & immediately followed by ENTER), any filtering is turned off, and all lines are displayed. While filtering is in effect, an ampersand is displayed at the beginning of the prompt, as a reminder that some lines in the file may be hidden. Multiple & commands may be entered, in which case only lines which match all of the patterns will be displayed. .sp Certain characters are special as in the / command: .RS .IP "\(haN or !" Display only lines which do NOT match the pattern. .IP "\(haR" Don't interpret regular expression metacharacters; that is, do a simple textual comparison. .RE .IP ":e [filename]" Examine a new file. If the filename is missing, the "current" file (see the :n and :p commands below) from the list of files in the command line is re-examined. A percent sign (%) in the filename is replaced by the name of the current file. A pound sign (#) is replaced by the name of the previously examined file. However, two consecutive percent signs are simply replaced with a single percent sign. This allows you to enter a filename that contains a percent sign in the name. Similarly, two consecutive pound signs are replaced with a single pound sign. The filename is inserted into the command line list of files so that it can be seen by subsequent :n and :p commands. If the filename consists of several files, they are all inserted into the list of files and the first one is examined. If the filename contains one or more spaces, the entire filename should be enclosed in double quotes (also see the \-" option). .IP "\(haX\(haV or E" Same as :e. Warning: some systems use \(haV as a special literalization character. On such systems, you may not be able to use \(haV. .IP ":n" Examine the next file (from the list of files given in the command line). If a number N is specified, the N-th next file is examined. .IP ":p" Examine the previous file in the command line list. If a number N is specified, the N-th previous file is examined. .IP ":x" Examine the first file in the command line list. If a number N is specified, the N-th file in the list is examined. .IP ":d" Remove the current file from the list of files. .IP "t" Go to the next tag, if there were more than one matches for the current tag. See the \-t option for more details about tags. .IP "T" Go to the previous tag, if there were more than one matches for the current tag. .IP "\(haO\(haN or \(haOn" Search forward in the file for the N-th next OSC 8 hyperlink. .IP "\(haO\(haP or \(haOp" Search backward in the file for the N-th previous OSC 8 hyperlink. .IP "\(haO\(haL or \(haOl" Jump to the currently selected OSC 8 hyperlink. .IP "= or \(haG or :f" Prints some information about the file being viewed, including its name and the line number and byte offset of the bottom line being displayed. If possible, it also prints the length of the file, the number of lines in the file and the percent of the file above the last displayed line. .IP \- Followed by one of the command line option letters (see OPTIONS below), this will change the setting of that option and print a message describing the new setting. If a \(haP (CONTROL-P) is entered immediately after the dash, the setting of the option is changed but no message is printed. If the option letter has a numeric value (such as \-b or \-h), or a string value (such as \-P or \-t), a new value may be entered after the option letter. If no new value is entered, a message describing the current setting is printed and nothing is changed. .IP \-\- Like the \- command, but takes a long option name (see OPTIONS below) rather than a single option letter. You must press ENTER or RETURN after typing the option name. A \(haP immediately after the second dash suppresses printing of a message describing the new setting, as in the \- command. .IP \-+ Followed by one of the command line option letters this will reset the option to its default setting and print a message describing the new setting. (The "\-+\fIX\fP" command does the same thing as "\-+\fIX\fP" on the command line.) This does not work for string-valued options. .IP \-\-+ Like the \-+ command, but takes a long option name rather than a single option letter. .IP \-! Followed by one of the command line option letters, this will reset the option to the "opposite" of its default setting and print a message describing the new setting. This does not work for numeric or string-valued options. .IP \-\-! Like the \-!\& command, but takes a long option name rather than a single option letter. .IP _ (Underscore.) Followed by one of the command line option letters, this will print a message describing the current setting of that option. The setting of the option is not changed. .IP __ (Double underscore.) Like the _ (underscore) command, but takes a long option name rather than a single option letter. You must press ENTER or RETURN after typing the option name. .IP +cmd Causes the specified cmd to be executed each time a new file is examined. For example, +G causes .B less to initially display each file starting at the end rather than the beginning. .IP V Prints the version number of .B less being run. .IP "q or Q or :q or :Q or ZZ" Exits .BR less . .PP The following seven commands may or may not be valid, depending on your particular installation. . .IP v Invokes an editor to edit the current file being viewed. The editor is taken from the environment variable VISUAL if defined, or EDITOR if VISUAL is not defined, or defaults to "vi" if neither VISUAL nor EDITOR is defined. See also the discussion of LESSEDIT under the section on PROMPTS below. .IP "! shell-command" Invokes a shell to run the shell-command given. A percent sign (%) in the command is replaced by the name of the current file. A pound sign (#) is replaced by the name of the previously examined file. "!!" repeats the last shell command. "!" with no shell command simply invokes a shell. If a \(haP (CONTROL-P) is entered immediately after the !, no "done" message is printed after the shell command is executed. On Unix systems, the shell is taken from the environment variable SHELL, or defaults to "sh". On MS-DOS, Windows, and OS/2 systems, the shell is the normal command processor. .IP "# shell-command" Similar to the "!" command, except that the command is expanded in the same way as prompt strings. For example, the name of the current file would be given as "%f". .IP "| shell-command" represents any mark letter. Pipes a section of the input file to the given shell command. The section of the file to be piped is between the position marked by the letter and the current screen. The entire current screen is included, regardless of whether the marked position is before or after the current screen. may also be \(ha or $ to indicate beginning or end of file respectively. If is \&.\& or newline, the current screen is piped. If a \(haP (CONTROL-P) is entered immediately after the mark letter, no "done" message is printed after the shell command is executed. .IP "s filename" Save the input to a file. This works only if the input is a pipe, not an ordinary file. .IP "\(haO\(haO" .RS Run a shell command to open the URI in the current OSC 8 hyperlink, selected by a previous \(haO\(haN or \(haO\(haP command. To find the shell command, the environment variable named "LESS_OSC8_xxx" is read, where "xxx" is the scheme from the URI (the part before the first colon), or is empty if there is no colon in the URI. The value of the environment variable is then expanded in the same way as prompt strings (in particular, any instance of "%o" is replaced with the URI) to produce an OSC 8 "handler" shell command. The standard output from the handler is an "opener" shell command which is then executed to open the URI. .PP There are two special cases: .RS .IP 1. If the URI begins with "#", the remainder of the URI is taken to be the value of the id parameter in another OSC 8 link in the same file, and \(haO\(haO will simply jump to that link. .IP 2. If the opener begins with the characters ":e" followed by whitespace and a filename, then instead of running the opener as a shell command, the specified filename is opened in the current instance of .BR less . .RE .PP In a simple case where the opener accepts the complete URI as a command line parameter, the handler may be as simple as .nf .sp echo mybrowser '%o' .sp .fi In other cases, the URI may need to be modified, so the handler may have to do some manipulation of the %o value. .PP If the LESS_OSC8_xxx variable is not set, the variable LESS_OSC8_ANY is tried. If neither LESS_OSC8_xxx nor LESS_OSC8_ANY is set, links using the "xxx" scheme cannot be opened. However, there are default handlers for the schemes "man" (used when LESS_OSC8_man is not set) and "file" (used when LESS_OSC8_file is not set), which should work on systems which provide the .BR sed (1) command and a shell with syntax compatible with the Bourne shell .BR sh (1). If you use LESS_OSC8_ANY to override LESS_OSC8_file, you must set LESS_OSC8_file to "-" to indicate that the default value should not be used, and likewise for LESS_OSC8_man. .PP The URI passed to an OSC8 handler via %o is guaranteed not to contain any single quote or double quote characters, but it may contain any other shell metacharacters such as semicolons, dollar signs, ampersands, etc. The handler should take care to appropriately quote parameters in the opener command, to prevent execution of unintended shell commands in the case of opening a URI which contains shell metacharacters. Also, since the handler command is expanded like a command prompt, any metacharacters interpreted by prompt expansion (such as percent, dot, colon, backslash, etc.) must be escaped with a backslash (see the PROMPTS section for details). .RE .IP "\(haX" When the "Waiting for data" message is displayed, such as while in the F command, pressing \(haX will stop .B less from waiting and return to a prompt. This may cause .B less to think that the file ends at the current position, so it may be necessary to use the R or F command to see more data. The \-\-intr option can be used to specify a different character to use instead of \(haX. This command works only on systems that support the .BR poll (2) function. On systems without .BR poll (2), the interrupt character (usually \(haC) can be used instead. . .SH OPTIONS Command line options are described below. Most options may be changed while .B less is running, via the "\-" command. .PP Some options may be given in one of two forms: either a dash followed by a single letter, or two dashes followed by a long option name. A long option name may be abbreviated as long as the abbreviation is unambiguous. For example, \-\-quit-at-eof may be abbreviated \-\-quit, but not \-\-qui, since both \-\-quit-at-eof and \-\-quiet begin with \-\-qui. Some long option names are in uppercase, such as \-\-QUIT-AT-EOF, as distinct from \-\-quit-at-eof. Such option names need only have their first letter capitalized; the remainder of the name may be in either case. For example, \-\-Quit-at-eof is equivalent to \-\-QUIT-AT-EOF. .PP Options are also taken from the environment variable "LESS". For example, to avoid typing "less \-options \&...\&" each time .B less is invoked, you might tell .BR csh : .sp setenv LESS "\-options" .sp or if you use .BR sh : .sp LESS="\-options"; export LESS .sp On MS-DOS and Windows, you don't need the quotes, but you should be careful that any percent signs in the options string are not interpreted as an environment variable expansion. .sp The environment variable is parsed before the command line, so command line options override the LESS environment variable. If an option appears in the LESS variable, it can be reset to its default value on the command line by beginning the command line option with "\-+". .sp Some options like \-k or \-D require a string to follow the option letter. The string for that option is considered to end when a dollar sign ($) is found. For example, you can set two \-D options like this: .sp LESS="Dnwb$Dsbw" .sp If the \-\-use-backslash option appears earlier in the options, then a dollar sign or backslash may be included literally in an option string by preceding it with a backslash. If the \-\-use-backslash option is not in effect, then backslashes are not treated specially, and there is no way to include a dollar sign in the option string. .IP "\-? or \-\-help" This option displays a summary of the commands accepted by .B less (the same as the h command). (Depending on how your shell interprets the question mark, it may be necessary to quote the question mark, thus: "\-\e?".) .IP "\-a or \-\-search-skip-screen" By default, forward searches start at the top of the displayed screen and backwards searches start at the bottom of the displayed screen (except for repeated searches invoked by the n or N commands, which start after or before the "target" line respectively; see the \-j option for more about the target line). The \-a option causes forward searches to instead start at the bottom of the screen and backward searches to start at the top of the screen, thus skipping all lines displayed on the screen. .IP "\-A or \-\-SEARCH-SKIP-SCREEN" Causes all forward searches (not just non-repeated searches) to start just after the target line, and all backward searches to start just before the target line. Thus, forward searches will skip part of the displayed screen (from the first line up to and including the target line). Similarly backwards searches will skip the displayed screen from the last line up to and including the target line. This was the default behavior in less versions prior to 441. .IP "\-b\fIn\fP or \-\-buffers=\fIn\fP" Specifies the amount of buffer space .B less will use for each file, in units of kilobytes (1024 bytes). By default 64\ KB of buffer space is used for each file (unless the file is a pipe; see the \-B option). The \-b option specifies instead that \fIn\fP kilobytes of buffer space should be used for each file. If \fIn\fP is \-1, buffer space is unlimited; that is, the entire file can be read into memory. .IP "\-B or \-\-auto-buffers" By default, when data is read from a pipe, buffers are allocated automatically as needed. If a large amount of data is read from the pipe, this can cause a large amount of memory to be allocated. The \-B option disables this automatic allocation of buffers for pipes, so that only 64\ KB (or the amount of space specified by the \-b option) is used for the pipe. Warning: use of \-B can result in erroneous display, since only the most recently viewed part of the piped data is kept in memory; any earlier data is lost. Lost characters are displayed as question marks. .IP "\-c or \-\-clear-screen" Causes full screen repaints to be painted from the top line down. By default, full screen repaints are done by scrolling from the bottom of the screen. .IP "\-C or \-\-CLEAR-SCREEN" Same as \-c, for compatibility with older versions of .BR less . .IP "\-d or \-\-dumb" The \-d option suppresses the error message normally displayed if the terminal is dumb; that is, lacks some important capability, such as the ability to clear the screen or scroll backward. The \-d option does not otherwise change the behavior of .B less on a dumb terminal. .IP "\-D\fBx\fP\fIcolor\fP or \-\-color=\fBx\fP\fIcolor\fP" Changes the color of different parts of the displayed text. \fBx\fP is a single character which selects the type of text whose color is being set: .RS .IP "B" Binary characters. .IP "C" Control characters. .IP "E" Errors and informational messages. .IP "H" Header lines and columns, set via the \-\-header option. .IP "M" Mark letters in the status column. .IP "N" Line numbers enabled via the \-N option. .IP "P" Prompts. .IP "R" The rscroll character. .IP "S" Search results. .IP "W" The highlight enabled via the \-w option. .IP "1-5" The text in a search result which matches the first through fifth parenthesized sub-pattern. Sub-pattern coloring works only if .B less is built with one of the regular expression libraries .BR posix ", " pcre ", or " pcre2 . .IP "d" Bold text. .IP "k" Blinking text. .IP "s" Standout text. .IP "u" Underlined text. .RE .RS The uppercase letters and digits can be used only when the \-\-use-color option is enabled. When text color is specified by both an uppercase letter and a lowercase letter, the uppercase letter takes precedence. For example, error messages are normally displayed as standout text. So if both "s" and "E" are given a color, the "E" color applies to error messages, and the "s" color applies to other standout text. The lowercase letters refer to bold and underline text formed by overstriking with backspaces (see the \-U option) and to non-content text (such as line numbers and prompts), but not to text formatted using ANSI escape sequences with the \-R option (but see the note below for different behavior on Windows and MS-DOS). .PP A lowercase letter may be followed by a + to indicate that the normal format change and the specified color should both be used. For example, \-Dug displays underlined text as green without underlining; the green color has replaced the usual underline formatting. But \-Du+g displays underlined text as both green and in underlined format. .PP \fIcolor\fP is either a 4-bit color string or an 8-bit color string: .PP A 4-bit color string is one or two characters, where the first character specifies the foreground color and the second specifies the background color as follows: .IP "b" Blue .IP "c" Cyan .IP "g" Green .IP "k" Black .IP "m" Magenta .IP "r" Red .IP "w" White .IP "y" Yellow .PP The corresponding uppercase letter denotes a brighter shade of the color. For example, \-DNGk displays line numbers as bright green text on a black background, and \-DEbR displays error messages as blue text on a bright red background. If either character is a "-" or is omitted, the corresponding color is set to that of normal text. .PP An 8-bit color string is one or two decimal integers separated by a dot, where the first integer specifies the foreground color and the second specifies the background color. Each integer is a value between 0 and 255 inclusive which selects a "CSI 38;5" color value (see .nh https://en.wikipedia.org/wiki/ANSI_escape_code#SGR). .hy If either integer is a "-" or is omitted, the corresponding color is set to that of normal text. .PP A 4-bit or 8-bit color string may be followed by one or more of the following characters to set text attributes in addition to the color. .IP "s or ~" Standout (reverse video) .IP "u or _" Underline .IP "d or *" Bold .IP "l or &" Blinking .PP On MS-DOS and Windows, the \-\-color option behaves differently from what is described above in these ways: .IP \(bu The bold (d and *) and blinking (l and &) text attributes at the end of a color string are not supported. .IP \(bu Lowercase color selector letters refer to text formatted by ANSI escape sequences with \-R, in addition to overstruck and non-content text (but see \-Da). .IP \(bu For historical reasons, when a lowercase color selector letter is followed by a numeric color value, the number is not interpreted as an "CSI 38;5" color value as described above, but instead as a 4-bit .nh CHAR_INFO.Attributes .hy value, between 0 and 15 inclusive (see .nh https://learn.microsoft.com/en-us/windows/console/char-info-str). .hy To avoid confusion, it is recommended that the equivalent letters rather than numbers be used after a lowercase color selector on MS-DOS/Windows. .IP \(bu Numeric color values ("CSI 38;5" color) following an uppercase color selector letter are not supported on systems earlier than Windows 10. .IP \(bu Only a limited set of ANSI escape sequences to set color in the content work correctly. 4-bit color sequences work, but "CSI 38;5" color sequences do not. .IP \(bu The \-Da option makes the behavior of \-\-color more similar to its behavior on non-MS-DOS/Windows systems by (1) making lowercase color selector letters not affect text formatted with ANSI escape sequences, and (2) allowing "CSI 38;5" color sequences in the content work by passing them to the terminal (only on Windows 10 and later; on earlier Windows systems, such sequences do not work regardless of the setting of \-Da). .RE .IP "\-e or \-\-quit-at-eof" Causes .B less to automatically exit the second time it reaches end-of-file. By default, the only way to exit .B less is via the "q" command. .IP "\-E or \-\-QUIT-AT-EOF" Causes .B less to automatically exit the first time it reaches end-of-file. .IP "\-f or \-\-force" Forces non-regular files to be opened. (A non-regular file is a directory or a device special file.) Also suppresses the warning message when a binary file is opened. By default, .B less will refuse to open non-regular files. Note that some operating systems will not allow directories to be read, even if \-f is set. .IP "\-F or \-\-quit-if-one-screen" Causes .B less to automatically exit if the entire file can be displayed on the first screen. .IP "\-g or \-\-hilite-search" Normally, .B less will highlight ALL strings which match the last search command. The \-g option changes this behavior to highlight only the particular string which was found by the last search command. This can cause .B less to run somewhat faster than the default. .IP "\-G or \-\-HILITE-SEARCH" The \-G option suppresses all highlighting of strings found by search commands. .IP "\-h\fIn\fP or \-\-max-back-scroll=\fIn\fP" Specifies a maximum number of lines to scroll backward. If it is necessary to scroll backward more than \fIn\fP lines, the screen is repainted in a forward direction instead. (If the terminal does not have the ability to scroll backward, \-h0 is implied.) .IP "\-i or \-\-ignore-case" Causes searches to ignore case; that is, uppercase and lowercase are considered identical. This option is ignored if any uppercase letters appear in the search pattern; in other words, if a pattern contains uppercase letters, then that search does not ignore case. .IP "\-I or \-\-IGNORE-CASE" Like \-i, but searches ignore case even if the pattern contains uppercase letters. .IP "\-j\fIn\fP or \-\-jump-target=\fIn\fP" Specifies a line on the screen where the "target" line is to be positioned. The target line is the line specified by any command to search for a pattern, jump to a line number, jump to a file percentage or jump to a tag. The screen line may be specified by a number: the top line on the screen is 1, the next is 2, and so on. The number may be negative to specify a line relative to the bottom of the screen: the bottom line on the screen is \-1, the second to the bottom is \-2, and so on. Alternately, the screen line may be specified as a fraction of the height of the screen, starting with a decimal point: \&.5 is in the middle of the screen, \&.3 is three tenths down from the first line, and so on. If the line is specified as a fraction, the actual line number is recalculated if the terminal window is resized. If the \-\-header option is used and the target line specified by \-j would be obscured by the header, the target line is moved to the first line after the header. While the \-\-header option is active, the \-S option is ignored, and lines longer than the screen width are truncated. .RS .PP If any form of the \-j option is used, repeated forward searches (invoked with "n" or "N") begin at the line immediately after the target line, and repeated backward searches begin at the target line, unless changed by \-a or \-A. For example, if "\-j4" is used, the target line is the fourth line on the screen, so forward searches begin at the fifth line on the screen. However nonrepeated searches (invoked with "/" or "?") always begin at the start or end of the current screen respectively. .RE .IP "\-J or \-\-status-column" Displays a status column at the left edge of the screen. The character displayed in the status column may be one of: .RS .IP ">" The line is chopped with the \-S option, and the text that is chopped off beyond the right edge of the screen contains a match for the current search. .IP "<" The line is horizontally shifted, and the text that is shifted beyond the left side of the screen contains a match for the current search. .IP "=" The line is both chopped and shifted, and there are matches beyond both sides of the screen. .IP "*" There are matches in the visible part of the line but none to the right or left of it. .IP "a-z, A-Z" The line has been marked with the corresponding letter via the m command. .RE .IP "\-k\fIfilename\fP or \-\-lesskey-file=\fIfilename\fP" Causes .B less to open and interpret the named file as a .BR lesskey (1) binary file. Multiple \-k options may be specified. If the LESSKEY or LESSKEY_SYSTEM environment variable is set, or if a lesskey file is found in a standard place (see KEY BINDINGS), it is also used as a .B lesskey file. Note the warning under "\-\-lesskey-content" below. .IP "\-\-lesskey-src=\fIfilename\fP" Causes .B less to open and interpret the named file as a .BR lesskey (1) source file. If the LESSKEYIN or LESSKEYIN_SYSTEM environment variable is set, or if a lesskey source file is found in a standard place (see KEY BINDINGS), it is also used as a .I "lesskey source" file. Prior to version 582, the .B lesskey program needed to be run to convert a .I "lesskey source" file to a .I "lesskey binary" file for .B less to use. Newer versions of .B less read the .I "lesskey source" file directly and ignore the binary file if the source file exists. Note the warning under "\-\-lesskey-content" below. .IP "\-\-lesskey-content=\fItext\fP" Causes less to interpret the specified text as the contents of a .BR lesskey (1) source file. In the text, .B lesskey lines may be separated by either newlines as usual, or by semicolons. A literal semicolon may be represented by a backslash followed by a semicolon. .sp Warning: certain environment variables such as LESS, LESSSECURE, LESSCHARSET and others, which are used early in startup, cannot be set in a file specified by a command line option (\-\-lesskey, \-\-lesskey-src or \-\-lesskey-content). When using a .B lesskey file to set environment variables, it is safer to use the default lesskey file, or to specify the file using the LESSKEYIN or LESSKEY_CONTENT environment variables rather than using a command line option. .IP "\-K or \-\-quit-on-intr" Causes .B less to exit immediately (with status 2) when an interrupt character (usually \(haC) is typed. Normally, an interrupt character causes .B less to stop whatever it is doing and return to its command prompt. Note that use of this option makes it impossible to return to the command prompt from the "F" command. .IP "\-L or \-\-no-lessopen" Ignore the LESSOPEN environment variable (see the INPUT PREPROCESSOR section below). This option can be set from within .BR less , but it will apply only to files opened subsequently, not to the file which is currently open. .IP "\-m or \-\-long-prompt" Causes .B less to prompt verbosely (like .BR more (1)), with the percent into the file. By default, .B less prompts with a colon. .IP "\-M or \-\-LONG-PROMPT" Causes .B less to prompt even more verbosely than .BR more (1). .IP "\-n or \-\-line-numbers" Suppresses line numbers. The default (to use line numbers) may cause .B less to run more slowly in some cases, especially with a very large input file. Suppressing line numbers with the \-n option will avoid this problem. Using line numbers means: the line number will be displayed in the verbose prompt and in the = command, and the v command will pass the current line number to the editor (see also the discussion of LESSEDIT in PROMPTS below). .IP "\-N or \-\-LINE-NUMBERS" Causes a line number to be displayed at the beginning of each line in the display. .IP "\-o\fIfilename\fP or \-\-log-file=\fIfilename\fP" Causes .B less to copy its input to the named file as it is being viewed. This applies only when the input file is a pipe, not an ordinary file. If the file already exists, .B less will ask for confirmation before overwriting it. .IP "\-O\fIfilename\fP or \-\-LOG-FILE=\fIfilename\fP" The \-O option is like \-o, but it will overwrite an existing file without asking for confirmation. .sp If no log file has been specified, the \-o and \-O options can be used from within .B less to specify a log file. Without a file name, they will simply report the name of the log file. The "s" command is equivalent to specifying \-o from within .BR less . .IP "\-p\fIpattern\fP or \-\-pattern=\fIpattern\fP" The \-p option on the command line is equivalent to specifying +/\fIpattern\fP; that is, it tells .B less to start at the first occurrence of \fIpattern\fP in the file. .IP "\-P\fIprompt\fP or \-\-prompt=\fIprompt\fP" Provides a way to tailor the three prompt styles to your own preference. This option would normally be put in the LESS environment variable, rather than being typed in with each .B less command. Such an option must either be the last option in the LESS variable, or be terminated by a dollar sign. \-Ps followed by a string changes the default (short) prompt to that string. \-Pm changes the medium (\-m) prompt. \-PM changes the long (\-M) prompt. \-Ph changes the prompt for the help screen. \-P= changes the message printed by the = command. \-Pw changes the message printed while waiting for data (in the "F" command). .sp 1 All prompt strings consist of a sequence of letters and special escape sequences. See the section on PROMPTS for more details. .IP "\-q or \-\-quiet or \-\-silent" Causes moderately "quiet" operation: the terminal bell is not rung if an attempt is made to scroll past the end of the file or before the beginning of the file. If the terminal has a "visual bell", it is used instead. The bell will be rung on certain other errors, such as typing an invalid character. The default is to ring the terminal bell in all such cases. .IP "\-Q or \-\-QUIET or \-\-SILENT" Causes totally "quiet" operation: the terminal bell is never rung. If the terminal has a "visual bell", it is used in all cases where the terminal bell would have been rung. .IP "\-r or \-\-raw-control-chars" Causes "raw" control characters to be displayed. The default is to display control characters using the caret notation; for example, a control-A (octal 001) is displayed as "\(haA" (with some exceptions as described under the \-U option). Warning: when the \-r option is used, .B less cannot keep track of the actual appearance of the screen (since this depends on how the screen responds to each type of control character). Thus, various display problems may result, such as long lines being split in the wrong place. .sp USE OF THE \-r OPTION IS NOT RECOMMENDED. .IP "\-R or \-\-RAW-CONTROL-CHARS" Like \-r, but only ANSI "color" escape sequences and OSC 8 hyperlink sequences are output in "raw" form. Unlike \-r, the screen appearance is maintained correctly, provided that there are no escape sequences in the file other than these types of escape sequences. Color escape sequences are only supported when the color is changed within one line, not across lines. In other words, the beginning of each line is assumed to be normal (non-colored), regardless of any escape sequences in previous lines. For the purpose of keeping track of screen appearance, these escape sequences are assumed to not move the cursor. .sp OSC 8 hyperlinks are sequences of the form: .sp ESC ] 8 ; \&...\& \\7 .sp The terminating sequence may be either a BEL character (\\7) or the two-character sequence "ESC \\". .sp ANSI color escape sequences are sequences of the form: .sp ESC [ \&...\& m .sp where the "...\&" is zero or more color specification characters. You can make .B less think that characters other than "m" can end ANSI color escape sequences by setting the environment variable LESSANSIENDCHARS to the list of characters which can end a color escape sequence. And you can make .B less think that characters other than the standard ones may appear between the ESC and the m by setting the environment variable LESSANSIMIDCHARS to the list of characters which can appear. .IP "\-s or \-\-squeeze-blank-lines" Causes consecutive blank lines to be squeezed into a single blank line. This is useful when viewing .B nroff output. .IP "\-S or \-\-chop-long-lines" Causes lines longer than the screen width to be chopped (truncated) rather than wrapped. That is, the portion of a long line that does not fit in the screen width is not displayed until you press RIGHT-ARROW. The default is to wrap long lines; that is, display the remainder on the next line. See also the \-\-wordwrap option. .IP "\-t\fItag\fP or \-\-tag=\fItag\fP" The \-t option, followed immediately by a TAG, will edit the file containing that tag. For this to work, tag information must be available; for example, there may be a file in the current directory called "tags", which was previously built by .BR ctags (1) or an equivalent command. If the environment variable LESSGLOBALTAGS is set, it is taken to be the name of a command compatible with .BR global (1), and that command is executed to find the tag. (See .nh http://www.gnu.org/software/global/global.html). .hy The \-t option may also be specified from within .B less (using the \- command) as a way of examining a new file. The command ":t" is equivalent to specifying \-t from within .BR less . .IP "\-T\fItagsfile\fP or \-\-tag-file=\fItagsfile\fP" Specifies a tags file to be used instead of "tags". .IP "\-u or \-\-underline-special" Causes backspaces and carriage returns to be treated as printable characters; that is, they are sent to the terminal when they appear in the input. .IP "\-U or \-\-UNDERLINE-SPECIAL" Causes backspaces, tabs, carriage returns and "formatting characters" (as defined by Unicode) to be treated as control characters; that is, they are handled as specified by the \-r option. .sp By default, if neither \-u nor \-U is given, backspaces which appear adjacent to an underscore character are treated specially: the underlined text is displayed using the terminal's hardware underlining capability. Also, backspaces which appear between two identical characters are treated specially: the overstruck text is printed using the terminal's hardware boldface capability. Other backspaces are deleted, along with the preceding character. Carriage returns immediately followed by a newline are deleted. Other carriage returns are handled as specified by the \-r option. Unicode formatting characters, such as the Byte Order Mark, are sent to the terminal. Text which is overstruck or underlined can be searched for if neither \-u nor \-U is in effect. .sp See also the \-\-proc-backspace, \-\-proc-tab, and \-\-proc-return options. .IP "\-V or \-\-version" Displays the version number of .BR less . .IP "\-w or \-\-hilite-unread" Temporarily highlights the first "new" line after a forward movement of a full page. The first "new" line is the line immediately following the line previously at the bottom of the screen. Also highlights the target line after a g or p command. The highlight is removed at the next command which causes movement. If the \-\-status-line option is in effect, the entire line (the width of the screen) is highlighted. Otherwise, only the text in the line is highlighted, unless the \-J option is in effect, in which case only the status column is highlighted. .IP "\-W or \-\-HILITE-UNREAD" Like \-w, but temporarily highlights the first new line after any forward movement command larger than one line. .IP "\-x\fIn\fP,...\& or \-\-tabs=\fIn\fP,..." Sets tab stops. If only one \fIn\fP is specified, tab stops are set at multiples of \fIn\fP. If multiple values separated by commas are specified, tab stops are set at those positions, and then continue with the same spacing as the last two. For example, "-x9,17" will set tabs at positions 9, 17, 25, 33, etc. The default for \fIn\fP is 8. .IP "\-X or \-\-no-init" Disables sending the termcap initialization and deinitialization strings to the terminal. This is sometimes desirable if the deinitialization string does something unnecessary, like clearing the screen. .IP "\-y\fIn\fP or \-\-max-forw-scroll=\fIn\fP" Specifies a maximum number of lines to scroll forward. If it is necessary to scroll forward more than \fIn\fP lines, the screen is repainted instead. The \-c or \-C option may be used to repaint from the top of the screen if desired. By default, any forward movement causes scrolling. .IP "\-z\fIn\fP or \-\-window=\fIn\fP or \-\fIn\fP" Changes the default scrolling window size to \fIn\fP lines. The default is one screenful. The z and w commands can also be used to change the window size. The "z" may be omitted for compatibility with some versions of .BR more (1). If the number .I n is negative, it indicates .I n lines less than the current screen size. For example, if the screen is 24 lines, \fI\-z\-4\fP sets the scrolling window to 20 lines. If the screen is resized to 40 lines, the scrolling window automatically changes to 36 lines. .IP "\-\(dq\fIcc\fP\ or\ \-\-quotes=\fIcc\fP" Changes the filename quoting character. This may be necessary if you are trying to name a file which contains both spaces and quote characters. Followed by a single character, this changes the quote character to that character. Filenames containing a space should then be surrounded by that character rather than by double quotes. Followed by two characters, changes the open quote to the first character, and the close quote to the second character. Filenames containing a space should then be preceded by the open quote character and followed by the close quote character. Note that even after the quote characters are changed, this option remains \-" (a dash followed by a double quote). .IP "\-\(ti or \-\-tilde" Normally lines after end of file are displayed as a single tilde (\(ti). This option causes lines after end of file to be displayed as blank lines. .IP "\-# or \-\-shift" Specifies the default number of positions to scroll horizontally in the RIGHTARROW and LEFTARROW commands. If the number specified is zero, it sets the default number of positions to one half of the screen width. Alternately, the number may be specified as a fraction of the width of the screen, starting with a decimal point: \&.5 is half of the screen width, \&.3 is three tenths of the screen width, and so on. If the number is specified as a fraction, the actual number of scroll positions is recalculated if the terminal window is resized. .IP "\-\-exit-follow-on-close" When using the "F" command on a pipe, .B less will automatically stop waiting for more data when the input side of the pipe is closed. .IP "\-\-file-size" If \-\-file-size is specified, .B less will determine the size of the file immediately after opening the file. Then the "=" command will display the number of lines in the file. Normally this is not done, because it can be slow if the input file is non-seekable (such as a pipe) and is large. .IP "\-\-follow-name" Normally, if the input file is renamed while an F command is executing, .B less will continue to display the contents of the original file despite its name change. If \-\-follow-name is specified, during an F command .B less will periodically attempt to reopen the file by name. If the reopen succeeds and the file is a different file from the original (which means that a new file has been created with the same name as the original (now renamed) file), .B less will display the contents of that new file. .IP "\-\-header=\fIL\fP,\fIC\fP,\fIN\fP" .RS Sets the number of header lines and columns displayed on the screen. The number of header lines is set to \fIL\fP. If \fIL\fP is 0, header lines are disabled. If \fIL\fP is empty or missing, the number of header lines is unchanged. The number of header columns is set to \fIC\fP. If \fIC\fP is 0, header columns are disabled. If \fIC\fP is empty or missing, the number of header columns is unchanged. The first header line is set to line number \fIN\fP in the file. If \fIN\fP is empty or missing, it is taken to be the number of the line currently displayed in the first line of the screen (if the \-\-header command has been issued from within .BR less ")," or 1 (if the \-\-header option has been given on the command line). The special form "\-\-header=\-" disables header lines and header columns, and is equivalent to "\-\-header=0,0". .PP When \fIL\fP is nonzero, the first \fIL\fP lines at the top of the screen are replaced with the \fIL\fP lines of the file beginning at line \fIN\fP, regardless of what part of the file is being viewed. When header lines are displayed, any file contents before the header line cannot be viewed. When \fIC\fP is nonzero, the first \fIC\fP characters displayed at the beginning of each line are replaced with the first \fIC\fP characters of the line, even if the rest of the line is scrolled horizontally. .RE .IP "\-\-incsearch" Subsequent search commands will be "incremental"; that is, .B less will advance to the next line containing the search pattern as each character of the pattern is typed in. .IP "\-\-intr=\fIc\fP" Use the character \fIc\fP instead of \(haX to interrupt a read when the "Waiting for data" message is displayed. \fIc\fP must be an ASCII character; that is, one with a value between 1 and 127 inclusive. A caret followed by a single character can be used to specify a control character. .IP "\-\-line-num-width=\fIn\fP" Sets the minimum width of the line number field when the \-N option is in effect to \fIn\fP characters. The default is 7. .IP "\-\-match-shift=\fIn\fP" When \-S is in effect, if a search match is not visible because it is shifted to the left or right of the currently visible screen, the text will horizontally shift to ensure that the search match is visible. This option selects the column in which the first character of the search match will be placed after the shift. In other words, there will be \fIn\fP characters visible to the left of the search match. Alternately, the number may be specified as a fraction of the width of the screen, starting with a decimal point: \&.5 is half of the screen width, \&.3 is three tenths of the screen width, and so on. If the number is specified as a fraction, the actual number of scroll positions is recalculated if the terminal window is resized. .IP "\-\-modelines=\fIn\fP" .RS Before displaying a file, .B less will read the first \fIn\fP lines to try to find a vim-compatible .IR modeline . If \fIn\fP is zero, .B less does not try to find modelines. By using a modeline, the file itself can specify the tab stops that should be used when viewing it. .PP A modeline contains, anywhere in the line, a program name ("vi", "vim", "ex", or "less"), followed by a colon, possibly followed by the word "set", and finally followed by zero or more option settings. If the word "set" is used, option settings are separated by spaces, and end at the first colon. If the word "set" is not used, option settings may be separated by either spaces or colons. The word "set" is required if the program name is "less" but optional if any of the other three names are used. If any option setting is of the form "tabstop=\fIn\fP" or "ts=\fIn\fP", then tab stops are automatically set as if \-\-tabs=\fIn\fP had been given. See the \-\-tabs description for acceptable values of \fIn\fP. .RE .IP "\-\-mouse" Enables mouse input: scrolling the mouse wheel down moves forward in the file, scrolling the mouse wheel up moves backwards in the file, left-click sets the "#" mark to the line where the mouse is clicked, and right-click (or any other) returns to the "#" mark position. If a left-click is performed with the mouse cursor on an OSC 8 hyperlink, the hyperlink is selected as if by the \(haO\(haN command. If a left-click is performed with the mouse cursor on an OSC 8 hyperlink which is already selected, the hyperlink is opened as if by the \(haO\(haO command. The number of lines to scroll when the wheel is moved can be set by the \-\-wheel-lines option. Mouse input works only on terminals which support X11 mouse reporting, and on the Windows version of .BR less . .IP "\-\-MOUSE" Like \-\-mouse, except the direction scrolled on mouse wheel movement is reversed. .IP "\-\-no-keypad" Disables sending the keypad initialization and deinitialization strings to the terminal. This is sometimes useful if the keypad strings make the numeric keypad behave in an undesirable manner. .IP "\-\-no-histdups" This option changes the behavior so that if a search string or file name is typed in, and the same string is already in the history list, the existing copy is removed from the history list before the new one is added. Thus, a given string will appear only once in the history list. Normally, a string may appear multiple times. .IP "\-\-no-number-headers" Header lines (defined via the \-\-header option) are not assigned line numbers. Line number 1 is assigned to the first line after any header lines. .IP "\-\-no-search-header-lines" Searches do not include header lines, but still include header columns. .IP "\-\-no-search-header-columns" Searches do not include header columns, but still include header lines. .IP "\-\-no-search-headers" Searches do not include header lines or header columns. .IP "\-\-no-vbell" Disables the terminal's visual bell. .IP "\-\-proc-backspace" If set, backspaces are handled as if neither the \-u option nor the \-U option were set. That is, a backspace adjacent to an underscore causes text to be displayed in underline mode, and a backspace between identical characters cause text to be displayed in boldface mode. This option overrides the \-u and \-U options, so that display of backspaces can be controlled separate from tabs and carriage returns. If not set, backspace display is controlled by the \-u and \-U options. .IP "\-\-PROC-BACKSPACE" If set, backspaces are handled as if the \-U option were set; that is backspaces are treated as control characters. .IP "\-\-proc-return" If set, carriage returns are handled as if neither the \-u option nor the \-U option were set. That is, a carriage return immediately before a newline is deleted. This option overrides the \-u and \-U options, so that display of carriage returns can be controlled separate from that of backspaces and tabs. If not set, carriage return display is controlled by the \-u and \-U options. .IP "\-\-PROC-RETURN" If set, carriage returns are handled as if the \-U option were set; that is carriage returns are treated as control characters. .IP "\-\-proc-tab" If set, tabs are handled as if the \-U option were not set. That is, tabs are expanded to spaces. This option overrides the \-U option, so that display of tabs can be controlled separate from that of backspaces and carriage returns. If not set, tab display is controlled by the \-U options. .IP "\-\-PROC-TAB" If set, tabs are handled as if the \-U option were set; that is tabs are treated as control characters. .IP "\-\-redraw-on-quit" When quitting, after sending the terminal deinitialization string, redraws the entire last screen. On terminals whose terminal deinitialization string causes the terminal to switch from an alternate screen, this makes the last screenful of the current file remain visible after .B less has quit. .IP "\-\-rscroll=\fIc\fP" This option changes the character used to mark truncated lines. It may begin with a two-character attribute indicator like LESSBINFMT does. If there is no attribute indicator, standout is used. If set to "\-", truncated lines are not marked. .IP "\-\-save-marks" Save marks in the history file, so marks are retained across different invocations of .BR less . .IP "\-\-search-options=\fI...\fP" Sets default search modifiers. The value is a string of one or more of the characters E, F, K, N, R or W. Setting any of these has the same effect as typing that control character at the beginning of every search pattern. For example, setting \-\-search-options=W is the same as typing \(haW at the beginning of every pattern. The value may also contain a digit between 1 and 5, which has the same effect as typing \(haS followed by that digit at the beginning of every search pattern. The value "-" disables all default search modifiers. .IP "\-\-show-preproc-errors" If a preprocessor produces data, then exits with a non-zero exit code, .B less will display a warning. .IP "\-\-status-col-width=\fIn\fP" Sets the width of the status column when the \-J option is in effect. The default is 2 characters. .IP "\-\-status-line" If a line is marked, the entire line (rather than just the status column) is highlighted. Also lines highlighted due to the \-w option will have the entire line highlighted. If \-\-use-color is set, the line is colored rather than highlighted. .IP "\-\-use-backslash" This option changes the interpretations of options which follow this one. After the \-\-use-backslash option, any backslash in an option string is removed and the following character is taken literally. This allows a dollar sign to be included in option strings. .IP "\-\-use-color" Enables colored text in various places. The \-D option can be used to change the colors. Colored text works only if the terminal supports ANSI color escape sequences (as defined in .nh https://www.ecma-international.org/publications-and-standards/standards/ecma-48). .hy .IP "\-\-wheel-lines=\fIn\fP" Set the number of lines to scroll when the mouse wheel is scrolled and the \-\-mouse or \-\-MOUSE option is in effect. The default is 1 line. .IP "\-\-wordwrap" When the \-S option is not in use, wrap each line at a space or tab if possible, so that a word is not split between two lines. The default is to wrap at any character. .IP \-\- A command line argument of "\-\-" marks the end of option arguments. Any arguments following this are interpreted as filenames. This can be useful when viewing a file whose name begins with a "\-" or "+". .IP + If a command line option begins with \fB+\fP, the remainder of that option is taken to be an initial command to .BR less . For example, +G tells .B less to start at the end of the file rather than the beginning, and +/xyz tells it to start at the first occurrence of "xyz" in the file. As a special case, + acts like +g; that is, it starts the display at the specified line number (however, see the caveat under the "g" command above). If the option starts with ++, the initial command applies to every file being viewed, not just the first one. The + command described previously may also be used to set (or change) an initial command for every file. . .SH "LINE EDITING" When entering a command line at the bottom of the screen (for example, a filename for the :e command, or the pattern for a search command), certain keys can be used to manipulate the command line. Most commands have an alternate form in [ brackets ] which can be used if a key does not exist on a particular keyboard. (Note that the forms beginning with ESC do not work in some MS-DOS and Windows systems because ESC is the line erase character.) Any of these special keys may be entered literally by preceding it with the "literal" character, either \(haV or \(haA. A backslash itself may also be entered literally by entering two backslashes. .IP "LEFTARROW [ ESC-h ]" Move the cursor one space to the left. .IP "RIGHTARROW [ ESC-l ]" Move the cursor one space to the right. .IP "\(haLEFTARROW [ ESC-b or ESC-LEFTARROW ]" (That is, CONTROL and LEFTARROW simultaneously.) Move the cursor one word to the left. .IP "\(haRIGHTARROW [ ESC-w or ESC-RIGHTARROW ]" (That is, CONTROL and RIGHTARROW simultaneously.) Move the cursor one word to the right. .IP "HOME [ ESC-0 ]" Move the cursor to the beginning of the line. .IP "END [ ESC-$ ]" Move the cursor to the end of the line. .IP "BACKSPACE" Delete the character to the left of the cursor, or cancel the command if the command line is empty. .IP "DELETE or [ ESC-x ]" Delete the character under the cursor. .IP "\(haBACKSPACE [ ESC-BACKSPACE ]" (That is, CONTROL and BACKSPACE simultaneously.) Delete the word to the left of the cursor. .IP "\(haDELETE [ ESC-X or ESC-DELETE ]" (That is, CONTROL and DELETE simultaneously.) Delete the word under the cursor. .IP "UPARROW [ ESC-k ]" Retrieve the previous command line. If you first enter some text and then press UPARROW, it will retrieve the previous command which begins with that text. .IP "DOWNARROW [ ESC-j ]" Retrieve the next command line. If you first enter some text and then press DOWNARROW, it will retrieve the next command which begins with that text. .IP "TAB" Complete the partial filename to the left of the cursor. If it matches more than one filename, the first match is entered into the command line. Repeated TABs will cycle thru the other matching filenames. If the completed filename is a directory, a "/" is appended to the filename. (On MS-DOS and Windows systems, a "\e" is appended.) The environment variable LESSSEPARATOR can be used to specify a different character to append to a directory name. .IP "BACKTAB [ ESC-TAB ]" Like, TAB, but cycles in the reverse direction thru the matching filenames. .IP "\(haL" Complete the partial filename to the left of the cursor. If it matches more than one filename, all matches are entered into the command line (if they fit). .IP "\(haU (Unix and OS/2) or ESC (MS-DOS and Windows)" Delete the entire command line, or cancel the command if the command line is empty. If you have changed your line-kill character in Unix to something other than \(haU, that character is used instead of \(haU. .IP "\(haG" Delete the entire command line and return to the main prompt. . .SH "KEY BINDINGS" You may define your own .B less commands by creating a lesskey source file. This file specifies a set of command keys and an action associated with each key. You may also change the line-editing keys (see LINE EDITING), and set environment variables used by .BR less . See the .BR lesskey (1) manual page for details about the file format. .PP If the environment variable LESSKEYIN is set, .B less uses that as the name of the lesskey source file. Otherwise, .B less looks in a standard place for the lesskey source file: On Unix systems, .B less looks for a lesskey file called "$XDG_CONFIG_HOME/lesskey" or "$HOME/.config/lesskey" or "$HOME/.lesskey". On MS-DOS and Windows systems, .B less looks for a lesskey file called "$HOME/_lesskey", and if it is not found there, then looks for a lesskey file called "_lesskey" in any directory specified in the PATH environment variable. On OS/2 systems, .B less looks for a lesskey file called "$HOME/lesskey.ini", and if it is not found, then looks for a lesskey file called "lesskey.ini" in any directory specified in the INIT environment variable, and if it not found there, then looks for a lesskey file called "lesskey.ini" in any directory specified in the PATH environment variable. .PP A system-wide lesskey source file may also be set up to provide key bindings. If a key is defined in both a local lesskey file and in the system-wide file, key bindings in the local file take precedence over those in the system-wide file. If the environment variable LESSKEYIN_SYSTEM is set, .B less uses that as the name of the system-wide lesskey file. Otherwise, .B less looks in a standard place for the system-wide lesskey file: On Unix systems, the system-wide lesskey file is /usr/local/etc/syslesskey. (However, if .B less was built with a different sysconf directory than /usr/local/etc, that directory is where the sysless file is found.) On MS-DOS and Windows systems, the system-wide lesskey file is c:\e_syslesskey. On OS/2 systems, the system-wide lesskey file is c:\esyslesskey.ini. .PP Previous versions of .B less (before v582) used lesskey files with a binary format, produced by the .B lesskey program. It is no longer necessary to use the .B lesskey program. . .SH "INPUT PREPROCESSOR" You may define an "input preprocessor" for .BR less . Before .B less opens a file, it first gives your input preprocessor a chance to modify the way the contents of the file are displayed. An input preprocessor is simply an executable program (or shell script), which writes the contents of the file to a different file, called the replacement file. The contents of the replacement file are then displayed in place of the contents of the original file. However, it will appear to the user as if the original file is opened; that is, .B less will display the original filename as the name of the current file. .PP An input preprocessor receives one command line argument, the original filename, as entered by the user. It should create the replacement file, and when finished, print the name of the replacement file to its standard output. If the input preprocessor does not output a replacement filename, .B less uses the original file, as normal. The input preprocessor is not called when viewing standard input. To set up an input preprocessor, set the LESSOPEN environment variable to a command line which will invoke your input preprocessor. This command line should include one occurrence of the string "%s", which will be replaced by the filename when the input preprocessor command is invoked. .PP When .B less closes a file opened in such a way, it will call another program, called the input postprocessor, which may perform any desired clean-up action (such as deleting the replacement file created by LESSOPEN). This program receives two command line arguments, the original filename as entered by the user, and the name of the replacement file. To set up an input postprocessor, set the LESSCLOSE environment variable to a command line which will invoke your input postprocessor. It may include two occurrences of the string "%s"; the first is replaced with the original name of the file and the second with the name of the replacement file, which was output by LESSOPEN. .PP For example, on many Unix systems, these two scripts will allow you to keep files in compressed format, but still let .B less view them directly: .PP lessopen.sh: .br #! /bin/sh .br case "$1" in .br *.Z) TEMPFILE=$(mktemp) .br uncompress \-c $1 >$TEMPFILE 2>/dev/null .br if [ \-s $TEMPFILE ]; then .br echo $TEMPFILE .br else .br rm \-f $TEMPFILE .br fi .br ;; .br esac .PP lessclose.sh: .br #! /bin/sh .br rm $2 .PP To use these scripts, put them both where they can be executed and set LESSOPEN="lessopen.sh\ %s", and LESSCLOSE="lessclose.sh\ %s\ %s". More complex LESSOPEN and LESSCLOSE scripts may be written to accept other types of compressed files, and so on. .PP It is also possible to set up an input preprocessor to pipe the file data directly to .BR less , rather than putting the data into a replacement file. This avoids the need to decompress the entire file before starting to view it. An input preprocessor that works this way is called an input pipe. An input pipe, instead of writing the name of a replacement file on its standard output, writes the entire contents of the replacement file on its standard output. If the input pipe does not write any characters on its standard output, then there is no replacement file and .B less uses the original file, as normal. To use an input pipe, make the first character in the LESSOPEN environment variable a vertical bar (|) to signify that the input preprocessor is an input pipe. As with non-pipe input preprocessors, the command string must contain one occurrence of %s, which is replaced with the filename of the input file. .PP For example, on many Unix systems, this script will work like the previous example scripts: .PP lesspipe.sh: .br #! /bin/sh .br case "$1" in .br *.Z) uncompress \-c $1 2>/dev/null .br ;; .br *) exit 1 .br ;; .br esac .br exit $? .br .PP To use this script, put it where it can be executed and set LESSOPEN="|lesspipe.sh %s". .PP Note that a preprocessor cannot output an empty file, since that is interpreted as meaning there is no replacement, and the original file is used. To avoid this, if LESSOPEN starts with two vertical bars, the exit status of the script determines the behavior when the output is empty. If the output is empty and the exit status is zero, the empty output is considered to be replacement text. If the output is empty and the exit status is nonzero, the original file is used. For compatibility with previous versions of .BR less , if LESSOPEN starts with only one vertical bar, the exit status of the preprocessor is ignored. .PP When an input pipe is used, a LESSCLOSE postprocessor can be used, but it is usually not necessary since there is no replacement file to clean up. In this case, the replacement file name passed to the LESSCLOSE postprocessor is "\-". .PP For compatibility with previous versions of .BR less , the input preprocessor or pipe is not used if .B less is viewing standard input. However, if the first character of LESSOPEN is a dash (\-), the input preprocessor is used on standard input as well as other files. In this case, the dash is not considered to be part of the preprocessor command. If standard input is being viewed, the input preprocessor is passed a file name consisting of a single dash. Similarly, if the first two characters of LESSOPEN are vertical bar and dash (|\-) or two vertical bars and a dash (||\-), the input pipe is used on standard input as well as other files. Again, in this case the dash is not considered to be part of the input pipe command. . .SH "NATIONAL CHARACTER SETS" There are three types of characters in the input file: .IP "normal characters" can be displayed directly to the screen. .IP "control characters" should not be displayed directly, but are expected to be found in ordinary text files (such as backspace and tab). .IP "binary characters" should not be displayed directly and are not expected to be found in text files. .PP A "character set" is simply a description of which characters are to be considered normal, control, and binary. The LESSCHARSET environment variable may be used to select a character set. Possible values for LESSCHARSET are: .IP ascii BS, TAB, NL, CR, and formfeed are control characters, all chars with values between 32 and 126 are normal, and all others are binary. .IP iso8859 Selects an ISO 8859 character set. This is the same as ASCII, except characters between 160 and 255 are treated as normal characters. .IP latin1 Same as iso8859. .IP latin9 Same as iso8859. .IP dos Selects a character set appropriate for MS-DOS. .IP ebcdic Selects an EBCDIC character set. .IP IBM-1047 Selects an EBCDIC character set used by OS/390 Unix Services. This is the EBCDIC analogue of latin1. You get similar results by setting either LESSCHARSET=IBM-1047 or LC_CTYPE=en_US in your environment. .IP koi8-r Selects a Russian character set. .IP next Selects a character set appropriate for NeXT computers. .IP utf-8 Selects the UTF-8 encoding of the ISO 10646 character set. UTF-8 is special in that it supports multi-byte characters in the input file. It is the only character set that supports multi-byte characters. .IP windows Selects a character set appropriate for Microsoft Windows (cp 1252). .PP In rare cases, it may be desired to tailor .B less to use a character set other than the ones definable by LESSCHARSET. In this case, the environment variable LESSCHARDEF can be used to define a character set. It should be set to a string where each character in the string represents one character in the character set. The character ".\&" is used for a normal character, "c" for control, and "b" for binary. A decimal number may be used for repetition. For example, "bccc4b.\&" would mean character 0 is binary, 1, 2 and 3 are control, 4, 5, 6 and 7 are binary, and 8 is normal. All characters after the last are taken to be the same as the last, so characters 9 through 255 would be normal. (This is an example, and does not necessarily represent any real character set.) .PP This table shows the value of LESSCHARDEF which is equivalent to each of the possible values for LESSCHARSET: . .RS 5m .TS l l. ascii 8bcccbcc18b95.b dos 8bcccbcc12bc5b95.b. ebcdic 5bc6bcc7bcc41b.9b7.9b5.b..8b6.10b6.b9.7b 9.8b8.17b3.3b9.7b9.8b8.6b10.b.b.b. IBM-1047 4cbcbc3b9cbccbccbb4c6bcc5b3cbbc4bc4bccbc 191.b iso8859 8bcccbcc18b95.33b. koi8-r 8bcccbcc18b95.b128. latin1 8bcccbcc18b95.33b. next 8bcccbcc18b95.bb125.bb .TE .RE .PP If neither LESSCHARSET nor LESSCHARDEF is set, but any of the strings "UTF-8", "UTF8", "utf-8" or "utf8" is found in the LC_ALL, LC_CTYPE or LANG environment variables, then the default character set is utf-8. .PP If that string is not found, but your system supports the .B setlocale interface, .B less will use setlocale to determine the character set. setlocale is controlled by setting the LANG or LC_CTYPE environment variables. .PP Finally, if the .I setlocale interface is also not available, the default character set is utf-8. .PP Control and binary characters are displayed in standout (reverse video). Each such character is displayed in caret notation if possible (e.g.\& \(haA for control-A). Caret notation is used only if inverting the 0100 bit results in a normal printable character. Otherwise, the character is displayed as a hex number in angle brackets. This format can be changed by setting the LESSBINFMT environment variable. LESSBINFMT may begin with a "*" and one character to select the display attribute: "*k" is blinking, "*d" is bold, "*u" is underlined, "*s" is standout, and "*n" is normal. If LESSBINFMT does not begin with a "*", normal attribute is assumed. The remainder of LESSBINFMT is a string which may include one printf-style escape sequence (a % followed by x, X, o, d, etc.). For example, if LESSBINFMT is "*u[%x]", binary characters are displayed in underlined hexadecimal surrounded by brackets. The default if no LESSBINFMT is specified is "*s<%02X>". Warning: the result of expanding the character via LESSBINFMT must be less than 31 characters. .PP When the character set is utf-8, the LESSUTFBINFMT environment variable acts similarly to LESSBINFMT but it applies to Unicode code points that were successfully decoded but are unsuitable for display (e.g., unassigned code points). Its default value is "". Note that LESSUTFBINFMT and LESSBINFMT share their display attribute setting ("*x") so specifying one will affect both; LESSUTFBINFMT is read after LESSBINFMT so its setting, if any, will have priority. Problematic octets in a UTF-8 file (octets of a truncated sequence, octets of a complete but non-shortest form sequence, invalid octets, and stray trailing octets) are displayed individually using LESSBINFMT so as to facilitate diagnostic of how the UTF-8 file is ill-formed. .PP When the character set is utf-8, in rare cases it may be desirable to override the Unicode definition of the type of certain characters. For example, characters in a Private Use Area are normally treated as control characters, but if you are using a custom font with printable characters in that range, it may be desirable to tell .B less to treat such characters as printable. This can be done by setting the LESSUTFCHARDEF environment variable to a comma-separated list of .I "character type" definitions. Each character type definition consists of either one hexadecimal codepoint or a pair of codepoints separated by a dash, followed by a colon and a type character. Each hexadecimal codepoint may optionally be preceded by a "U" or "U+". If a pair of codepoints is given, the type is set for all characters inclusively between the two values. If there are multiple comma-separated codepoint values, they must be in ascending numerical order. The type character may be one of: .RS .IP "p" A normal printable character. .IP "w" A wide (2-space) printable character. .IP "b" A binary (non-printable) character. .IP "c" A composing (zero width) character. .RE .PP For example, setting LESSUTFCHARDEF to .nf .sp E000-F8FF:p,F0000-FFFFD:p,100000-10FFFD:p .sp .fi would make all Private Use Area characters be treated as printable. .SH "PROMPTS" The \-P option allows you to tailor the prompt to your preference. The string given to the \-P option replaces the specified prompt string. Certain characters in the string are interpreted specially. The prompt mechanism is rather complicated to provide flexibility, but the ordinary user need not understand the details of constructing personalized prompt strings. .sp A percent sign followed by a single character is expanded according to what the following character is. (References to the input file size below refer to the preprocessed size, if an input preprocessor is being used.) .IP "%b\fIX\fP" Replaced by the byte offset into the current input file. The b is followed by a single character (shown as \fIX\fP above) which specifies the line whose byte offset is to be used. If the character is a "t", the byte offset of the top line in the display is used, an "m" means use the middle line, a "b" means use the bottom line, a "B" means use the line just after the bottom line, and a "j" means use the "target" line, as specified by the \-j option. .IP "%B" Replaced by the size of the current input file. .IP "%c" Replaced by the column number of the text appearing in the first column of the screen. .IP "%d\fIX\fP" Replaced by the page number of a line in the input file. The line to be used is determined by the \fIX\fP, as with the %b option. .IP "%D" Replaced by the number of pages in the input file, or equivalently, the page number of the last line in the input file. .IP "%E" Replaced by the name of the editor (from the VISUAL environment variable, or the EDITOR environment variable if VISUAL is not defined). See the discussion of the LESSEDIT feature below. .IP "%f" Replaced by the name of the current input file. .IP "%F" Replaced by the last component of the name of the current input file. .IP "%g" Replaced by the shell-escaped name of the current input file. This is useful when the expanded string will be used in a shell command, such as in LESSEDIT. .IP "%i" Replaced by the index of the current file in the list of input files. .IP "%l\fIX\fP" Replaced by the line number of a line in the input file. The line to be used is determined by the \fIX\fP, as with the %b option. .IP "%L" Replaced by the line number of the last line in the input file. .IP "%m" Replaced by the total number of input files. .IP "%o" Replaced by the URI of the currently selected OSC 8 hyperlink, or a question mark if no hyperlink is selected. This is used by OSC 8 handlers as explained in the \(haO\(haO command description. .IP "%p\fIX\fP" Replaced by the percent into the current input file, based on byte offsets. The line used is determined by the \fIX\fP as with the %b option. .IP "%P\fIX\fP" Replaced by the percent into the current input file, based on line numbers. The line used is determined by the \fIX\fP as with the %b option. .IP "%s" Same as %B. .IP "%t" Causes any trailing spaces to be removed. Usually used at the end of the string, but may appear anywhere. .IP "%T" Normally expands to the word "file". However if viewing files via a tags list using the \-t option, it expands to the word "tag". .IP "%x" Replaced by the name of the next input file in the list. .PP If any item is unknown (for example, the file size if input is a pipe), a question mark is printed instead. .PP The format of the prompt string can be changed depending on certain conditions. A question mark followed by a single character acts like an "IF": depending on the following character, a condition is evaluated. If the condition is true, any characters following the question mark and condition character, up to a period, are included in the prompt. If the condition is false, such characters are not included. A colon appearing between the question mark and the period can be used to establish an "ELSE": any characters between the colon and the period are included in the string if and only if the IF condition is false. Condition characters (which follow a question mark) may be: .IP "?a" True if any characters have been included in the prompt so far. .IP "?b\fIX\fP" True if the byte offset of the specified line is known. .IP "?B" True if the size of current input file is known. .IP "?c" True if the text is horizontally shifted (%c is not zero). .IP "?d\fIX\fP" True if the page number of the specified line is known. .IP "?e" True if at end-of-file. .IP "?f" True if there is an input filename (that is, if input is not a pipe). .IP "?l\fIX\fP" True if the line number of the specified line is known. .IP "?L" True if the line number of the last line in the file is known. .IP "?m" True if there is more than one input file. .IP "?n" True if this is the first prompt in a new input file. .IP "?p\fIX\fP" True if the percent into the current input file, based on byte offsets, of the specified line is known. .IP "?P\fIX\fP" True if the percent into the current input file, based on line numbers, of the specified line is known. .IP "?s" Same as "?B". .IP "?x" True if there is a next input file (that is, if the current input file is not the last one). .PP Any characters other than the special ones (question mark, colon, period, percent, and backslash) become literally part of the prompt. Any of the special characters may be included in the prompt literally by preceding it with a backslash. .PP Some examples: .sp ?f%f:Standard input. .sp This prompt prints the filename, if known; otherwise the string "Standard input". .sp ?f%f \&.?ltLine %lt:?pt%pt\e%:?btByte %bt:-... .sp This prompt would print the filename, if known. The filename is followed by the line number, if known, otherwise the percent if known, otherwise the byte offset if known. Otherwise, a dash is printed. Notice how each question mark has a matching period, and how the % after the %pt is included literally by escaping it with a backslash. .sp ?n?f%f\ .?m(%T %i of %m)\ ..?e(END)\ ?x-\ Next\e:\ %x..%t .sp This prints the filename if this is the first prompt in a file, followed by the "file N of N" message if there is more than one input file. Then, if we are at end-of-file, the string "(END)" is printed followed by the name of the next file, if there is one. Finally, any trailing spaces are truncated. This is the default prompt. For reference, here are the defaults for the other two prompts (\-m and \-M respectively). Each is broken into two lines here for readability only. .nf .sp ?n?f%f\ .?m(%T\ %i\ of\ %m)\ ..?e(END)\ ?x-\ Next\e:\ %x.: ?pB%pB\e%:byte\ %bB?s/%s...%t .sp ?f%f\ .?n?m(%T\ %i\ of\ %m)\ ..?ltlines\ %lt-%lb?L/%L.\ : byte\ %bB?s/%s.\ .?e(END)\ ?x-\ Next\e:\ %x.:?pB%pB\e%..%t .sp .fi And here is the default message produced by the = command: .nf .sp ?f%f\ .?m(%T\ %i\ of\ %m)\ .?ltlines\ %lt-%lb?L/%L.\ . byte\ %bB?s/%s.\ ?e(END)\ :?pB%pB\e%..%t .fi .PP The prompt expansion features are also used for another purpose: if an environment variable LESSEDIT is defined, it is used as the command to be executed when the v command is invoked. The LESSEDIT string is expanded in the same way as the prompt strings. The default value for LESSEDIT is: .nf .sp %E\ ?lm+%lm.\ %g .sp .fi Note that this expands to the editor name, followed by a + and the line number, followed by the shell-escaped file name. If your editor does not accept the "+linenumber" syntax, or has other differences in invocation syntax, the LESSEDIT variable can be changed to modify this default. . .SH SECURITY When the environment variable LESSSECURE is set to 1, .B less runs in a "secure" mode. In this mode, these features are disabled: .IP "edit" 10 the edit command (v) .IP "examine" the examine command (:e) .IP "glob" metacharacters such as * in filenames, .br and filename completion (TAB, \(haL) .IP "history" history file .IP "lesskey" use of lesskey files (-k and \-\-lesskey-src) .IP "lessopen" input preprocessor (LESSOPEN environment variable) .IP "logfile" log files (s and \-o) .IP "osc8" opening OSC 8 links (\(haO\(haO) .IP "pipe" the pipe command (|) .IP "shell" the shell and pshell commands (! and #) .IP "stop" stopping .B less via a SIGSTOP signal .IP "tags" use of tags files (-t) .PP The LESSSECURE_ALLOW environment variable can be set to a comma-separated list of names of features which are selectively enabled when LESSSECURE is set. Each feature name is the first word in each line in the above list. A feature name may be abbreviated as long as the abbreviation is unambiguous. For example, if .nh LESSSECURE=1 .hy and .nh LESSSECURE_ALLOW=hist,edit .hy were set, all of the above features would be disabled except for history files and the edit command. .PP Less can also be compiled to be permanently in "secure" mode. In that case, the LESSSECURE and LESSSECURE_ALLOW variables are ignored. . .SH "COMPATIBILITY WITH MORE" If the environment variable LESS_IS_MORE is set to 1, or if the program is invoked via a file link named "more", .B less behaves (mostly) in conformance with the POSIX .BR more (1) command specification. In this mode, less behaves differently in these ways: .PP The \-e option works differently. If the \-e option is not set, .B less behaves as if the \-e option were set. If the \-e option is set, .B less behaves as if the \-E option were set. .PP The \-m option works differently. If the \-m option is not set, the medium prompt is used, and it is prefixed with the string "\-\-More\-\-". If the \-m option is set, the short prompt is used. .PP The \-n option acts like the \-z option. The normal behavior of the \-n option is unavailable in this mode. .PP The parameter to the \-p option is taken to be a .B less command rather than a search pattern. .PP The LESS environment variable is ignored, and the MORE environment variable is used in its place. . .SH "ENVIRONMENT VARIABLES" Environment variables may be specified either in the system environment as usual, or in a .BR lesskey (1) file. If environment variables are defined in more than one place, variables defined in a local lesskey file take precedence over variables defined in the system environment, which take precedence over variables defined in the system-wide lesskey file. .IP COLUMNS Sets the number of columns on the screen. Takes precedence over the number of columns specified by the TERM variable. (But if you have a windowing system which supports TIOCGWINSZ or WIOCGETD, the window system's idea of the screen size takes precedence over the LINES and COLUMNS environment variables.) .IP EDITOR The name of the editor (used for the v command). .IP HOME Name of the user's home directory (used to find a lesskey file on Unix and OS/2 systems). .IP "HOMEDRIVE, HOMEPATH" Concatenation of the HOMEDRIVE and HOMEPATH environment variables is the name of the user's home directory if the HOME variable is not set (only in the Windows version). .IP INIT Name of the user's init directory (used to find a lesskey file on OS/2 systems). .IP LANG Language for determining the character set. .IP LC_CTYPE Language for determining the character set. .IP LESS Options which are passed to .B less automatically. .IP LESSANSIENDCHARS Characters which may end an ANSI color escape sequence (default "m"). .IP LESSANSIMIDCHARS Characters which may appear between the ESC character and the end character in an ANSI color escape sequence (default "0123456789:;[?!"\(aq#%()*+\ ". .IP LESSBINFMT Format for displaying non-printable, non-control characters. .IP LESSCHARDEF Defines a character set. .IP LESSCHARSET Selects a predefined character set. .IP LESSCLOSE Command line to invoke the (optional) input-postprocessor. .IP LESSECHO Name of the lessecho program (default "lessecho"). The lessecho program is needed to expand metacharacters, such as * and ?, in filenames on Unix systems. .IP LESSEDIT Editor prototype string (used for the v command). See discussion under PROMPTS. .IP LESSGLOBALTAGS Name of the command used by the \-t option to find global tags. Normally should be set to "global" if your system has the .BR global (1) command. If not set, global tags are not used. .IP LESSHISTFILE Name of the history file used to remember search commands and shell commands between invocations of .BR less . If set to "\-" or "/dev/null", a history file is not used. The default depends on the operating system, but is usually: .RS .IP "Linux and Unix" "$XDG_STATE_HOME/lesshst" or "$HOME/.local/state/lesshst" or "$XDG_DATA_HOME/lesshst" or "$HOME/.lesshst". .IP "Windows and MS-DOS" "$HOME/_lesshst". .IP "OS/2" "$HOME/lesshst.ini" or "$INIT/lesshst.ini". .RE .IP LESSHISTSIZE The maximum number of commands to save in the history file. The default is 100. .IP LESSKEYIN Name of the default .I "lesskey source" file. .IP LESSKEY Name of the default .I "lesskey binary" file. (Not used if "$LESSKEYIN" exists.) .IP LESSKEY_CONTENT The value is parsed as if it were the parameter of a \-\-lesskey-content option. .IP LESSKEYIN_SYSTEM Name of the default system-wide .I "lesskey source" file. .IP LESSKEY_SYSTEM Name of the default system-wide .I "lesskey binary" file. (Not used if "$LESSKEYIN_SYSTEM" exists.) .IP LESSMETACHARS List of characters which are considered "metacharacters" by the shell. .IP LESSMETAESCAPE Prefix which less will add before each metacharacter in a command sent to the shell. If LESSMETAESCAPE is an empty string, commands containing metacharacters will not be passed to the shell. .IP LESSOPEN Command line to invoke the (optional) input-preprocessor. .IP LESSSECURE Runs less in "secure" mode. See discussion under SECURITY. .IP LESSSECURE_ALLOW Enables individual features which are normally disabled by LESSSECURE. See discussion under SECURITY. .IP LESSSEPARATOR String to be appended to a directory name in filename completion. .IP LESSUTFBINFMT Format for displaying non-printable Unicode code points. .IP LESSUTFCHARDEF Overrides the type of specified Unicode characters. .IP LESS_COLUMNS Sets the number of columns on the screen. Unlike COLUMNS, takes precedence over the system's idea of the screen size, so it can be used to make .B less use less than the full screen width. If set to a negative number, sets the number of columns used to this much less than the actual screen width. .IP LESS_LINES Sets the number of lines on the screen. Unlike LINES, takes precedence over the system's idea of the screen size, so it can be used to make .B less use less than the full screen height. If set to a negative number, sets the number of lines used to this much less than the actual screen height. When set, .B less repaints the entire screen on every movement command, so scrolling may be slower. .IP LESS_DATA_DELAY Duration (in milliseconds) after starting to read data from the input, after which the "Waiting for data" message will be displayed. The default is 4000 (4 seconds). .IP LESS_IS_MORE Emulate the .BR more (1) command. .IP LESS_OSC8_xxx Where "xxx" is a URI scheme such as "http" or "file", sets an OSC 8 handler for opening OSC 8 links containing a URI with that scheme. .IP LESS_OSC8_ANY Sets an OSC 8 handler for opening OSC 8 links for which there is no specific LESS_OSC8_xxx handler set for the "xxx" scheme. .IP LESS_TERMCAP_xx Where "xx" is any two characters, overrides the definition of the termcap "xx" capability for the terminal. .IP LESS_UNSUPPORT A space-separated list of command line options. These options will be ignored (with no error message) if they appear on the command line or in the LESS environment variable. Options listed in LESS_UNSUPPORT can still be changed by the \- and \-\- commands. Each option in LESS_UNSUPPORT is a dash followed by a single character option letter, or two dashes followed by a long option name. .IP LINES Sets the number of lines on the screen. Takes precedence over the number of lines specified by the TERM variable. (But if you have a windowing system which supports TIOCGWINSZ or WIOCGETD, the window system's idea of the screen size takes precedence over the LINES and COLUMNS environment variables.) .IP MORE Options which are passed to .B less automatically when running in .BR more "-compatible mode." .IP PATH User's search path (used to find a lesskey file on MS-DOS, Windows, and OS/2 systems). .IP SHELL The shell used to execute the !\& command, as well as to expand filenames. .IP TERM The type of terminal on which .B less is being run. .IP VISUAL The name of the editor (used for the v command). .IP XDG_CONFIG_HOME Possible location of the .B lesskey file; see the KEY BINDINGS section. .IP XDG_DATA_HOME Possible location of the history file; see the description of the LESSHISTFILE environment variable. .IP XDG_STATE_HOME Possible location of the history file; see the description of the LESSHISTFILE environment variable. . .SH "SEE ALSO" .BR lesskey (1), .BR lessecho (1) . .SH COPYRIGHT Copyright (C) 1984-2024 Mark Nudelman .PP less is part of the GNU project and is free software. You can redistribute it and/or modify it under the terms of either (1) the GNU General Public License as published by the Free Software Foundation; or (2) the Less License. See the file README in the less distribution for more details regarding redistribution. You should have received a copy of the GNU General Public License along with the source for less; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. You should also have received a copy of the Less License; see the file LICENSE. .PP less is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . .SH AUTHOR . Mark Nudelman .br Report bugs at .nh https://github.com/gwsw/less/issues. .hy .br For more information, see the less homepage at .br .nh https://greenwoodsoftware.com/less. .hy less-668/lessecho.c0000444060175306017530000001241114700607644013347 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * lessecho [-ox] [-cx] [-pn] [-dn] [-a] file ... * Simply echos its filename arguments on standard output. * But any argument containing spaces is enclosed in quotes. * * -ox Specifies "x" to be the open quote character. * -cx Specifies "x" to be the close quote character. * -pn Specifies "n" to be the open quote character, as an integer. * -dn Specifies "n" to be the close quote character, as an integer. * -mx Specifies "x" to be a metachar. * -nn Specifies "n" to be a metachar, as an integer. * -ex Specifies "x" to be the escape char for metachars. * -fn Specifies "x" to be the escape char for metachars, as an integer. * -a Specifies that all arguments are to be quoted. * The default is that only arguments containing spaces are quoted. */ #include "less.h" static char *version = "$Revision: 1.15 $"; static int quote_all = 0; static char openquote = '"'; static char closequote = '"'; static char *meta_escape = "\\"; static char meta_escape_buf[2]; static char* metachars = NULL; static int num_metachars = 0; static int size_metachars = 0; static void pr_usage(void) { fprintf(stderr, "usage: lessecho [-ox] [-cx] [-pn] [-dn] [-mx] [-nn] [-ex] [-fn] [-a] file ...\n"); } static void pr_version(void) { char *p; char buf[10]; char *pbuf = buf; for (p = version; *p != ' '; p++) if (*p == '\0') return; for (p++; *p != '$' && *p != ' ' && *p != '\0'; p++) *pbuf++ = *p; *pbuf = '\0'; printf("%s\n", buf); } static void pr_error(char *s) { fprintf(stderr, "%s\n", s); exit(1); } static long lstrtol(char *s, char **pend, int radix) { int v; int neg = 0; long n = 0; /* Skip leading white space. */ while (*s == ' ' || *s == '\t') s++; /* Check for a leading + or -. */ if (*s == '-') { neg = 1; s++; } else if (*s == '+') { s++; } /* Determine radix if caller does not specify. */ if (radix == 0) { radix = 10; if (*s == '0') { switch (*++s) { case 'x': radix = 16; s++; break; default: radix = 8; break; } } } /* Parse the digits of the number. */ for (;;) { if (*s >= '0' && *s <= '9') v = *s - '0'; else if (*s >= 'a' && *s <= 'f') v = *s - 'a' + 10; else if (*s >= 'A' && *s <= 'F') v = *s - 'A' + 10; else break; if (v >= radix) break; n = n * radix + v; s++; } if (pend != NULL) { /* Skip trailing white space. */ while (*s == ' ' || *s == '\t') s++; *pend = s; } if (neg) return (-n); return (n); } static void add_metachar(char ch) { if (num_metachars+1 >= size_metachars) { char *p; size_metachars = (size_metachars > 0) ? size_metachars*2 : 16; p = (char *) malloc((size_t) size_metachars); if (p == NULL) pr_error("Cannot allocate memory"); if (metachars != NULL) { strcpy(p, metachars); free(metachars); } metachars = p; } metachars[num_metachars++] = ch; metachars[num_metachars] = '\0'; } static int is_metachar(int ch) { return (metachars != NULL && strchr(metachars, ch) != NULL); } #if !HAVE_STRCHR char * strchr(char *s, char c) { for ( ; *s != '\0'; s++) if (*s == c) return (s); if (c == '\0') return (s); return (NULL); } #endif int main(int argc, char *argv[]) { char *arg; char *s; int no_more_options; no_more_options = 0; while (--argc > 0) { arg = *++argv; if (*arg != '-' || no_more_options) break; switch (*++arg) { case 'a': quote_all = 1; break; case 'c': closequote = *++arg; break; case 'd': closequote = (char) lstrtol(++arg, &s, 0); if (s == arg) pr_error("Missing number after -d"); break; case 'e': if (strcmp(++arg, "-") == 0) meta_escape = ""; else meta_escape = arg; break; case 'f': meta_escape_buf[0] = (char) lstrtol(++arg, &s, 0); meta_escape_buf[1] = '\0'; meta_escape = meta_escape_buf; if (s == arg) pr_error("Missing number after -f"); break; case 'o': openquote = *++arg; break; case 'p': openquote = (char) lstrtol(++arg, &s, 0); if (s == arg) pr_error("Missing number after -p"); break; case 'm': add_metachar(*++arg); break; case 'n': add_metachar((char) lstrtol(++arg, &s, 0)); if (s == arg) pr_error("Missing number after -n"); break; case '?': pr_usage(); return (0); case '-': if (*++arg == '\0') { no_more_options = 1; break; } if (strcmp(arg, "version") == 0) { pr_version(); return (0); } if (strcmp(arg, "help") == 0) { pr_usage(); return (0); } pr_error("Invalid option after --"); return (0); default: pr_error("Invalid option letter"); } } while (argc-- > 0) { int has_meta = 0; arg = *argv++; for (s = arg; *s != '\0'; s++) { if (is_metachar(*s)) { has_meta = 1; break; } } if (quote_all || (has_meta && strlen(meta_escape) == 0)) printf("%c%s%c", openquote, arg, closequote); else { for (s = arg; *s != '\0'; s++) { if (is_metachar(*s)) printf("%s", meta_escape); printf("%c", *s); } } if (argc > 0) printf(" "); else printf("\n"); } return (0); } less-668/lessecho.man0000444060175306017530000000454014700607662013704 0ustar marknmarknLESSECHO(1) General Commands Manual LESSECHO(1) NAME lessecho - expand metacharacters SYNOPSIS lessecho [‐ox] [‐cx] [‐pn] [‐dn] [‐mx] [‐nn] [‐ex] [‐a] file ... DESCRIPTION lessecho is a program that simply echos its arguments on standard out‐ put. But any metacharacter in the output is preceded by an "escape" character, which by default is a backslash. lessecho is invoked inter‐ nally by less, and is not intended to be used directly by humans. OPTIONS A summary of options is included below. -ex Specifies "x", rather than backslash, to be the escape char for metachars. If x is "‐", no escape char is used and arguments containing metachars are surrounded by quotes instead. -ox Specifies "x", rather than double‐quote, to be the open quote character, which is used if the -e‐ option is specified. -cx Specifies "x" to be the close quote character. -pn Specifies "n" to be the open quote character, as an integer. -dn Specifies "n" to be the close quote character, as an integer. -mx Specifies "x" to be a metachar. By default, no characters are considered metachars. -nn Specifies "n" to be a metachar, as an integer. -fn Specifies "n" to be the escape char for metachars, as an inte‐ ger. -a Specifies that all arguments are to be quoted. The default is that only arguments containing metacharacters are quoted. SEE ALSO less(1) AUTHOR This manual page was written by Thomas Schoepf , for the Debian GNU/Linux system (but may be used by others). Report bugs at https://github.com/gwsw/less/issues. Version 668: 06 Oct 2024 LESSECHO(1) less-668/lessecho.nro0000444060175306017530000000332114700607661013722 0ustar marknmarkn.TH LESSECHO 1 "Version 668: 06 Oct 2024" .SH NAME lessecho \- expand metacharacters .SH SYNOPSIS .B lessecho .I "[-ox] [-cx] [-pn] [-dn] [-mx] [-nn] [-ex] [-a] file ..." .SH "DESCRIPTION" .B lessecho is a program that simply echos its arguments on standard output. But any metacharacter in the output is preceded by an "escape" character, which by default is a backslash. .B lessecho is invoked internally by .BR less , and is not intended to be used directly by humans. .SH OPTIONS A summary of options is included below. .TP .B \-e\fIx\fP Specifies "\fIx\fP", rather than backslash, to be the escape char for metachars. If \fIx\fP is "-", no escape char is used and arguments containing metachars are surrounded by quotes instead. .TP .B \-o\fIx\fP Specifies "\fIx\fP", rather than double-quote, to be the open quote character, which is used if the \-e- option is specified. .TP .B \-c\fIx\fP Specifies "\fIx\fP" to be the close quote character. .TP .B \-p\fIn\fP Specifies "\fIn\fP" to be the open quote character, as an integer. .TP .B \-d\fIn\fP Specifies "\fIn\fP" to be the close quote character, as an integer. .TP .B \-m\fIx\fP Specifies "\fIx\fP" to be a metachar. By default, no characters are considered metachars. .TP .B \-n\fIn\fP Specifies "\fIn\fP" to be a metachar, as an integer. .TP .B \-f\fIn\fP Specifies "\fIn\fP" to be the escape char for metachars, as an integer. .TP .B \-a Specifies that all arguments are to be quoted. The default is that only arguments containing metacharacters are quoted. .SH "SEE ALSO" .BR less (1) .SH AUTHOR This manual page was written by Thomas Schoepf , for the Debian GNU/Linux system (but may be used by others). .PP Report bugs at https://github.com/gwsw/less/issues. less-668/lesskey.c0000444060175306017530000002255014700607643013225 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * lesskey [-o output] [input] * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Make a .less file. * If no input file is specified, standard input is used. * If no output file is specified, $HOME/.less is used. * * The .less file is used to specify (to "less") user-defined * key bindings. Basically any sequence of 1 to MAX_CMDLEN * keystrokes may be bound to an existing less function. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * The input file is an ascii file consisting of a * sequence of lines of the form: * string action [chars] * * "string" is a sequence of command characters which form * the new user-defined command. The command * characters may be: * 1. The actual character itself. * 2. A character preceded by ^ to specify a * control character (e.g. ^X means control-X). * 3. A backslash followed by one to three octal digits * to specify a character by its octal value. * 4. A backslash followed by b, e, n, r or t * to specify \b, ESC, \n, \r or \t, respectively. * 5. Any character (other than those mentioned above) preceded * by a \ to specify the character itself (characters which * must be preceded by \ include ^, \, and whitespace. * "action" is the name of a "less" action, from the table below. * "chars" is an optional sequence of characters which is treated * as keyboard input after the command is executed. * * Blank lines and lines which start with # are ignored, * except for the special control lines: * #command Signals the beginning of the command * keys section. * #line-edit Signals the beginning of the line-editing * keys section. * #env Signals the beginning of the environment * variable section. * #stop Stops command parsing in less; * causes all default keys to be disabled. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * The output file is a non-ascii file, consisting of a header, * one or more sections, and a trailer. * Each section begins with a section header, a section length word * and the section data. Normally there are three sections: * CMD_SECTION Definition of command keys. * EDIT_SECTION Definition of editing keys. * END_SECTION A special section header, with no * length word or section data. * * Section data consists of zero or more byte sequences of the form: * string <0> * or * string <0> chars <0> * * "string" is the command string. * "<0>" is one null byte. * "" is one byte containing the action code (the A_xxx value). * If action is ORed with A_EXTRA, the action byte is followed * by the null-terminated "chars" string. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include "defines.h" #include #include #include #include "lesskey.h" #include "cmd.h" constant char fileheader[] = { C0_LESSKEY_MAGIC, C1_LESSKEY_MAGIC, C2_LESSKEY_MAGIC, C3_LESSKEY_MAGIC }; constant char filetrailer[] = { C0_END_LESSKEY_MAGIC, C1_END_LESSKEY_MAGIC, C2_END_LESSKEY_MAGIC }; constant char cmdsection[1] = { CMD_SECTION }; constant char editsection[1] = { EDIT_SECTION }; constant char varsection[1] = { VAR_SECTION }; constant char endsection[1] = { END_SECTION }; constant char *infile = NULL; constant char *outfile = NULL; extern char version[]; static void usage(void) { fprintf(stderr, "usage: lesskey [-o output] [input]\n"); exit(1); } void lesskey_parse_error(constant char *s) { fprintf(stderr, "%s\n", s); } int lstrtoi(constant char *buf, constant char **ebuf, int radix) { return (int) strtol(buf, (char**)ebuf, radix); } void out_of_memory(void) { fprintf(stderr, "lesskey: cannot allocate memory\n"); exit(1); } void * ecalloc(size_t count, size_t size) { void *p; p = calloc(count, size); if (p == NULL) out_of_memory(); return (p); } static char * mkpathname(constant char *dirname, constant char *filename) { char *pathname; pathname = ecalloc(strlen(dirname) + strlen(filename) + 2, sizeof(char)); strcpy(pathname, dirname); strcat(pathname, PATHNAME_SEP); strcat(pathname, filename); return (pathname); } /* * Figure out the name of a default file (in the user's HOME directory). */ char * homefile(constant char *filename) { constant char *p; char *pathname; if ((p = getenv("HOME")) != NULL && *p != '\0') pathname = mkpathname(p, filename); #if OS2 else if ((p = getenv("INIT")) != NULL && *p != '\0') pathname = mkpathname(p, filename); #endif else { fprintf(stderr, "cannot find $HOME - using current directory\n"); pathname = mkpathname(".", filename); } return (pathname); } /* * Parse command line arguments. */ static void parse_args(int argc, constant char **argv) { constant char *arg; outfile = NULL; while (--argc > 0) { arg = *++argv; if (arg[0] != '-') /* Arg does not start with "-"; it's not an option. */ break; if (arg[1] == '\0') /* "-" means standard input. */ break; if (arg[1] == '-' && arg[2] == '\0') { /* "--" means end of options. */ argc--; argv++; break; } switch (arg[1]) { case '-': if (strncmp(arg, "--output", 8) == 0) { if (arg[8] == '\0') outfile = &arg[8]; else if (arg[8] == '=') outfile = &arg[9]; else usage(); goto opt_o; } if (strcmp(arg, "--version") == 0) { goto opt_V; } usage(); break; case 'o': outfile = &argv[0][2]; opt_o: if (*outfile == '\0') { if (--argc <= 0) usage(); outfile = *(++argv); } break; case 'V': opt_V: printf("lesskey version %s\n", version); exit(0); default: usage(); } } if (argc > 1) usage(); /* * Open the input file, or use DEF_LESSKEYINFILE if none specified. */ if (argc > 0) infile = *argv; } /* * Output some bytes. */ static void fputbytes(FILE *fd, constant char *buf, size_t len) { while (len-- > 0) { fwrite(buf, sizeof(char), 1, fd); buf++; } } /* * Output an integer, in special KRADIX form. */ static void fputint(FILE *fd, size_t val) { char c1, c2; if (val >= KRADIX*KRADIX) { fprintf(stderr, "error: cannot write %ld, max %ld\n", (long) val, (long) (KRADIX*KRADIX)); exit(1); } c1 = (char) (val % KRADIX); val /= KRADIX; c2 = (char) (val % KRADIX); val /= KRADIX; if (val != 0) { fprintf(stderr, "error: %ld exceeds max integer size (%ld)\n", (long) val, (long) (KRADIX*KRADIX)); exit(1); } fwrite(&c1, sizeof(char), 1, fd); fwrite(&c2, sizeof(char), 1, fd); } int main(int argc, constant char *argv[]) { struct lesskey_tables tables; FILE *out; int errors; #ifdef WIN32 if (getenv("HOME") == NULL) { /* * If there is no HOME environment variable, * try the concatenation of HOMEDRIVE + HOMEPATH. */ constant char *drive = getenv("HOMEDRIVE"); constant char *path = getenv("HOMEPATH"); if (drive != NULL && path != NULL) { char *env = (char *) ecalloc(strlen(drive) + strlen(path) + 6, sizeof(char)); strcpy(env, "HOME="); strcat(env, drive); strcat(env, path); putenv(env); } } #endif /* WIN32 */ /* * Process command line arguments. */ parse_args(argc, argv); errors = parse_lesskey(infile, &tables); if (errors) { fprintf(stderr, "%d errors; no output produced\n", errors); return (1); } fprintf(stderr, "NOTE: lesskey is deprecated.\n It is no longer necessary to run lesskey,\n when using less version 582 and later.\n"); /* * Write the output file. * If no output file was specified, use "$HOME/.less" */ if (outfile == NULL) outfile = getenv("LESSKEY"); if (outfile == NULL) outfile = homefile(LESSKEYFILE); if ((out = fopen(outfile, "wb")) == NULL) { #if HAVE_PERROR perror(outfile); #else fprintf(stderr, "Cannot open %s\n", outfile); #endif return (1); } /* File header */ fputbytes(out, fileheader, sizeof(fileheader)); /* Command key section */ fputbytes(out, cmdsection, sizeof(cmdsection)); fputint(out, tables.cmdtable.buf.end); fputbytes(out, xbuf_char_data(&tables.cmdtable.buf), tables.cmdtable.buf.end); /* Edit key section */ fputbytes(out, editsection, sizeof(editsection)); fputint(out, tables.edittable.buf.end); fputbytes(out, xbuf_char_data(&tables.edittable.buf), tables.edittable.buf.end); /* Environment variable section */ fputbytes(out, varsection, sizeof(varsection)); fputint(out, tables.vartable.buf.end); fputbytes(out, xbuf_char_data(&tables.vartable.buf), tables.vartable.buf.end); /* File trailer */ fputbytes(out, endsection, sizeof(endsection)); fputbytes(out, filetrailer, sizeof(filetrailer)); fclose(out); return (0); } less-668/lesskey.h0000444060175306017530000000441314700607651013227 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ #include "lang.h" #include "xbuf.h" /* * Format of a lesskey file: * * LESSKEY_MAGIC (4 bytes) * sections... * END_LESSKEY_MAGIC (4 bytes) * * Each section is: * * section_MAGIC (1 byte) * section_length (2 bytes) * key table (section_length bytes) */ #define C0_LESSKEY_MAGIC '\0' #define C1_LESSKEY_MAGIC 'M' #define C2_LESSKEY_MAGIC '+' #define C3_LESSKEY_MAGIC 'G' #define CMD_SECTION 'c' #define EDIT_SECTION 'e' #define VAR_SECTION 'v' #define END_SECTION 'x' #define C0_END_LESSKEY_MAGIC 'E' #define C1_END_LESSKEY_MAGIC 'n' #define C2_END_LESSKEY_MAGIC 'd' /* */ #define KRADIX 64 struct lesskey_cmdname { constant char *cn_name; int cn_action; }; struct lesskey_table { constant struct lesskey_cmdname *names; struct xbuffer buf; int is_var; }; struct lesskey_tables { struct lesskey_table *currtable; struct lesskey_table cmdtable; struct lesskey_table edittable; struct lesskey_table vartable; }; extern int parse_lesskey(constant char *infile, struct lesskey_tables *tables); extern int parse_lesskey_content(constant char *content, struct lesskey_tables *tables); /* keep in sync with less.h */ #if HAVE_SNPRINTF #define SNPRINTF1(str, size, fmt, v1) snprintf((str), (size), (fmt), (v1)) #define SNPRINTF2(str, size, fmt, v1, v2) snprintf((str), (size), (fmt), (v1), (v2)) #define SNPRINTF3(str, size, fmt, v1, v2, v3) snprintf((str), (size), (fmt), (v1), (v2), (v3)) #define SNPRINTF4(str, size, fmt, v1, v2, v3, v4) snprintf((str), (size), (fmt), (v1), (v2), (v3), (v4)) #else /* Use unsafe sprintf if we don't have snprintf. */ #define SNPRINTF1(str, size, fmt, v1) sprintf((str), (fmt), (v1)) #define SNPRINTF2(str, size, fmt, v1, v2) sprintf((str), (fmt), (v1), (v2)) #define SNPRINTF3(str, size, fmt, v1, v2, v3) sprintf((str), (fmt), (v1), (v2), (v3)) #define SNPRINTF4(str, size, fmt, v1, v2, v3, v4) sprintf((str), (fmt), (v1), (v2), (v3), (v4)) #endif less-668/lesskey.man0000444060175306017530000004153214700607661013557 0ustar marknmarknLESSKEY(1) General Commands Manual LESSKEY(1) NAME lesskey - customize key bindings for less SYNOPSIS (deprecated) lesskey [-o output] [--] [input] lesskey [--output=output] [--] [input] lesskey -V lesskey --version SCOPE This document describes the format of the lesskey source file, which is used by less version 582 and later. In previous versions of less, a separate program called lesskey was used to compile the lesskey source file into a format understood by less. This compilation step is no longer required and the lesskey program is therefore deprecated, al‐ though the file format remains supported by less itself. DESCRIPTION A lesskey file specifies a set of key bindings and environment vari‐ ables to be used by subsequent invocations of less. FILE FORMAT The input file consists of one or more sections. Each section starts with a line that identifies the type of section. Possible sections are: #command Customizes command key bindings. #line‐edit Customizes line‐editing key bindings. #env Defines environment variables. Blank lines and lines which start with a hash mark (#) are ignored, ex‐ cept as noted below. COMMAND SECTION The command section begins with the line #command If the command section is the first section in the file, this line may be omitted. The command section consists of lines of the form: string action [extra‐string] Whitespace is any sequence of one or more spaces and/or tabs. The string is the command key(s) which invoke the action. The string may be a single command key, or a sequence of up to 15 keys. The action is the name of the less action, from the list below. The characters in the string may appear literally, or be prefixed by a caret to indicate a control key. A backslash followed by one to three octal digits may be used to specify a character by its octal value. A backslash fol‐ lowed by certain characters specifies input characters as follows: \b BACKSPACE (0x08) \e ESCAPE (0x1B) \n NEWLINE (0x0A) \r RETURN (0x0D) \t TAB (0x09) \k followed by a single character represents the char(s) produced when one of these keys is pressed: \kb BACKSPACE (the BACKSPACE key) \kB ctrl‐BACKSPACE \kd DOWN ARROW \kD PAGE DOWN \ke END \kh HOME \ki INSERT \kl LEFT ARROW \kL ctrl‐LEFT ARROW \kr RIGHT ARROW \kR ctrl‐RIGHT ARROW \kt BACKTAB \ku UP ARROW \kU PAGE UP \kx DELETE \kX ctrl‐DELETE \k1 F1 A backslash followed by any other character indicates that charac‐ ter is to be taken literally. Characters which must be preceded by backslash include caret, space, tab, hash mark and the back‐ slash itself. An action may be followed by an "extra" string. When such a com‐ mand is entered while running less, the action is performed, and then the extra string is parsed, just as if it were typed in to less. This feature can be used in certain cases to extend the functionality of a command. For example, see the "{" and ":t" commands in the example below. The extra string has a special meaning for the "quit" action: when less quits, the ASCII value of the first character of the extra string is used as its exit sta‐ tus. EXAMPLE The following input file describes the set of default command keys used by less. Documentation on each command can be found in the less man page, under the key sequence which invokes the command. #command \r forw‐line \n forw‐line e forw‐line j forw‐line \kd forw‐line ˆE forw‐line ˆN forw‐line k back‐line y back‐line ˆY back‐line ˆK back‐line ˆP back‐line J forw‐line‐force K back‐line‐force Y back‐line‐force d forw‐scroll ˆD forw‐scroll u back‐scroll ˆU back‐scroll \40 forw‐screen f forw‐screen ˆF forw‐screen ˆV forw‐screen \kD forw‐screen b back‐screen ˆB back‐screen \ev back‐screen \kU back‐screen z forw‐window w back‐window \e\40 forw‐screen‐force F forw‐forever \eF forw‐until‐hilite R repaint‐flush r repaint ˆR repaint ˆL repaint \eu undo‐hilite \eU clear‐search g goto‐line \kh goto‐line < goto‐line \e< goto‐line p percent % percent \e( left‐scroll \e) right‐scroll \kl left‐scroll \kr right‐scroll \e{ no‐scroll \e} end‐scroll { forw‐bracket {} } back‐bracket {} ( forw‐bracket () ) back‐bracket () [ forw‐bracket [] ] back‐bracket [] \eˆF forw‐bracket \eˆB back‐bracket G goto‐end \e> goto‐end > goto‐end \ke goto‐end \eG goto‐end‐buffered = status ˆG status :f status / forw‐search ? back‐search \e/ forw‐search * \e? back‐search * n repeat‐search \en repeat‐search‐all N reverse‐search \eN reverse‐search‐all ˆOˆN osc8‐forw‐search ˆOn osc8‐forw‐search ˆOˆP osc8‐back‐search ˆOp osc8‐back‐search ˆOˆO osc8‐open & filter m set‐mark M set‐mark‐bottom \em clear‐mark ’ goto‐mark ˆXˆX goto‐mark E examine :e examine ˆXˆV examine :n next‐file :p prev‐file t next‐tag T prev‐tag :x index‐file :d remove‐file ‐ toggle‐option :t toggle‐option t s toggle‐option o ## Use a long option name by starting the ## extra string with ONE dash; eg: ## s toggle‐option ‐log‐file\n _ display‐option | pipe v visual ! shell # pshell + firstcmd H help h help V version 0 digit 1 digit 2 digit 3 digit 4 digit 5 digit 6 digit 7 digit 8 digit 9 digit q quit Q quit :q quit :Q quit ZZ quit PRECEDENCE Commands specified by lesskey take precedence over the default com‐ mands. A default command key may be disabled by including it in the input file with the action "invalid". Alternatively, a key may be de‐ fined to do nothing by using the action "noaction". "noaction" is sim‐ ilar to "invalid", but less will give an error beep for an "invalid" command, but not for a "noaction" command. In addition, ALL default commands may be disabled by adding this control line to the input file: #stop This will cause all default commands to be ignored. The #stop line should be the last line in that section of the file. Be aware that #stop can be dangerous. Since all default commands are disabled, you must provide sufficient commands before the #stop line to enable all necessary actions. For example, failure to provide a "quit" command can lead to frustration. LINE EDITING SECTION The line‐editing section begins with the line: #line‐edit This section specifies new key bindings for the line editing commands, in a manner similar to the way key bindings for ordinary commands are specified in the #command section. The line‐editing section consists of a list of keys and actions, one per line as in the example below. EXAMPLE The following input file describes the set of default line‐editing keys used by less: #line‐edit \t forw‐complete \17 back‐complete \e\t back‐complete ˆL expand ˆV literal ˆA literal \el right \kr right \eh left \kl left \eb word‐left \e\kl word‐left \ew word‐right \e\kr word‐right \ei insert \ex delete \kx delete \eX word‐delete \ekx word‐delete \e\b word‐backspace \e0 home \kh home \e$ end \ke end \ek up \ku up \ej down ˆG abort LESS ENVIRONMENT VARIABLES The environment variable section begins with the line #env Following this line is a list of environment variable assignments. Each line consists of an environment variable name, an equals sign (=) and the value to be assigned to the environment variable. White space before and after the equals sign is ignored. Variables assigned in this way are visible only to less. If a variable is specified in the system environment and also in a lesskey file, the value in the lesskey file takes precedence. If the variable name is followed by += rather than =, the string is ap‐ pended to the variable’s existing value. This currently works only if any += lines immediately follow the same variable’s original definition (with an = line), without any intervening definitions of other vari‐ ables. It can append only to a variable defined earlier in the file; it cannot append to a variable in the system environment. The string is appended literally, without any extra whitespace added, so if white‐ space is desired, it should be appended to the end of the preceding line. (It cannot be added to the beginning of the += string because space after the equals sign is ignored, as noted above.) In the string after the = sign, a substring of the form ${NAME} is re‐ placed with the value of the environment variable "NAME". The value of the variable may come from either the system environment, an earlier lesskey file, or an earlier definition in the current lesskey file. Simple text replacements can be performed by using the syntax ${NAME/STRING/REPL}. This replaces all instances of "STRING" in the named environment variable with the text "REPL". STRING is matched us‐ ing a simple text comparison; no metacharacters are supported. An in‐ stance of slash or right curly bracket in STRING or REPL must be es‐ caped by preceding it with two backslashes. If REPL is an empty string, all instances of STRING are removed. A slash immediately be‐ fore the right curly bracket may be omitted. Multiple replacements may be performed by using the syntax ${NAME/STRING1/REPL1/STRING2/REPL2} and so on. CONDITIONAL CONFIGURATION If a line begins with #version followed by a relational operator and a version number, the remainder of the line is parsed if and only if the running version of less (or lesskey) matches the operator. This can be helpful if a lesskey file is used by different versions of less. For example, suppose that a new command named ’sideways‐search’ is added in less version 777. Then the following line would assign the command to the Q key, but only in versions of less which support it. The line would be ignored by versions earlier than 777. #version >= 777 Q sideways‐search These six operators are supported: > Greater than < Less than >= Greater than or equal to <= Less than or equal to = Equal to != Not equal to The #version feature is not supported in less and lesskey before ver‐ sion 594. In those older versions, all #version lines are ignored. EXAMPLE The following input file sets the -i and -S options when less is run and, on version 595 and higher, adds a --color option. #env ## (Note that there must be a space at the end of the next line, ## to separate the ‐‐color option from the ‐S option.) LESS = -i -S #version >= 595 LESS += --color=Hkc SEE ALSO less(1) WARNINGS On MS‐DOS and OS/2 systems, certain keys send a sequence of characters which start with a NUL character (0). This NUL character should be represented as \340 in a lesskey file. COPYRIGHT Copyright (C) 1984‐2024 Mark Nudelman less is part of the GNU project and is free software. You can redis‐ tribute it and/or modify it under the terms of either (1) the GNU Gen‐ eral Public License as published by the Free Software Foundation; or (2) the Less License. See the file README in the less distribution for more details regarding redistribution. You should have received a copy of the GNU General Public License along with the source for less; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111‐1307, USA. You should also have received a copy of the Less License; see the file LICENSE. less is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FIT‐ NESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. AUTHOR Mark Nudelman Report bugs at https://github.com/gwsw/less/issues. Version 668: 06 Oct 2024 LESSKEY(1) less-668/lesskey.nro0000444060175306017530000002715314700607660013604 0ustar marknmarkn'\" t .TH LESSKEY 1 "Version 668: 06 Oct 2024" .SH NAME lesskey \- customize key bindings for less .SH "SYNOPSIS (deprecated)" .B "lesskey [\-o output] [\-\-] [input]" .br .B "lesskey [\-\-output=output] [\-\-] [input]" .br .B "lesskey \-V" .br .B "lesskey \-\-version" .SH SCOPE This document describes the format of the .B lesskey source file, which is used by .B less version 582 and later. In previous versions of .BR less , a separate program called .B lesskey was used to compile the .B lesskey source file into a format understood by .BR less . This compilation step is no longer required and the .B lesskey program is therefore deprecated, although the file format remains supported by .B less itself. .PP .SH DESCRIPTION A .B lesskey file specifies a set of key bindings and environment variables to be used by subsequent invocations of .BR less . .SH FILE FORMAT The input file consists of one or more .IR sections . Each section starts with a line that identifies the type of section. Possible sections are: .IP #command Customizes command key bindings. .IP #line-edit Customizes line-editing key bindings. .IP #env Defines environment variables. .PP Blank lines and lines which start with a hash mark (#) are ignored, except as noted below. . .SH "COMMAND SECTION" The command section begins with the line .sp #command .sp If the command section is the first section in the file, this line may be omitted. The command section consists of lines of the form: .sp \fIstring\fP \fIaction\fP [extra-string] .sp Whitespace is any sequence of one or more spaces and/or tabs. The \fIstring\fP is the command key(s) which invoke the action. The \fIstring\fP may be a single command key, or a sequence of up to 15 keys. The \fIaction\fP is the name of the less action, from the list below. The characters in the \fIstring\fP may appear literally, or be prefixed by a caret to indicate a control key. A backslash followed by one to three octal digits may be used to specify a character by its octal value. A backslash followed by certain characters specifies input characters as follows: .RS 5m .TS l l l. \eb BACKSPACE (0x08) \ee ESCAPE (0x1B) \en NEWLINE (0x0A) \er RETURN (0x0D) \et TAB (0x09) .TE .sp \ek followed by a single character represents the char(s) produced when one of these keys is pressed: .TS l l. \ekb BACKSPACE (the BACKSPACE key) \ekB ctrl-BACKSPACE \ekd DOWN ARROW \ekD PAGE DOWN \eke END \ekh HOME \eki INSERT \ekl LEFT ARROW \ekL ctrl-LEFT ARROW \ekr RIGHT ARROW \ekR ctrl-RIGHT ARROW \ekt BACKTAB \eku UP ARROW \ekU PAGE UP \ekx DELETE \ekX ctrl-DELETE \ek1 F1 .TE .PP A backslash followed by any other character indicates that character is to be taken literally. Characters which must be preceded by backslash include caret, space, tab, hash mark and the backslash itself. .PP An action may be followed by an "extra" string. When such a command is entered while running .BR less , the action is performed, and then the extra string is parsed, just as if it were typed in to .BR less . This feature can be used in certain cases to extend the functionality of a command. For example, see the "{" and ":t" commands in the example below. The extra string has a special meaning for the "quit" action: when .B less quits, the ASCII value of the first character of the extra string is used as its exit status. . .SH EXAMPLE The following input file describes the set of default command keys used by .BR less . Documentation on each command can be found in the .B less man page, under the key sequence which invokes the command. .sp .RS 5m .TS l l. #command \er forw-line \en forw-line e forw-line j forw-line \ekd forw-line ^E forw-line ^N forw-line k back-line y back-line ^Y back-line ^K back-line ^P back-line J forw-line-force K back-line-force Y back-line-force d forw-scroll ^D forw-scroll u back-scroll ^U back-scroll \e40 forw-screen f forw-screen ^F forw-screen ^V forw-screen \ekD forw-screen b back-screen ^B back-screen \eev back-screen \ekU back-screen z forw-window w back-window \ee\e40 forw-screen-force F forw-forever \eeF forw-until-hilite R repaint-flush r repaint ^R repaint ^L repaint \eeu undo-hilite \eeU clear-search g goto-line \ekh goto-line < goto-line \ee< goto-line p percent % percent \ee( left-scroll \ee) right-scroll \ekl left-scroll \ekr right-scroll \ee{ no-scroll \ee} end-scroll { forw-bracket {} } back-bracket {} ( forw-bracket () ) back-bracket () [ forw-bracket [] ] back-bracket [] \ee^F forw-bracket \ee^B back-bracket G goto-end \ee> goto-end > goto-end \eke goto-end \eeG goto-end-buffered \&= status ^G status :f status / forw-search ? back-search \ee/ forw-search * \ee? back-search * n repeat-search \een repeat-search-all N reverse-search \eeN reverse-search-all ^O^N osc8-forw-search ^On osc8-forw-search ^O^P osc8-back-search ^Op osc8-back-search ^O^O osc8-open & filter m set-mark M set-mark-bottom \eem clear-mark \&' goto-mark ^X^X goto-mark E examine :e examine ^X^V examine :n next-file :p prev-file t next-tag T prev-tag :x index-file :d remove-file - toggle-option :t toggle-option t s toggle-option o ## Use a long option name by starting the ## extra string with ONE dash; eg: ## s toggle-option -log-file\en \&_ display-option | pipe v visual ! shell # pshell + firstcmd H help h help V version 0 digit 1 digit 2 digit 3 digit 4 digit 5 digit 6 digit 7 digit 8 digit 9 digit q quit Q quit :q quit :Q quit ZZ quit .TE .RE .sp .SH PRECEDENCE Commands specified by .B lesskey take precedence over the default commands. A default command key may be disabled by including it in the input file with the action "invalid". Alternatively, a key may be defined to do nothing by using the action "noaction". "noaction" is similar to "invalid", but .B less will give an error beep for an "invalid" command, but not for a "noaction" command. In addition, ALL default commands may be disabled by adding this control line to the input file: .sp #stop .sp This will cause all default commands to be ignored. The #stop line should be the last line in that section of the file. .PP Be aware that #stop can be dangerous. Since all default commands are disabled, you must provide sufficient commands before the #stop line to enable all necessary actions. For example, failure to provide a "quit" command can lead to frustration. . .SH "LINE EDITING SECTION" The line-editing section begins with the line: .sp #line-edit .sp This section specifies new key bindings for the line editing commands, in a manner similar to the way key bindings for ordinary commands are specified in the #command section. The line-editing section consists of a list of keys and actions, one per line as in the example below. . .SH EXAMPLE The following input file describes the set of default line-editing keys used by .BR less : .sp .RS 5m .TS l l. #line-edit \et forw-complete \e17 back-complete \ee\et back-complete ^L expand ^V literal ^A literal \eel right \ekr right \eeh left \ekl left \eeb word-left \ee\ekl word-left \eew word-right \ee\ekr word-right \eei insert \eex delete \ekx delete \eeX word-delete \eekx word-delete \ee\eb word-backspace \ee0 home \ekh home \ee$ end \eke end \eek up \eku up \eej down ^G abort .TE .RE .sp . .SH "LESS ENVIRONMENT VARIABLES" The environment variable section begins with the line .sp #env .sp Following this line is a list of environment variable assignments. Each line consists of an environment variable name, an equals sign (=) and the value to be assigned to the environment variable. White space before and after the equals sign is ignored. Variables assigned in this way are visible only to .BR less . If a variable is specified in the system environment and also in a lesskey file, the value in the lesskey file takes precedence. . .sp If the variable name is followed by += rather than =, the string is appended to the variable's existing value. This currently works only if any += lines immediately follow the same variable's original definition (with an = line), without any intervening definitions of other variables. It can append only to a variable defined earlier in the file; it cannot append to a variable in the system environment. The string is appended literally, without any extra whitespace added, so if whitespace is desired, it should be appended to the end of the preceding line. (It cannot be added to the beginning of the += string because space after the equals sign is ignored, as noted above.) . .sp In the string after the = sign, a substring of the form ${NAME} is replaced with the value of the environment variable "NAME". The value of the variable may come from either the system environment, an earlier lesskey file, or an earlier definition in the current lesskey file. Simple text replacements can be performed by using the syntax ${NAME/STRING/REPL}. This replaces all instances of "STRING" in the named environment variable with the text "REPL". STRING is matched using a simple text comparison; no metacharacters are supported. An instance of slash or right curly bracket in STRING or REPL must be escaped by preceding it with \fItwo\fP backslashes. If REPL is an empty string, all instances of STRING are removed. A slash immediately before the right curly bracket may be omitted. Multiple replacements may be performed by using the syntax ${NAME/STRING1/REPL1/STRING2/REPL2} and so on. . .SH CONDITIONAL CONFIGURATION If a line begins with #version followed by a relational operator and a version number, the remainder of the line is parsed if and only if the running version of .B less (or .BR lesskey ) matches the operator. This can be helpful if a lesskey file is used by different versions of .BR less . .sp For example, suppose that a new command named 'sideways-search' is added in .B less version 777. Then the following line would assign the command to the Q key, but only in versions of .B less which support it. The line would be ignored by versions earlier than 777. .sp .nf #version >= 777 Q sideways-search .fi .sp These six operators are supported: .RS 5m .TS l l. > Greater than < Less than >= Greater than or equal to <= Less than or equal to = Equal to != Not equal to .TE .RE .sp The #version feature is not supported in .B less and .B lesskey before version 594. In those older versions, all #version lines are ignored. . .SH EXAMPLE The following input file sets the \-i and \-S options when .B less is run and, on version 595 and higher, adds a \-\-color option. .sp .nf #env ## (Note that there must be a space at the end of the next line, ## to separate the --color option from the -S option.) LESS = \-i\ \-S\ #version\ >=\ 595\ \ LESS\ +=\ \-\-color=Hkc .fi . .SH "SEE ALSO" .BR less (1) . .SH WARNINGS On MS-DOS and OS/2 systems, certain keys send a sequence of characters which start with a NUL character (0). This NUL character should be represented as \e340 in a lesskey file. . .SH COPYRIGHT Copyright (C) 1984-2024 Mark Nudelman .PP less is part of the GNU project and is free software. You can redistribute it and/or modify it under the terms of either (1) the GNU General Public License as published by the Free Software Foundation; or (2) the Less License. See the file README in the less distribution for more details regarding redistribution. You should have received a copy of the GNU General Public License along with the source for less; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. You should also have received a copy of the Less License; see the file LICENSE. .PP less is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . .SH AUTHOR . Mark Nudelman .br Report bugs at https://github.com/gwsw/less/issues. less-668/lesskey_parse.c0000444060175306017530000004002714700607643014416 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ #include "defines.h" #include #include #include #include "lesskey.h" #include "cmd.h" #include "xbuf.h" #define CONTROL(c) ((c)&037) #define ESC CONTROL('[') extern void lesskey_parse_error(char *msg); extern char *homefile(char *filename); extern void *ecalloc(size_t count, size_t size); extern int lstrtoi(char *str, char **end, int radix); extern char version[]; static int linenum; static int errors; static int less_version = 0; static char *lesskey_file = NULL; static constant struct lesskey_cmdname cmdnames[] = { { "back-bracket", A_B_BRACKET }, { "back-line", A_B_LINE }, { "back-line-force", A_BF_LINE }, { "back-screen", A_B_SCREEN }, { "back-scroll", A_B_SCROLL }, { "back-search", A_B_SEARCH }, { "back-window", A_B_WINDOW }, { "clear-mark", A_CLRMARK }, { "clear-search", A_CLR_SEARCH }, { "debug", A_DEBUG }, { "digit", A_DIGIT }, { "display-flag", A_DISP_OPTION }, { "display-option", A_DISP_OPTION }, { "end", A_GOEND }, { "end-scroll", A_RRSHIFT }, { "examine", A_EXAMINE }, { "filter", A_FILTER }, { "first-cmd", A_FIRSTCMD }, { "firstcmd", A_FIRSTCMD }, { "flush-repaint", A_FREPAINT }, { "forw-bracket", A_F_BRACKET }, { "forw-forever", A_F_FOREVER }, { "forw-line", A_F_LINE }, { "forw-line-force", A_FF_LINE }, { "forw-screen", A_F_SCREEN }, { "forw-screen-force", A_FF_SCREEN }, { "forw-scroll", A_F_SCROLL }, { "forw-search", A_F_SEARCH }, { "forw-until-hilite", A_F_UNTIL_HILITE }, { "forw-window", A_F_WINDOW }, { "goto-end", A_GOEND }, { "goto-end-buffered", A_GOEND_BUF }, { "goto-line", A_GOLINE }, { "goto-mark", A_GOMARK }, { "help", A_HELP }, { "index-file", A_INDEX_FILE }, { "invalid", A_UINVALID }, { "left-scroll", A_LSHIFT }, { "next-file", A_NEXT_FILE }, { "next-tag", A_NEXT_TAG }, { "no-scroll", A_LLSHIFT }, { "noaction", A_NOACTION }, { "osc8-forw-search", A_OSC8_F_SEARCH }, { "osc8-back-search", A_OSC8_B_SEARCH }, { "osc8-open", A_OSC8_OPEN }, { "percent", A_PERCENT }, { "pipe", A_PIPE }, { "prev-file", A_PREV_FILE }, { "prev-tag", A_PREV_TAG }, { "pshell", A_PSHELL }, { "quit", A_QUIT }, { "remove-file", A_REMOVE_FILE }, { "repaint", A_REPAINT }, { "repaint-flush", A_FREPAINT }, { "repeat-search", A_AGAIN_SEARCH }, { "repeat-search-all", A_T_AGAIN_SEARCH }, { "reverse-search", A_REVERSE_SEARCH }, { "reverse-search-all", A_T_REVERSE_SEARCH }, { "right-scroll", A_RSHIFT }, { "set-mark", A_SETMARK }, { "set-mark-bottom", A_SETMARKBOT }, { "shell", A_SHELL }, { "status", A_STAT }, { "toggle-flag", A_OPT_TOGGLE }, { "toggle-option", A_OPT_TOGGLE }, { "undo-hilite", A_UNDO_SEARCH }, { "version", A_VERSION }, { "visual", A_VISUAL }, { NULL, 0 } }; static constant struct lesskey_cmdname editnames[] = { { "back-complete", EC_B_COMPLETE }, { "backspace", EC_BACKSPACE }, { "delete", EC_DELETE }, { "down", EC_DOWN }, { "end", EC_END }, { "expand", EC_EXPAND }, { "forw-complete", EC_F_COMPLETE }, { "home", EC_HOME }, { "insert", EC_INSERT }, { "invalid", EC_UINVALID }, { "kill-line", EC_LINEKILL }, { "abort", EC_ABORT }, { "left", EC_LEFT }, { "literal", EC_LITERAL }, { "right", EC_RIGHT }, { "up", EC_UP }, { "word-backspace", EC_W_BACKSPACE }, { "word-delete", EC_W_DELETE }, { "word-left", EC_W_LEFT }, { "word-right", EC_W_RIGHT }, { NULL, 0 } }; /* * Print a parse error message. */ static void parse_error(constant char *fmt, constant char *arg1) { char buf[1024]; int n = SNPRINTF2(buf, sizeof(buf), "%s: line %d: ", lesskey_file, linenum); if (n >= 0) { size_t len = (size_t) n; if (len < sizeof(buf)) SNPRINTF1(buf+len, sizeof(buf)-len, fmt, arg1); } ++errors; lesskey_parse_error(buf); } /* * Initialize lesskey_tables. */ static void init_tables(struct lesskey_tables *tables) { tables->currtable = &tables->cmdtable; tables->cmdtable.names = cmdnames; tables->cmdtable.is_var = 0; xbuf_init(&tables->cmdtable.buf); tables->edittable.names = editnames; tables->edittable.is_var = 0; xbuf_init(&tables->edittable.buf); tables->vartable.names = NULL; tables->vartable.is_var = 1; xbuf_init(&tables->vartable.buf); } #define CHAR_STRING_LEN 8 static constant char * char_string(char *buf, char ch, int lit) { if (lit || (ch >= 0x20 && ch < 0x7f)) { buf[0] = ch; buf[1] = '\0'; } else { SNPRINTF1(buf, CHAR_STRING_LEN, "\\x%02x", ch); } return buf; } /* * Increment char pointer by one up to terminating nul byte. */ static char * increment_pointer(char *p) { if (*p == '\0') return p; return p+1; } /* * Parse one character of a string. */ static constant char * tstr(char **pp, int xlate) { char *p; char ch; int i; static char buf[CHAR_STRING_LEN]; static char tstr_control_k[] = { SK_SPECIAL_KEY, SK_CONTROL_K, 6, 1, 1, 1, '\0' }; p = *pp; switch (*p) { case '\\': ++p; switch (*p) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': /* * Parse an octal number. */ ch = 0; i = 0; do ch = (char) (8*ch + (*p - '0')); while (*++p >= '0' && *p <= '7' && ++i < 3); *pp = p; if (xlate && ch == CONTROL('K')) return tstr_control_k; return char_string(buf, ch, 1); case 'b': *pp = p+1; return ("\b"); case 'e': *pp = p+1; return char_string(buf, ESC, 1); case 'n': *pp = p+1; return ("\n"); case 'r': *pp = p+1; return ("\r"); case 't': *pp = p+1; return ("\t"); case 'k': if (xlate) { switch (*++p) { case 'b': ch = SK_BACKSPACE; break; case 'B': ch = SK_CTL_BACKSPACE; break; case 'd': ch = SK_DOWN_ARROW; break; case 'D': ch = SK_PAGE_DOWN; break; case 'e': ch = SK_END; break; case 'h': ch = SK_HOME; break; case 'i': ch = SK_INSERT; break; case 'l': ch = SK_LEFT_ARROW; break; case 'L': ch = SK_CTL_LEFT_ARROW; break; case 'r': ch = SK_RIGHT_ARROW; break; case 'R': ch = SK_CTL_RIGHT_ARROW; break; case 't': ch = SK_BACKTAB; break; case 'u': ch = SK_UP_ARROW; break; case 'U': ch = SK_PAGE_UP; break; case 'x': ch = SK_DELETE; break; case 'X': ch = SK_CTL_DELETE; break; case '1': ch = SK_F1; break; default: parse_error("invalid escape sequence \"\\k%s\"", char_string(buf, *p, 0)); *pp = increment_pointer(p); return (""); } *pp = p+1; buf[0] = SK_SPECIAL_KEY; buf[1] = ch; buf[2] = 6; buf[3] = 1; buf[4] = 1; buf[5] = 1; buf[6] = '\0'; return (buf); } /* FALLTHRU */ default: /* * Backslash followed by any other char * just means that char. */ *pp = increment_pointer(p); char_string(buf, *p, 1); if (xlate && buf[0] == CONTROL('K')) return tstr_control_k; return (buf); } case '^': /* * Caret means CONTROL. */ *pp = increment_pointer(p+1); char_string(buf, CONTROL(p[1]), 1); if (xlate && buf[0] == CONTROL('K')) return tstr_control_k; return (buf); } *pp = increment_pointer(p); char_string(buf, *p, 1); if (xlate && buf[0] == CONTROL('K')) return tstr_control_k; return (buf); } static int issp(char ch) { return (ch == ' ' || ch == '\t'); } /* * Skip leading spaces in a string. */ static char * skipsp(char *s) { while (issp(*s)) s++; return (s); } /* * Skip non-space characters in a string. */ static char * skipnsp(char *s) { while (*s != '\0' && !issp(*s)) s++; return (s); } /* * Clean up an input line: * strip off the trailing newline & any trailing # comment. */ static char * clean_line(char *s) { int i; s = skipsp(s); for (i = 0; s[i] != '\0' && s[i] != '\n' && s[i] != '\r'; i++) if (s[i] == '#' && (i == 0 || s[i-1] != '\\')) break; s[i] = '\0'; return (s); } /* * Add a byte to the output command table. */ static void add_cmd_char(unsigned char c, struct lesskey_tables *tables) { xbuf_add_byte(&tables->currtable->buf, c); } static void erase_cmd_char(struct lesskey_tables *tables) { xbuf_pop(&tables->currtable->buf); } /* * Add a string to the output command table. */ static void add_cmd_str(constant char *s, struct lesskey_tables *tables) { for ( ; *s != '\0'; s++) add_cmd_char((unsigned char) *s, tables); } /* * Does a given version number match the running version? * Operator compares the running version to the given version. */ static int match_version(char op, int ver) { switch (op) { case '>': return less_version > ver; case '<': return less_version < ver; case '+': return less_version >= ver; case '-': return less_version <= ver; case '=': return less_version == ver; case '!': return less_version != ver; default: return 0; /* cannot happen */ } } /* * Handle a #version line. * If the version matches, return the part of the line that should be executed. * Otherwise, return NULL. */ static char * version_line(char *s) { char op; int ver; char *e; char buf[CHAR_STRING_LEN]; s += strlen("#version"); s = skipsp(s); op = *s++; /* Simplify 2-char op to one char. */ switch (op) { case '<': if (*s == '=') { s++; op = '-'; } break; case '>': if (*s == '=') { s++; op = '+'; } break; case '=': if (*s == '=') { s++; } break; case '!': if (*s == '=') { s++; } break; default: parse_error("invalid operator '%s' in #version line", char_string(buf, op, 0)); return (NULL); } s = skipsp(s); ver = lstrtoi(s, &e, 10); if (e == s) { parse_error("non-numeric version number in #version line", ""); return (NULL); } if (!match_version(op, ver)) return (NULL); return (e); } /* * See if we have a special "control" line. */ static char * control_line(char *s, struct lesskey_tables *tables) { #define PREFIX(str,pat) (strncmp(str,pat,strlen(pat)) == 0) if (PREFIX(s, "#line-edit")) { tables->currtable = &tables->edittable; return (NULL); } if (PREFIX(s, "#command")) { tables->currtable = &tables->cmdtable; return (NULL); } if (PREFIX(s, "#env")) { tables->currtable = &tables->vartable; return (NULL); } if (PREFIX(s, "#stop")) { add_cmd_char('\0', tables); add_cmd_char(A_END_LIST, tables); return (NULL); } if (PREFIX(s, "#version")) { return (version_line(s)); } return (s); } /* * Find an action, given the name of the action. */ static int findaction(char *actname, struct lesskey_tables *tables) { int i; for (i = 0; tables->currtable->names[i].cn_name != NULL; i++) if (strcmp(tables->currtable->names[i].cn_name, actname) == 0) return (tables->currtable->names[i].cn_action); parse_error("unknown action: \"%s\"", actname); return (A_INVALID); } /* * Parse a line describing one key binding, of the form * KEY ACTION [EXTRA] * where KEY is the user key sequence, ACTION is the * resulting less action, and EXTRA is an "extra" user * key sequence injected after the action. */ static void parse_cmdline(char *p, struct lesskey_tables *tables) { char *actname; int action; constant char *s; char c; /* * Parse the command string and store it in the current table. */ do { s = tstr(&p, 1); add_cmd_str(s, tables); } while (*p != '\0' && !issp(*p)); /* * Terminate the command string with a null byte. */ add_cmd_char('\0', tables); /* * Skip white space between the command string * and the action name. * Terminate the action name with a null byte. */ p = skipsp(p); if (*p == '\0') { parse_error("missing action", ""); return; } actname = p; p = skipnsp(p); c = *p; *p = '\0'; /* * Parse the action name and store it in the current table. */ action = findaction(actname, tables); /* * See if an extra string follows the action name. */ *p = c; p = skipsp(p); if (*p == '\0') { add_cmd_char((unsigned char) action, tables); } else { /* * OR the special value A_EXTRA into the action byte. * Put the extra string after the action byte. */ add_cmd_char((unsigned char) (action | A_EXTRA), tables); while (*p != '\0') add_cmd_str(tstr(&p, 0), tables); add_cmd_char('\0', tables); } } /* * Parse a variable definition line, of the form * NAME = VALUE */ static void parse_varline(char *line, struct lesskey_tables *tables) { constant char *s; char *p = line; char *eq; eq = strchr(line, '='); if (eq != NULL && eq > line && eq[-1] == '+') { /* * Rather ugly way of handling a += line. * {{ Note that we ignore the variable name and * just append to the previously defined variable. }} */ erase_cmd_char(tables); /* backspace over the final null */ p = eq+1; } else { do { s = tstr(&p, 0); add_cmd_str(s, tables); } while (*p != '\0' && !issp(*p) && *p != '='); /* * Terminate the variable name with a null byte. */ add_cmd_char('\0', tables); p = skipsp(p); if (*p++ != '=') { parse_error("missing = in variable definition", ""); return; } add_cmd_char(EV_OK|A_EXTRA, tables); } p = skipsp(p); while (*p != '\0') { s = tstr(&p, 0); add_cmd_str(s, tables); } add_cmd_char('\0', tables); } /* * Parse a line from the lesskey file. */ static void parse_line(char *line, struct lesskey_tables *tables) { char *p; /* * See if it is a control line. */ p = control_line(line, tables); if (p == NULL) return; /* * Skip leading white space. * Replace the final newline with a null byte. * Ignore blank lines and comments. */ p = clean_line(p); if (*p == '\0') return; if (tables->currtable->is_var) parse_varline(p, tables); else parse_cmdline(p, tables); } /* * Parse a lesskey source file and store result in tables. */ int parse_lesskey(constant char *infile, struct lesskey_tables *tables) { FILE *desc; char line[1024]; lesskey_file = (infile != NULL) ? strdup(infile) : homefile(DEF_LESSKEYINFILE); if (lesskey_file == NULL) return (-1); init_tables(tables); errors = 0; linenum = 0; if (less_version == 0) less_version = lstrtoi(version, NULL, 10); /* * Open the input file. */ if (strcmp(lesskey_file, "-") == 0) desc = stdin; else if ((desc = fopen(lesskey_file, "r")) == NULL) { /* parse_error("cannot open lesskey file %s", lesskey_file); */ errors = -1; } /* * Read and parse the input file, one line at a time. */ if (desc != NULL) { while (fgets(line, sizeof(line), desc) != NULL) { ++linenum; parse_line(line, tables); } if (desc != stdin) fclose(desc); } free(lesskey_file); lesskey_file = NULL; return (errors); } /* * Parse a lesskey source content and store result in tables. */ int parse_lesskey_content(constant char *content, struct lesskey_tables *tables) { size_t cx = 0; lesskey_file = "lesskey-content"; init_tables(tables); errors = 0; linenum = 0; if (less_version == 0) less_version = lstrtoi(version, NULL, 10); while (content[cx] != '\0') { /* Extract a line from the content buffer and parse it. */ char line[1024]; size_t lx = 0; while (content[cx] != '\0' && content[cx] != '\n' && content[cx] != ';') { if (lx >= sizeof(line)-1) break; if (content[cx] == '\\' && content[cx+1] == ';') ++cx; /* escaped semicolon: skip the backslash */ line[lx++] = content[cx++]; } line[lx] = '\0'; ++linenum; parse_line(line, tables); if (content[cx] != '\0') ++cx; /* skip newline or semicolon */ } lesskey_file = NULL; return (errors); } less-668/lesstest/0000755060175306017530000000000014700607715013246 5ustar marknmarknless-668/lesstest/display.c0000644060175306017530000000730614700607667015073 0ustar marknmarkn#include #include "lesstest.h" extern TermInfo terminfo; // Set the user's terminal to a given attribute and colors. static void display_attr_color(Attr attr, Color fg_color, Color bg_color) { printf("\33[m"); if (fg_color != NULL_COLOR) printf("\33[%dm", fg_color); if (bg_color != NULL_COLOR) printf("\33[%dm", bg_color); if (attr & ATTR_UNDERLINE) printf("%s", terminfo.enter_underline); if (attr & ATTR_BOLD) printf("%s", terminfo.enter_bold); if (attr & ATTR_BLINK) printf("%s", terminfo.enter_blink); if (attr & ATTR_STANDOUT) printf("%s", terminfo.enter_standout); } static int hexval(unsigned char ch) { if (ch >= '0' && ch <= '9') return ch - '0'; if (ch >= 'A' && ch <= 'F') return ch - 'A' + 10; if (ch >= 'a' && ch <= 'f') return ch - 'a' + 10; fprintf(stderr, "invalid hex char 0x%x\n", ch); abort(); } static int get_hex(unsigned char const** pp) { int v1 = hexval(*(*pp)++); int v2 = hexval(*(*pp)++); return (v1 << 4) | v2; } // Display a given screen image on the user's terminal. void display_screen(const byte* img, int imglen, int screen_width, int screen_height) { int x = 0; int y = 0; int cursor_x = 0; int cursor_y = 0; int literal = 0; Attr curr_attr = 0; Color curr_fg_color = NULL_COLOR; Color curr_bg_color = NULL_COLOR; while (imglen-- > 0) { wchar ch = load_wchar(&img); if (!literal) { switch (ch) { case '\\': literal = 1; continue; case LTS_CHAR_ATTR: curr_attr = get_hex(&img); display_attr_color(curr_attr, curr_fg_color, curr_bg_color); continue; case LTS_CHAR_FG_COLOR: curr_fg_color = get_hex(&img); display_attr_color(curr_attr, curr_fg_color, curr_bg_color); continue; case LTS_CHAR_BG_COLOR: curr_bg_color = get_hex(&img); display_attr_color(curr_attr, curr_fg_color, curr_bg_color); continue; case LTS_CHAR_CURSOR: cursor_x = x; cursor_y = y; continue; } } literal = 0; if (ch != 0) { byte cbuf[UNICODE_MAX_BYTES]; byte* cp = cbuf; store_wchar(&cp, ch); fwrite(cbuf, 1, cp-cbuf, stdout); } if (++x >= screen_width) { printf("\n"); x = 0; if (++y >= screen_height) break; } } printf("%s", tgoto(terminfo.cursor_move, cursor_x, cursor_y)); fflush(stdout); } // Print a given screen image on stderr. // Unlike display_screen which prints escape sequences to change color etc, // display_screen_debug only prints printable ASCII. void display_screen_debug(const byte* img, int imglen, int screen_width, int screen_height) { int x = 0; int y = 0; int literal = 0; int sol = 1; while (imglen-- > 0) { wchar ch = load_wchar(&img); if (sol) { fprintf(stderr, "DATA: "); sol = 0; } if (!literal) { switch (ch) { case '\\': fprintf(stderr, "\\"); literal = 1; continue; case LTS_CHAR_ATTR: case LTS_CHAR_FG_COLOR: case LTS_CHAR_BG_COLOR: x -= 3; // don't count LTS_CHAR or following 2 bytes break; case LTS_CHAR_CURSOR: x -= 1; // don't count LTS_CHAR break; } } literal = 0; if (is_ascii(ch) && ch != '<' && ch != '>') fwrite(&ch, 1, 1, stderr); else fprintf(stderr, "<%lx>", (unsigned long) ch); if (++x >= screen_width) { fprintf(stderr, "\n"); sol = 1; x = 0; if (++y >= screen_height) break; } } fflush(stderr); } // Print a list of strings. void print_strings(const char* title, char* const* strings) { if (1) return; /// fprintf(stderr, "%s:\n", title); char* const* s; for (s = strings; *s != NULL; ++s) { fprintf(stderr, " "); const char* p; for (p = *s; *p != '\0'; ++p) { if (is_ascii(*p)) fprintf(stderr, "%c", (char) *p); else fprintf(stderr, "\\x%04x", *p); } fprintf(stderr, "\n"); } fprintf(stderr, "%s- end\n", title); } less-668/lesstest/env.c0000644060175306017530000001070214700607670014202 0ustar marknmarkn#include "lesstest.h" extern TermInfo terminfo; // EnvBuf has a char buffer (env_buf) which holds both the env var // string table and also the array of pointers to individual strings (env_list). // env_estr points to the end of the string table. // The env_list array grows backwards from the end of env_buf. void env_init(EnvBuf* env) { env->env_estr = (char*) env->env_buf; env->env_list = env->env_buf + sizeof(env->env_buf)/sizeof(char*); *--(env->env_list) = NULL; } static void env_check(EnvBuf* env) { if (env->env_estr >= (const char*) env->env_list) { fprintf(stderr, "ENVBUF_SIZE too small!\n"); abort(); } } // Add a char to the string table. static void env_addchar(EnvBuf* env, char ch) { *(env->env_estr)++ = ch; env_check(env); } // Add a delimited string to the string table. static void env_addlstr(EnvBuf* env, const char* str, int strlen) { while (strlen-- > 0) env_addchar(env, *str++); } // Add a null-terminated string to the string table. static void env_addstr(EnvBuf* env, const char* str) { env_addlstr(env, str, strlen(str)); } // Add an env variable name/value pair to an EnvBuf. // The name is delimited and the value is null-terminated. static void env_addlpair(EnvBuf* env, const char* name, int namelen, const char* value) { *--(env->env_list) = env->env_estr; env_check(env); env_addlstr(env, name, namelen); env_addstr(env, "="); env_addstr(env, value); env_addchar(env, '\0'); } // Add an env variable name/value pair to an EnvBuf. void env_addpair(EnvBuf* env, const char* name, const char* value) { env_addlpair(env, name, strlen(name), value); } // Add an env variable name/value pair to an EnvBuf where the value is an integer. void env_addintpair(EnvBuf* env, const char* name, int value) { char buf[64]; snprintf(buf, sizeof(buf), "%d", value); env_addpair(env, name, buf); } // Is a given env var name one which should be passed to less? static int is_less_env(const char* name, int name_len) { static char* const less_names[] = { "LESS*", "COLUMNS", "LINES", "LANG", "LC_CTYPE", "MORE", NULL }; char* const* n; for (n = less_names; *n != NULL; ++n) { int ln = strlen(*n); if (ln == name_len && strncmp(*n, name, ln) == 0) return 1; if ((*n)[ln-1] == '*' && strncmp(*n, name, ln-1) == 0) return 1; } return 0; } // Create a list of env vars to be given to an instance of less, // as an EnvBuf. static void env_setup(EnvBuf* env, char* const* prog_env, int interactive) { char* const* envp; struct tcvar { char const* name; char const* value; } tcvars[] = { { "LESS_TERMCAP_am", "1" }, { "LESS_TERMCAP_cd", "\33S" }, { "LESS_TERMCAP_ce", "\33L" }, { "LESS_TERMCAP_cl", "\33A" }, { "LESS_TERMCAP_cr", "\33<" }, { "LESS_TERMCAP_cm", "\33%p2%d;%p1%dj" }, { "LESS_TERMCAP_ho", "\33h" }, { "LESS_TERMCAP_ll", "\33l" }, { "LESS_TERMCAP_mb", "\33b" }, { "LESS_TERMCAP_md", "\33[1m" }, { "LESS_TERMCAP_me", "\33[m" }, { "LESS_TERMCAP_se", "\33[m" }, { "LESS_TERMCAP_so", "\33[7m" }, { "LESS_TERMCAP_sr", "\33r" }, { "LESS_TERMCAP_ue", "\33[24m" }, { "LESS_TERMCAP_us", "\33[4m" }, { "LESS_TERMCAP_vb", "\33g" }, { "LESS_TERMCAP_kr", terminfo.key_right }, { "LESS_TERMCAP_kl", terminfo.key_left }, { "LESS_TERMCAP_ku", terminfo.key_up }, { "LESS_TERMCAP_kd", terminfo.key_down }, { "LESS_TERMCAP_kh", terminfo.key_home }, { "LESS_TERMCAP_@7", terminfo.key_end }, }; if (interactive) { int i; for (i = 0; i < countof(tcvars); ++i) { struct tcvar* tc = &tcvars[i]; env_addpair(env, tc->name, tc->value); log_env(tc->name, strlen(tc->name), tc->value); } } for (envp = prog_env; *envp != NULL; ++envp) { const char* ename = *envp; const char* eq = strchr(ename, '='); if (eq == NULL) continue; if (!interactive || is_less_env(ename, eq-ename)) { env_addlpair(env, ename, eq-ename, eq+1); log_env(ename, eq-ename, eq+1); } } } // Return the value of a named env var. const char* get_envp(char* const* envp, const char* name) { for (; *envp != NULL; ++envp) { const char* ename = *envp; const char* eq = strchr(ename, '='); if (eq != NULL && strlen(name) == eq-ename && strncmp(name, ename, eq-ename) == 0) return eq+1; } return NULL; } // Return a list of env vars to be given to an instance of less, // as an array of strings. char* const* less_envp(char* const* envp, int interactive) { static EnvBuf less_env; static int init = 0; if (!init) { env_init(&less_env); env_setup(&less_env, envp, interactive); init = 1; } return less_env.env_list; } less-668/lesstest/extract0000755060175306017530000000406014700607713014644 0ustar marknmarkn#!/usr/bin/env perl use strict; use Getopt::Std; # Extract all text files from an lt file. my $usage = <<_EOF_; usage: extract [-ckfv] [lt-file]... -c = print text file to stdout -f = overwrite existing text file -k = print keystrokes to stdout -v = verbose _EOF_ my %opt; exit(main() ? 0 : 1); sub main() { die $usage if not getopts('cfkv', \%opt); foreach my $in_filename (@ARGV) { my $in; if (not open $in, '<', $in_filename) { print STDERR "ERROR: cannot open $in_filename: $!\n"; return 0; } return 0 if not read_ltfile($in, $in_filename); close $in; } return 1; } sub read_ltfile { my ($in, $in_filename) = @_; my $is_lt_file = 0; while (<$in>) { if (/^!lesstest!/) { $is_lt_file = 1; } else { if (not $is_lt_file) { print STDERR "WARNING: skipping $in_filename: not an lt file\n"; return 0; } if (/^F\s*"([^"]+)"\s*(\d+)/) { return 0 if not create_text_file($1, $2, $in); } elsif (/^\+([0-9a-fA-F]+)/) { print "$1\n" if $opt{k}; } } } return 1; } sub create_text_file { my ($out_filename, $filelen, $in) = @_; my $out; if ($opt{k}) { $out = undef; } elsif ($opt{c}) { $out = \*STDOUT; } else { if (-f $out_filename and not $opt{f}) { print STDERR "WARNING: skipping existing file $out_filename (use -f to overwrite)\n"; return 0; } if (not open($out, '>', $out_filename)) { print STDERR "ERROR: cannot create $out_filename: $!\n"; return 0; } } my $buf; my $nread = read $in, $buf, $filelen; print STDERR "$out_filename: read $nread/$filelen\n" if $opt{v}; print STDERR "WARNING: read only $nread of $filelen bytes\n" if not $nread or $nread != $filelen; if (not $opt{k}) { print $out $buf; close $out unless $opt{c}; } return 1; } less-668/lesstest/lesstest.c0000644060175306017530000000346214700607671015266 0ustar marknmarkn#include #include "lesstest.h" extern TermInfo terminfo; int verbose = 0; int less_quit = 0; int details = 0; char* details_file = NULL; int err_only = 0; char* lt_screen = "./lt_screen"; char* lt_screen_opts = NULL; static char* testfile = NULL; static char* keyfile = NULL; static int usage(void) { fprintf(stderr, "usage: lesstest -o file.lt [-w#] [-h#] [-eEdv] [-D detail-file] [-S lt_screen-opts] [--] less.exe [flags] textfile\n"); fprintf(stderr, " or: lesstest -t file.lt less.exe\n"); return 0; } static int setup(int argc, char* const* argv) { char* logfile = NULL; int ch; while ((ch = getopt(argc, argv, "dD:eEk:o:s:S:t:v")) != -1) { switch (ch) { case 'd': details = 1; break; case 'D': details_file = optarg; break; case 'e': err_only = 1; break; case 'E': err_only = 2; break; case 'k': keyfile = optarg; break; case 'o': logfile = optarg; break; case 's': lt_screen = optarg; break; case 'S': lt_screen_opts = optarg; break; case 't': testfile = optarg; break; case 'v': verbose = 1; break; default: return usage(); } } if (logfile != NULL && !log_open(logfile)) { fprintf(stderr, "cannot create %s: %s\n", logfile, strerror(errno)); return 0; } return 1; } int main(int argc, char* const* argv, char* const* envp) { if (!setup(argc, argv)) return RUN_ERR; int ok = 0; if (testfile != NULL) { // run existing test if (optind+1 != argc) { usage(); } else { ok = run_testfile(testfile, argv[optind]); } } else { // gen; create new test if (optind+2 > argc) { usage(); } else { log_file_header(); ok = run_interactive(argv+optind, argc-optind, envp, keyfile); log_close(); } } return ok ? RUN_OK : RUN_ERR; } less-668/lesstest/lesstest.h0000644060175306017530000000524614700607677015303 0ustar marknmarkn#include #include #include #include #include #include "lt_types.h" #include "wchar.h" #define ENVBUF_SIZE 4096 typedef struct EnvBuf { char** env_list; char* env_estr; char* env_buf[ENVBUF_SIZE/sizeof(char*)]; } EnvBuf; typedef struct TestSetup { char* setup_name; char* textfile; char** argv; int argc; EnvBuf env; } TestSetup; typedef struct TestState { byte* screen; size_t screen_len; wchar ch; } TestState; typedef struct TestDetails { char* textfile; int cmd_num; byte* img_should; byte* img_actual; int len_should; int len_actual; } TestDetails; typedef struct LessPipeline { int less_in; int screen_out; int screen_width; int screen_height; pid_t less_pid; pid_t screen_pid; const char* tempfile; int less_in_pipe[2]; int screen_in_pipe[2]; int screen_out_pipe[2]; } LessPipeline; typedef struct TermInfo { char backspace_key; char* enter_underline; char* exit_underline; char* enter_bold; char* exit_bold; char* enter_blink; char* exit_blink; char* enter_standout; char* exit_standout; char* clear_screen; char* clear_eos; char* cursor_move; char* key_right; char* key_left; char* key_up; char* key_down; char* key_home; char* key_end; char* enter_keypad; char* exit_keypad; char* init_term; char* deinit_term; } TermInfo; int log_open(char const* logfile); void log_close(void); int log_file_header(void); int log_test_header(char* const* argv, int argc, const char* textfile); int log_test_footer(void); int log_env(const char* name, int namelen, const char* value); int log_tty_char(wchar ch); int log_screen(byte const* img, int len); LessPipeline* create_less_pipeline(char* const* argv, int argc, char* const* envp); void destroy_less_pipeline(LessPipeline* pipeline); void print_strings(const char* title, char* const* strings); void free_test_setup(TestSetup* setup); TestSetup* read_test_setup(FILE* fd, char const* less); TestDetails* read_test_details(FILE* fd); void free_test_details(TestDetails* td); int read_zline(FILE* fd, char* line, int line_len); void raw_mode(int tty, int on); int setup_term(void); void display_screen(const byte* img, int imglen, int screen_width, int screen_height); void display_screen_debug(const byte* img, int imglen, int screen_width, int screen_height); const char* get_envp(char* const* envp, const char* name); int run_interactive(char* const* argv, int argc, char* const* envp, const char* keyfile); int run_testfile(const char* testfile, const char* less); int explore_testfile(const char* testfile); void env_init(EnvBuf* env); void env_addpair(EnvBuf* env, const char* name, const char* value); char* const* less_envp(char* const* envp, int interactive); less-668/lesstest/log.c0000644060175306017530000000533114700607673014200 0ustar marknmarkn#include #include #include #include #include #include #include "lesstest.h" static FILE* logf = NULL; int log_open(const char* logfile) { if (logf != NULL) fclose(logf); logf = (strcmp(logfile, "-") == 0) ? stdout : fopen(logfile, "w"); if (logf == NULL) { fprintf(stderr, "cannot create %s\n", logfile); return 0; } return 1; } void log_close(void) { if (logf == NULL) return; if (logf == stdout) return; fclose(logf); logf = NULL; } int log_file_header(void) { if (logf == NULL) return 0; time_t now = time(NULL); struct tm* tm = gmtime(&now); fprintf(logf, "!lesstest!\n!version %d\n!created %d-%02d-%02d %02d:%02d:%02d\n", LESSTEST_VERSION, tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec); return 1; } int log_env(const char* name, int namelen, const char* value) { if (logf == NULL) return 0; fprintf(logf, "E \"%.*s\" \"%s\"\n", namelen, name, value); return 1; } int log_tty_char(wchar ch) { if (logf == NULL) return 0; fprintf(logf, "+%lx\n", ch); return 1; } int log_screen(const byte* img, int len) { if (logf == NULL) return 0; fwrite("=", 1, 1, logf); fwrite(img, 1, len, logf); fwrite("\n", 1, 1, logf); return 1; } #if 0 int log_debug(char const* fmt, ...) { va_list ap; va_start(ap, fmt); fprintf(logf, "D "); vfprintf(logf, fmt, ap); fprintf(logf, "\n"); va_end(ap); fflush(logf); return 1; } #endif int log_command(char* const* argv, int argc, const char* textfile) { if (logf == NULL) return 0; fprintf(logf, "A"); int a; for (a = 1; a < argc; ++a) fprintf(logf, " \"%s\"", (a < argc-1) ? argv[a] : textfile); fprintf(logf, "\n"); return 1; } int log_textfile(const char* textfile) { if (logf == NULL) return 0; struct stat st; if (stat(textfile, &st) < 0) { fprintf(stderr, "cannot stat %s\n", textfile); return 0; } FILE* fd = fopen(textfile, "r"); if (fd == NULL) { fprintf(stderr, "cannot open %s\n", textfile); return 0; } fprintf(logf, "F \"%s\" %ld\n", textfile, (long) st.st_size); off_t nread = 0; while (nread < st.st_size) { char buf[4096]; size_t n = fread(buf, 1, sizeof(buf), fd); if (n <= 0) { fprintf(stderr, "read only %ld/%ld from %s\n", (long) nread, (long) st.st_size, textfile); fclose(fd); return 0; } nread += n; fwrite(buf, 1, n, logf); } fclose(fd); return 1; } int log_test_header(char* const* argv, int argc, const char* textfile) { if (logf == NULL) return 0; fprintf(logf, "T \"%s\"\n", textfile); if (!log_command(argv, argc, textfile)) return 0; if (!log_textfile(textfile)) return 0; fprintf(logf, "R\n"); return 1; } int log_test_footer(void) { if (logf == NULL) return 0; fprintf(logf, "Q\n"); return 1; } less-668/lesstest/lt/0000755060175306017530000000000014700607711013661 5ustar marknmarknless-668/lesstest/lt/chinese1.lt0000644060175306017530000053756414700607701015744 0ustar marknmarkn!lesstest! !version 1 !created 2022-10-22 21:06:14 E "LESS_TERMCAP_am" "1" E "LESS_TERMCAP_cd" "S" E "LESS_TERMCAP_ce" "L" E "LESS_TERMCAP_cl" "A" E "LESS_TERMCAP_cr" "<" E "LESS_TERMCAP_cm" "%p2%d;%p1%dj" E "LESS_TERMCAP_ho" "h" E "LESS_TERMCAP_ll" "l" E "LESS_TERMCAP_mb" "b" E "LESS_TERMCAP_md" "" E "LESS_TERMCAP_me" "" E "LESS_TERMCAP_se" "" E "LESS_TERMCAP_so" "" E "LESS_TERMCAP_sr" "r" E "LESS_TERMCAP_ue" "" E "LESS_TERMCAP_us" "" E "LESS_TERMCAP_vb" "g" E "LESS_TERMCAP_kr" "OC" E "LESS_TERMCAP_kl" "OD" E "LESS_TERMCAP_ku" "OA" E "LESS_TERMCAP_kd" "OB" E "LESS_TERMCAP_kh" "OH" E "LESS_TERMCAP_@7" "OF" E "COLUMNS" "109" E "LINES" "49" E "LESSCHARSET" "utf8" E "LANG" "C" E "LC_CTYPE" "en_US.UTF-8" T "chinese1" A "chinese1" F "chinese1" 584 林花謝了春紅 太匆匆 無奈朝來寒雨 晚來風 胭脂淚 留人醉 幾時重 自是人生長恨 水長東 《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面上是伤春咏别,实质上是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。 R = 林花謝了春紅 太匆匆_________________________________________________________________________________________無奈朝來寒雨 晚來風__________________________________________________________________________________________胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面上是伤春咏别,实质上是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@04chinese1 (END)@00#_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +4a =無奈朝來寒雨 晚來風__________________________________________________________________________________________胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面上是伤春咏别,实质上是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________________________ +4a =胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面上是伤春咏别,实质上是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________________________ +4b =無奈朝來寒雨 晚來風__________________________________________________________________________________________胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面上是伤春咏别,实质上是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________________________ +4b = 林花謝了春紅 太匆匆_________________________________________________________________________________________無奈朝來寒雨 晚來風__________________________________________________________________________________________胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面上是伤春咏别,实质上是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________________________ +4b =@01~@00____________________________________________________________________________________________________________ 林花謝了春紅 太匆匆_________________________________________________________________________________________無奈朝來寒雨 晚來風__________________________________________________________________________________________胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面上是伤春咏别,实质上是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________________________ +4b =@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________ 林花謝了春紅 太匆匆_________________________________________________________________________________________無奈朝來寒雨 晚來風__________________________________________________________________________________________胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面上是伤春咏别,实质上是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________________________ +2f =@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________ 林花謝了春紅 太匆匆_________________________________________________________________________________________無奈朝來寒雨 晚來風__________________________________________________________________________________________胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面上是伤春咏别,实质上是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________/#____________________________________________________________________________________________________________ +4e0a =@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________ 林花謝了春紅 太匆匆_________________________________________________________________________________________無奈朝來寒雨 晚來風__________________________________________________________________________________________胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面上是伤春咏别,实质上是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________/上#__________________________________________________________________________________________________________ +a =《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面@04上@00是伤春咏别,实质@04上@00是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________________________ +2d =《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面@04上@00是伤春咏别,实质@04上@00是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________-#____________________________________________________________________________________________________________ +2d =《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面@04上@00是伤春咏别,实质@04上@00是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________--#___________________________________________________________________________________________________________ +75 =《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面@04上@00是伤春咏别,实质@04上@00是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________--u#__________________________________________________________________________________________________________ +73 =《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面@04上@00是伤春咏别,实质@04上@00是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________--us#_________________________________________________________________________________________________________ +65 =《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面@04上@00是伤春咏别,实质@04上@00是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________--use#________________________________________________________________________________________________________ +2d =《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面@04上@00是伤春咏别,实质@04上@00是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________--use-#_______________________________________________________________________________________________________ +63 =《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面@04上@00是伤春咏别,实质@04上@00是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________--use-color#__________________________________________________________________________________________________ +a =《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面@04上@00是伤春咏别,实质@04上@00是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________$1E!67Use color (press RETURN)$FF!FF#____________________________________________________________________________________ +a =《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面$1E!66上$FF!FF是伤春咏别,实质$1E!66上$FF!FF是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________$1E!6A(END)$FF!FF#________________________________________________________________________________________________________ +6b =_____________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面$1E!66上$FF!FF是伤春咏别,实质$1E!66上$FF!FF是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________$1E!6A(END)$FF!FF#________________________________________________________________________________________________________ +6b =自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面$1E!66上$FF!FF是伤春咏别,实质$1E!66上$FF!FF是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________$1E!6A(END)$FF!FF#________________________________________________________________________________________________________ +6b =胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面$1E!66上$FF!FF是伤春咏别,实质$1E!66上$FF!FF是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________$1E!6A(END)$FF!FF#________________________________________________________________________________________________________ +6b =無奈朝來寒雨 晚來風__________________________________________________________________________________________胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面$1E!66上$FF!FF是伤春咏别,实质$1E!66上$FF!FF是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________$1E!6A(END)$FF!FF#________________________________________________________________________________________________________ +2f =無奈朝來寒雨 晚來風__________________________________________________________________________________________胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面$1E!66上$FF!FF是伤春咏别,实质$1E!66上$FF!FF是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________/#____________________________________________________________________________________________________________ +5341 =無奈朝來寒雨 晚來風__________________________________________________________________________________________胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面$1E!66上$FF!FF是伤春咏别,实质$1E!66上$FF!FF是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________/十#__________________________________________________________________________________________________________ +2e =無奈朝來寒雨 晚來風__________________________________________________________________________________________胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面$1E!66上$FF!FF是伤春咏别,实质$1E!66上$FF!FF是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________/十.#_________________________________________________________________________________________________________ +2e =無奈朝來寒雨 晚來風__________________________________________________________________________________________胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面$1E!66上$FF!FF是伤春咏别,实质$1E!66上$FF!FF是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________/十..#________________________________________________________________________________________________________ +2e =無奈朝來寒雨 晚來風__________________________________________________________________________________________胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面$1E!66上$FF!FF是伤春咏别,实质$1E!66上$FF!FF是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________/十...#_______________________________________________________________________________________________________ +2e =無奈朝來寒雨 晚來風__________________________________________________________________________________________胭脂淚 留人醉 幾時重_________________________________________________________________________________________自是人生長恨 水長東_______________________________________________________________________________________________________________________________________________________________________________________________________《相见欢·林花谢了春红》是五代十国时期南唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面$1E!66上$FF!FF是伤春咏别,实质$1E!66上$FF!FF是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________/十....#______________________________________________________________________________________________________ +a =《相见欢·林花谢了春红》是五代$1E!66十$FF!FF$1E!66国$FF!FF$1E!66时$FF!FF$1E!66期$FF!FF$1E!66南$FF!FF唐后主李煜的词作。此词是即景抒情的典范之作,它将人生失意的无限怅恨寄寓在对暮春残景的描绘中,表面上是伤春咏别,实质上是抒写“人生长恨水长东”的深切悲慨。这种悲慨不仅是抒写一己的失意_情怀,而且是涵盖了整个人类所共有的生命的缺憾,是一种融汇和浓缩了无数痛苦的人生体验的浩叹。___________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________$1E!6A(END)$FF!FF#________________________________________________________________________________________________________ +71 Q less-668/lesstest/lt/colorbars.lt0000644060175306017530000756346314700607702016240 0ustar marknmarkn!lesstest! !version 1 !created 2022-10-20 17:22:15 E "LESS_TERMCAP_am" "1" E "LESS_TERMCAP_cd" "S" E "LESS_TERMCAP_ce" "L" E "LESS_TERMCAP_cl" "A" E "LESS_TERMCAP_cr" "<" E "LESS_TERMCAP_cm" "%p2%d;%p1%dj" E "LESS_TERMCAP_ho" "h" E "LESS_TERMCAP_ll" "l" E "LESS_TERMCAP_mb" "b" E "LESS_TERMCAP_md" "" E "LESS_TERMCAP_me" "" E "LESS_TERMCAP_se" "" E "LESS_TERMCAP_so" "" E "LESS_TERMCAP_sr" "r" E "LESS_TERMCAP_ue" "" E "LESS_TERMCAP_us" "" E "LESS_TERMCAP_vb" "g" E "LESS_TERMCAP_kr" "OC" E "LESS_TERMCAP_kl" "OD" E "LESS_TERMCAP_ku" "OA" E "LESS_TERMCAP_kd" "OB" E "LESS_TERMCAP_kh" "OH" E "LESS_TERMCAP_@7" "OF" E "COLUMNS" "135" E "LINES" "45" E "LESS" "R" E "LESSCHARSET" "utf8" E "LANG" "C" E "LC_CTYPE" "en_US.UTF-8" T "colorbars" A "colorbars" F "colorbars" 7931 this is black bg : 40 ;END this is red bg : 41 ;END this is green bg : 42 ;END this is yellow bg : 43 ;END this is blue bg : 44 ;END this is magenta bg : 45 ;END this is cyan bg : 46 ;END this is white bg : 47 ;END this is bright black bg : 100 ;END this is bright red bg : 101 ;END this is bright green bg : 102 ;END this is bright yellow bg : 103 ;END this is bright blue bg : 104 ;END this is bright magenta bg : 105 ;END this is bright cyan bg : 106 ;END this is bright white bg : 107 ;END this is black fg : 30 ;END this is red fg : 31 ;END this is green fg : 32 ;END this is yellow fg : 33 ;END this is blue fg : 34 ;END this is magenta fg : 35 ;END this is cyan fg : 36 ;END this is white fg : 37 ;END this is bright black fg : 90 ;END this is bright red fg : 91 ;END this is bright green fg : 92 ;END this is bright yellow fg : 93 ;END this is bright blue fg : 94 ;END this is bright magenta fg : 95 ;END this is bright cyan fg : 96 ;END this is bright white fg : 97 ;END black : 30/ 40   31/ 40   32/ 40   33/ 40   34/ 40   35/ 40   36/ 40   37/ 40   90/ 40   91/ 40   92/ 40   93/ 40   94/ 40   95/ 40   96/ 40   97/ 40  red : 30/ 41   31/ 41   32/ 41   33/ 41   34/ 41   35/ 41   36/ 41   37/ 41   90/ 41   91/ 41   92/ 41   93/ 41   94/ 41   95/ 41   96/ 41   97/ 41  green : 30/ 42   31/ 42   32/ 42   33/ 42   34/ 42   35/ 42   36/ 42   37/ 42   90/ 42   91/ 42   92/ 42   93/ 42   94/ 42   95/ 42   96/ 42   97/ 42  yellow : 30/ 43   31/ 43   32/ 43   33/ 43   34/ 43   35/ 43   36/ 43   37/ 43   90/ 43   91/ 43   92/ 43   93/ 43   94/ 43   95/ 43   96/ 43   97/ 43  blue : 30/ 44   31/ 44   32/ 44   33/ 44   34/ 44   35/ 44   36/ 44   37/ 44   90/ 44   91/ 44   92/ 44   93/ 44   94/ 44   95/ 44   96/ 44   97/ 44  magenta : 30/ 45   31/ 45   32/ 45   33/ 45   34/ 45   35/ 45   36/ 45   37/ 45   90/ 45   91/ 45   92/ 45   93/ 45   94/ 45   95/ 45   96/ 45   97/ 45  cyan : 30/ 46   31/ 46   32/ 46   33/ 46   34/ 46   35/ 46   36/ 46   37/ 46   90/ 46   91/ 46   92/ 46   93/ 46   94/ 46   95/ 46   96/ 46   97/ 46  white : 30/ 47   31/ 47   32/ 47   33/ 47   34/ 47   35/ 47   36/ 47   37/ 47   90/ 47   91/ 47   92/ 47   93/ 47   94/ 47   95/ 47   96/ 47   97/ 47  bright black : 30/100   31/100   32/100   33/100   34/100   35/100   36/100   37/100   90/100   91/100   92/100   93/100   94/100   95/100   96/100   97/100  bright red : 30/101   31/101   32/101   33/101   34/101   35/101   36/101   37/101   90/101   91/101   92/101   93/101   94/101   95/101   96/101   97/101  bright green : 30/102   31/102   32/102   33/102   34/102   35/102   36/102   37/102   90/102   91/102   92/102   93/102   94/102   95/102   96/102   97/102  bright yellow : 30/103   31/103   32/103   33/103   34/103   35/103   36/103   37/103   90/103   91/103   92/103   93/103   94/103   95/103   96/103   97/103  bright blue : 30/104   31/104   32/104   33/104   34/104   35/104   36/104   37/104   90/104   91/104   92/104   93/104   94/104   95/104   96/104   97/104  bright magenta : 30/105   31/105   32/105   33/105   34/105   35/105   36/105   37/105   90/105   91/105   92/105   93/105   94/105   95/105   96/105   97/105  bright cyan : 30/106   31/106   32/106   33/106   34/106   35/106   36/106   37/106   90/106   91/106   92/106   93/106   94/106   95/106   96/106   97/106  bright white : 30/107   31/107   32/107   33/107   34/107   35/107   36/107   37/107   90/107   91/107   92/107   93/107   94/107   95/107   96/107   97/107  R =this is black bg :!28 40 !FF;END______________________________________________________________________________this is red bg :!29 41 !FF;END______________________________________________________________________________this is green bg :!2A 42 !FF;END______________________________________________________________________________this is yellow bg :!2B 43 !FF;END______________________________________________________________________________this is blue bg :!2C 44 !FF;END______________________________________________________________________________this is magenta bg :!2D 45 !FF;END______________________________________________________________________________this is cyan bg :!2E 46 !FF;END______________________________________________________________________________this is white bg :!2F 47 !FF;END______________________________________________________________________________this is bright black bg :!64 100 !FF;END______________________________________________________________________________this is bright red bg :!65 101 !FF;END______________________________________________________________________________this is bright green bg :!66 102 !FF;END______________________________________________________________________________this is bright yellow bg :!67 103 !FF;END______________________________________________________________________________this is bright blue bg :!68 104 !FF;END______________________________________________________________________________this is bright magenta bg :!69 105 !FF;END______________________________________________________________________________this is bright cyan bg :!6A 106 !FF;END______________________________________________________________________________this is bright white bg :!6B 107 !FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________this is black fg :$1E 30 $FF;END______________________________________________________________________________this is red fg :$1F 31 $FF;END______________________________________________________________________________this is green fg :$20 32 $FF;END______________________________________________________________________________this is yellow fg :$21 33 $FF;END______________________________________________________________________________this is blue fg :$22 34 $FF;END______________________________________________________________________________this is magenta fg :$23 35 $FF;END______________________________________________________________________________this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 94 $FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ 40 $FF!FF ____________________________________________________________________________________________red :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ 41 $FF!FF ____________________________________________________________________________________________green :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ 42 $FF!FF ____________________________________________________________________________________________yellow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ 43 $FF!FF ____________________________________________________________________________________________blue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 4@04$FF!FFcolorbars@00#______________________________________________________________________________________________________________________________ +6a =this is red bg :!29 41 !FF;END______________________________________________________________________________this is green bg :!2A 42 !FF;END______________________________________________________________________________this is yellow bg :!2B 43 !FF;END______________________________________________________________________________this is blue bg :!2C 44 !FF;END______________________________________________________________________________this is magenta bg :!2D 45 !FF;END______________________________________________________________________________this is cyan bg :!2E 46 !FF;END______________________________________________________________________________this is white bg :!2F 47 !FF;END______________________________________________________________________________this is bright black bg :!64 100 !FF;END______________________________________________________________________________this is bright red bg :!65 101 !FF;END______________________________________________________________________________this is bright green bg :!66 102 !FF;END______________________________________________________________________________this is bright yellow bg :!67 103 !FF;END______________________________________________________________________________this is bright blue bg :!68 104 !FF;END______________________________________________________________________________this is bright magenta bg :!69 105 !FF;END______________________________________________________________________________this is bright cyan bg :!6A 106 !FF;END______________________________________________________________________________this is bright white bg :!6B 107 !FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________this is black fg :$1E 30 $FF;END______________________________________________________________________________this is red fg :$1F 31 $FF;END______________________________________________________________________________this is green fg :$20 32 $FF;END______________________________________________________________________________this is yellow fg :$21 33 $FF;END______________________________________________________________________________this is blue fg :$22 34 $FF;END______________________________________________________________________________this is magenta fg :$23 35 $FF;END______________________________________________________________________________this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 94 $FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ 40 $FF!FF ____________________________________________________________________________________________red :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ 41 $FF!FF ____________________________________________________________________________________________green :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ 42 $FF!FF ____________________________________________________________________________________________yellow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ 43 $FF!FF ____________________________________________________________________________________________blue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ 44 $FF!FF ____________________________________________________________________________________________:#______________________________________________________________________________________________________________________________________ +6a =this is green bg :!2A 42 !FF;END______________________________________________________________________________this is yellow bg :!2B 43 !FF;END______________________________________________________________________________this is blue bg :!2C 44 !FF;END______________________________________________________________________________this is magenta bg :!2D 45 !FF;END______________________________________________________________________________this is cyan bg :!2E 46 !FF;END______________________________________________________________________________this is white bg :!2F 47 !FF;END______________________________________________________________________________this is bright black bg :!64 100 !FF;END______________________________________________________________________________this is bright red bg :!65 101 !FF;END______________________________________________________________________________this is bright green bg :!66 102 !FF;END______________________________________________________________________________this is bright yellow bg :!67 103 !FF;END______________________________________________________________________________this is bright blue bg :!68 104 !FF;END______________________________________________________________________________this is bright magenta bg :!69 105 !FF;END______________________________________________________________________________this is bright cyan bg :!6A 106 !FF;END______________________________________________________________________________this is bright white bg :!6B 107 !FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________this is black fg :$1E 30 $FF;END______________________________________________________________________________this is red fg :$1F 31 $FF;END______________________________________________________________________________this is green fg :$20 32 $FF;END______________________________________________________________________________this is yellow fg :$21 33 $FF;END______________________________________________________________________________this is blue fg :$22 34 $FF;END______________________________________________________________________________this is magenta fg :$23 35 $FF;END______________________________________________________________________________this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 94 $FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ 40 $FF!FF ____________________________________________________________________________________________red :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ 41 $FF!FF ____________________________________________________________________________________________green :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ 42 $FF!FF ____________________________________________________________________________________________yellow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ 43 $FF!FF ____________________________________________________________________________________________blue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ 44 $FF!FF ____________________________________________________________________________________________magenta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 4$FF!FF:#______________________________________________________________________________________________________________________________________ +6a =this is yellow bg :!2B 43 !FF;END______________________________________________________________________________this is blue bg :!2C 44 !FF;END______________________________________________________________________________this is magenta bg :!2D 45 !FF;END______________________________________________________________________________this is cyan bg :!2E 46 !FF;END______________________________________________________________________________this is white bg :!2F 47 !FF;END______________________________________________________________________________this is bright black bg :!64 100 !FF;END______________________________________________________________________________this is bright red bg :!65 101 !FF;END______________________________________________________________________________this is bright green bg :!66 102 !FF;END______________________________________________________________________________this is bright yellow bg :!67 103 !FF;END______________________________________________________________________________this is bright blue bg :!68 104 !FF;END______________________________________________________________________________this is bright magenta bg :!69 105 !FF;END______________________________________________________________________________this is bright cyan bg :!6A 106 !FF;END______________________________________________________________________________this is bright white bg :!6B 107 !FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________this is black fg :$1E 30 $FF;END______________________________________________________________________________this is red fg :$1F 31 $FF;END______________________________________________________________________________this is green fg :$20 32 $FF;END______________________________________________________________________________this is yellow fg :$21 33 $FF;END______________________________________________________________________________this is blue fg :$22 34 $FF;END______________________________________________________________________________this is magenta fg :$23 35 $FF;END______________________________________________________________________________this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 94 $FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ 40 $FF!FF ____________________________________________________________________________________________red :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ 41 $FF!FF ____________________________________________________________________________________________green :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ 42 $FF!FF ____________________________________________________________________________________________yellow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ 43 $FF!FF ____________________________________________________________________________________________blue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ 44 $FF!FF ____________________________________________________________________________________________magenta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/ 45 $FF!FF ____________________________________________________________________________________________:#______________________________________________________________________________________________________________________________________ +6a =this is blue bg :!2C 44 !FF;END______________________________________________________________________________this is magenta bg :!2D 45 !FF;END______________________________________________________________________________this is cyan bg :!2E 46 !FF;END______________________________________________________________________________this is white bg :!2F 47 !FF;END______________________________________________________________________________this is bright black bg :!64 100 !FF;END______________________________________________________________________________this is bright red bg :!65 101 !FF;END______________________________________________________________________________this is bright green bg :!66 102 !FF;END______________________________________________________________________________this is bright yellow bg :!67 103 !FF;END______________________________________________________________________________this is bright blue bg :!68 104 !FF;END______________________________________________________________________________this is bright magenta bg :!69 105 !FF;END______________________________________________________________________________this is bright cyan bg :!6A 106 !FF;END______________________________________________________________________________this is bright white bg :!6B 107 !FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________this is black fg :$1E 30 $FF;END______________________________________________________________________________this is red fg :$1F 31 $FF;END______________________________________________________________________________this is green fg :$20 32 $FF;END______________________________________________________________________________this is yellow fg :$21 33 $FF;END______________________________________________________________________________this is blue fg :$22 34 $FF;END______________________________________________________________________________this is magenta fg :$23 35 $FF;END______________________________________________________________________________this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 94 $FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ 40 $FF!FF ____________________________________________________________________________________________red :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ 41 $FF!FF ____________________________________________________________________________________________green :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ 42 $FF!FF ____________________________________________________________________________________________yellow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ 43 $FF!FF ____________________________________________________________________________________________blue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ 44 $FF!FF ____________________________________________________________________________________________magenta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/ 45 $FF!FF ____________________________________________________________________________________________cyan :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 4$FF!FF:#______________________________________________________________________________________________________________________________________ +20 =this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 94 $FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ 40 $FF!FF ____________________________________________________________________________________________red :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ 41 $FF!FF ____________________________________________________________________________________________green :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ 42 $FF!FF ____________________________________________________________________________________________yellow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ 43 $FF!FF ____________________________________________________________________________________________blue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ 44 $FF!FF ____________________________________________________________________________________________magenta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/ 45 $FF!FF ____________________________________________________________________________________________cyan :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/ 46 $FF!FF ____________________________________________________________________________________________white :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/ 47 $FF!FF ____________________________________________________________________________________________bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/100 $FF!FF ____________________________________________________________________________________________bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/101 $FF!FF ____________________________________________________________________________________________bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/102 $FF!FF ____________________________________________________________________________________________bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/103 $FF!FF ____________________________________________________________________________________________bright blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/104 $FF!FF ____________________________________________________________________________________________bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/105 $FF!FF ____________________________________________________________________________________________bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/106 $FF!FF ____________________________________________________________________________________________bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/107 $FF!FF ____________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +3d =this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 94 $FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ 40 $FF!FF ____________________________________________________________________________________________red :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ 41 $FF!FF ____________________________________________________________________________________________green :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ 42 $FF!FF ____________________________________________________________________________________________yellow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ 43 $FF!FF ____________________________________________________________________________________________blue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ 44 $FF!FF ____________________________________________________________________________________________magenta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/ 45 $FF!FF ____________________________________________________________________________________________cyan :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/ 46 $FF!FF ____________________________________________________________________________________________white :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/ 47 $FF!FF ____________________________________________________________________________________________bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/100 $FF!FF ____________________________________________________________________________________________bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/101 $FF!FF ____________________________________________________________________________________________bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/102 $FF!FF ____________________________________________________________________________________________bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/103 $FF!FF ____________________________________________________________________________________________bright blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/104 $FF!FF ____________________________________________________________________________________________bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/105 $FF!FF ____________________________________________________________________________________________bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/106 $FF!FF ____________________________________________________________________________________________bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/107 $FF!FF ____________________________________________________________________________________________@04colorbars lines 24-51/51 byte 7931/7931 (END) (press RETURN)@00#__________________________________________________________________________ +a =this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 94 $FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ 40 $FF!FF ____________________________________________________________________________________________red :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ 41 $FF!FF ____________________________________________________________________________________________green :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ 42 $FF!FF ____________________________________________________________________________________________yellow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ 43 $FF!FF ____________________________________________________________________________________________blue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ 44 $FF!FF ____________________________________________________________________________________________magenta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/ 45 $FF!FF ____________________________________________________________________________________________cyan :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/ 46 $FF!FF ____________________________________________________________________________________________white :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/ 47 $FF!FF ____________________________________________________________________________________________bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/100 $FF!FF ____________________________________________________________________________________________bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/101 $FF!FF ____________________________________________________________________________________________bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/102 $FF!FF ____________________________________________________________________________________________bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/103 $FF!FF ____________________________________________________________________________________________bright blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/104 $FF!FF ____________________________________________________________________________________________bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/105 $FF!FF ____________________________________________________________________________________________bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/106 $FF!FF ____________________________________________________________________________________________bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/107 $FF!FF ____________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +2d =this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 94 $FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ 40 $FF!FF ____________________________________________________________________________________________red :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ 41 $FF!FF ____________________________________________________________________________________________green :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ 42 $FF!FF ____________________________________________________________________________________________yellow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ 43 $FF!FF ____________________________________________________________________________________________blue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ 44 $FF!FF ____________________________________________________________________________________________magenta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/ 45 $FF!FF ____________________________________________________________________________________________cyan :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/ 46 $FF!FF ____________________________________________________________________________________________white :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/ 47 $FF!FF ____________________________________________________________________________________________bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/100 $FF!FF ____________________________________________________________________________________________bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/101 $FF!FF ____________________________________________________________________________________________bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/102 $FF!FF ____________________________________________________________________________________________bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/103 $FF!FF ____________________________________________________________________________________________bright blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/104 $FF!FF ____________________________________________________________________________________________bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/105 $FF!FF ____________________________________________________________________________________________bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/106 $FF!FF ____________________________________________________________________________________________bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/107 $FF!FF ____________________________________________________________________________________________-#______________________________________________________________________________________________________________________________________ +53 =this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 94 $FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ 40 $FF!FF ____________________________________________________________________________________________red :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ 41 $FF!FF ____________________________________________________________________________________________green :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ 42 $FF!FF ____________________________________________________________________________________________yellow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ 43 $FF!FF ____________________________________________________________________________________________blue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ 44 $FF!FF ____________________________________________________________________________________________magenta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/ 45 $FF!FF ____________________________________________________________________________________________cyan :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/ 46 $FF!FF ____________________________________________________________________________________________white :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/ 47 $FF!FF ____________________________________________________________________________________________bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/100 $FF!FF ____________________________________________________________________________________________bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/101 $FF!FF ____________________________________________________________________________________________bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/102 $FF!FF ____________________________________________________________________________________________bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/103 $FF!FF ____________________________________________________________________________________________bright blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/104 $FF!FF ____________________________________________________________________________________________bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/105 $FF!FF ____________________________________________________________________________________________bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/106 $FF!FF ____________________________________________________________________________________________bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/107 $FF!FF ____________________________________________________________________________________________@04Chop long lines (press RETURN)@00#________________________________________________________________________________________________________ +a =this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 94 $FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ @04$FF!FF>@00red :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ @04$FF!FF>@00green :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ @04$FF!FF>@00yellow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ @04$FF!FF>@00blue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ @04$FF!FF>@00magenta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ @04$FF!FF>@00cyan :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ @04$FF!FF>@00white :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ @04$FF!FF>@00bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1@04$FF!FF>@00bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1@04$FF!FF>@00bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1@04$FF!FF>@00bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1@04$FF!FF>@00bright blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/1@04$FF!FF>@00bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1@04$FF!FF>@00bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1@04$FF!FF>@00bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +32 =this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 94 $FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ @04$FF!FF>@00red :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ @04$FF!FF>@00green :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ @04$FF!FF>@00yellow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ @04$FF!FF>@00blue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ @04$FF!FF>@00magenta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ @04$FF!FF>@00cyan :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ @04$FF!FF>@00white :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ @04$FF!FF>@00bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1@04$FF!FF>@00bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1@04$FF!FF>@00bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1@04$FF!FF>@00bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1@04$FF!FF>@00bright blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/1@04$FF!FF>@00bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1@04$FF!FF>@00bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1@04$FF!FF>@00bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________:2#_____________________________________________________________________________________________________________________________________ +1b =this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 94 $FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ @04$FF!FF>@00red :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ @04$FF!FF>@00green :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ @04$FF!FF>@00yellow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ @04$FF!FF>@00blue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ @04$FF!FF>@00magenta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ @04$FF!FF>@00cyan :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ @04$FF!FF>@00white :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ @04$FF!FF>@00bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1@04$FF!FF>@00bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1@04$FF!FF>@00bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1@04$FF!FF>@00bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1@04$FF!FF>@00bright blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/1@04$FF!FF>@00bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1@04$FF!FF>@00bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1@04$FF!FF>@00bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________:2#_____________________________________________________________________________________________________________________________________ +4f =this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 94 $FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ @04$FF!FF>@00red :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ @04$FF!FF>@00green :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ @04$FF!FF>@00yellow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ @04$FF!FF>@00blue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ @04$FF!FF>@00magenta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ @04$FF!FF>@00cyan :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ @04$FF!FF>@00white :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ @04$FF!FF>@00bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1@04$FF!FF>@00bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1@04$FF!FF>@00bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1@04$FF!FF>@00bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1@04$FF!FF>@00bright blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/1@04$FF!FF>@00bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1@04$FF!FF>@00bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1@04$FF!FF>@00bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________:2#_____________________________________________________________________________________________________________________________________ +43 =is is cyan fg :$24 36 $FF;END________________________________________________________________________________is is white fg :$25 37 $FF;END________________________________________________________________________________is is bright black fg :$5A 90 $FF;END________________________________________________________________________________is is bright red fg :$5B 91 $FF;END________________________________________________________________________________is is bright green fg :$5C 92 $FF;END________________________________________________________________________________is is bright yellow fg :$5D 93 $FF;END________________________________________________________________________________is is bright blue fg :$5E 94 $FF;END________________________________________________________________________________is is bright magenta fg :$5F 95 $FF;END________________________________________________________________________________is is bright cyan fg :$60 96 $FF;END________________________________________________________________________________is is bright white fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ack :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40@04$FF!FF>@00d :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41@04$FF!FF>@00een :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42@04$FF!FF>@00llow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43@04$FF!FF>@00ue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44@04$FF!FF>@00genta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45@04$FF!FF>@00an :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46@04$FF!FF>@00ite :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47@04$FF!FF>@00ight black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100@04$FF!FF>@00ight red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101@04$FF!FF>@00ight green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102@04$FF!FF>@00ight yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103@04$FF!FF>@00ight blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104@04$FF!FF>@00ight magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105@04$FF!FF>@00ight cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106@04$FF!FF>@00ight white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b =is is cyan fg :$24 36 $FF;END________________________________________________________________________________is is white fg :$25 37 $FF;END________________________________________________________________________________is is bright black fg :$5A 90 $FF;END________________________________________________________________________________is is bright red fg :$5B 91 $FF;END________________________________________________________________________________is is bright green fg :$5C 92 $FF;END________________________________________________________________________________is is bright yellow fg :$5D 93 $FF;END________________________________________________________________________________is is bright blue fg :$5E 94 $FF;END________________________________________________________________________________is is bright magenta fg :$5F 95 $FF;END________________________________________________________________________________is is bright cyan fg :$60 96 $FF;END________________________________________________________________________________is is bright white fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ack :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40@04$FF!FF>@00d :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41@04$FF!FF>@00een :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42@04$FF!FF>@00llow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43@04$FF!FF>@00ue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44@04$FF!FF>@00genta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45@04$FF!FF>@00an :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46@04$FF!FF>@00ite :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47@04$FF!FF>@00ight black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100@04$FF!FF>@00ight red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101@04$FF!FF>@00ight green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102@04$FF!FF>@00ight yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103@04$FF!FF>@00ight blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104@04$FF!FF>@00ight magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105@04$FF!FF>@00ight cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106@04$FF!FF>@00ight white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =is is cyan fg :$24 36 $FF;END________________________________________________________________________________is is white fg :$25 37 $FF;END________________________________________________________________________________is is bright black fg :$5A 90 $FF;END________________________________________________________________________________is is bright red fg :$5B 91 $FF;END________________________________________________________________________________is is bright green fg :$5C 92 $FF;END________________________________________________________________________________is is bright yellow fg :$5D 93 $FF;END________________________________________________________________________________is is bright blue fg :$5E 94 $FF;END________________________________________________________________________________is is bright magenta fg :$5F 95 $FF;END________________________________________________________________________________is is bright cyan fg :$60 96 $FF;END________________________________________________________________________________is is bright white fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ack :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40@04$FF!FF>@00d :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41@04$FF!FF>@00een :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42@04$FF!FF>@00llow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43@04$FF!FF>@00ue :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44@04$FF!FF>@00genta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45@04$FF!FF>@00an :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46@04$FF!FF>@00ite :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47@04$FF!FF>@00ight black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100@04$FF!FF>@00ight red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101@04$FF!FF>@00ight green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102@04$FF!FF>@00ight yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103@04$FF!FF>@00ight blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104@04$FF!FF>@00ight magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105@04$FF!FF>@00ight cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106@04$FF!FF>@00ight white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = is cyan fg :$24 36 $FF;END__________________________________________________________________________________ is white fg :$25 37 $FF;END__________________________________________________________________________________ is bright black fg :$5A 90 $FF;END__________________________________________________________________________________ is bright red fg :$5B 91 $FF;END__________________________________________________________________________________ is bright green fg :$5C 92 $FF;END__________________________________________________________________________________ is bright yellow fg :$5D 93 $FF;END__________________________________________________________________________________ is bright blue fg :$5E 94 $FF;END__________________________________________________________________________________ is bright magenta fg :$5F 95 $FF;END__________________________________________________________________________________ is bright cyan fg :$60 96 $FF;END__________________________________________________________________________________ is bright white fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________k :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF @04>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF @04>@00n :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF @04>@00ow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF @04>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF @04>@00nta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF @04>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF @04>@00e :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF @04>@00ht black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF @04>@00ht red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF @04>@00ht green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF @04>@00ht yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF @04>@00ht blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF @04>@00ht magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF @04>@00ht cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF @04>@00ht white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF @04>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = is cyan fg :$24 36 $FF;END__________________________________________________________________________________ is white fg :$25 37 $FF;END__________________________________________________________________________________ is bright black fg :$5A 90 $FF;END__________________________________________________________________________________ is bright red fg :$5B 91 $FF;END__________________________________________________________________________________ is bright green fg :$5C 92 $FF;END__________________________________________________________________________________ is bright yellow fg :$5D 93 $FF;END__________________________________________________________________________________ is bright blue fg :$5E 94 $FF;END__________________________________________________________________________________ is bright magenta fg :$5F 95 $FF;END__________________________________________________________________________________ is bright cyan fg :$60 96 $FF;END__________________________________________________________________________________ is bright white fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________k :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF @04>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF @04>@00n :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF @04>@00ow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF @04>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF @04>@00nta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF @04>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF @04>@00e :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF @04>@00ht black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF @04>@00ht red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF @04>@00ht green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF @04>@00ht yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF @04>@00ht blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF @04>@00ht magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF @04>@00ht cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF @04>@00ht white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF @04>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = is cyan fg :$24 36 $FF;END__________________________________________________________________________________ is white fg :$25 37 $FF;END__________________________________________________________________________________ is bright black fg :$5A 90 $FF;END__________________________________________________________________________________ is bright red fg :$5B 91 $FF;END__________________________________________________________________________________ is bright green fg :$5C 92 $FF;END__________________________________________________________________________________ is bright yellow fg :$5D 93 $FF;END__________________________________________________________________________________ is bright blue fg :$5E 94 $FF;END__________________________________________________________________________________ is bright magenta fg :$5F 95 $FF;END__________________________________________________________________________________ is bright cyan fg :$60 96 $FF;END__________________________________________________________________________________ is bright white fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________k :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF @04>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF @04>@00n :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF @04>@00ow :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF @04>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF @04>@00nta :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF @04>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF @04>@00e :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF @04>@00ht black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF @04>@00ht red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF @04>@00ht green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF @04>@00ht yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF @04>@00ht blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF @04>@00ht magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF @04>@00ht cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF @04>@00ht white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF @04>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =s cyan fg :$24 36 $FF;END____________________________________________________________________________________s white fg :$25 37 $FF;END____________________________________________________________________________________s bright black fg :$5A 90 $FF;END____________________________________________________________________________________s bright red fg :$5B 91 $FF;END____________________________________________________________________________________s bright green fg :$5C 92 $FF;END____________________________________________________________________________________s bright yellow fg :$5D 93 $FF;END____________________________________________________________________________________s bright blue fg :$5E 94 $FF;END____________________________________________________________________________________s bright magenta fg :$5F 95 $FF;END____________________________________________________________________________________s bright cyan fg :$60 96 $FF;END____________________________________________________________________________________s bright white fg :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 @04$FF!FF>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 @04$FF!FF>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A @04$FF!FF>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B @04$FF!FF>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C @04$FF!FF>@00a :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D @04$FF!FF>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E @04$FF!FF>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F @04$FF!FF>@00 black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 @04$FF!FF>@00 red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 @04$FF!FF>@00 green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 @04$FF!FF>@00 yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 @04$FF!FF>@00 blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 @04$FF!FF>@00 magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 @04$FF!FF>@00 cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A @04$FF!FF>@00 white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b =s cyan fg :$24 36 $FF;END____________________________________________________________________________________s white fg :$25 37 $FF;END____________________________________________________________________________________s bright black fg :$5A 90 $FF;END____________________________________________________________________________________s bright red fg :$5B 91 $FF;END____________________________________________________________________________________s bright green fg :$5C 92 $FF;END____________________________________________________________________________________s bright yellow fg :$5D 93 $FF;END____________________________________________________________________________________s bright blue fg :$5E 94 $FF;END____________________________________________________________________________________s bright magenta fg :$5F 95 $FF;END____________________________________________________________________________________s bright cyan fg :$60 96 $FF;END____________________________________________________________________________________s bright white fg :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 @04$FF!FF>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 @04$FF!FF>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A @04$FF!FF>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B @04$FF!FF>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C @04$FF!FF>@00a :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D @04$FF!FF>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E @04$FF!FF>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F @04$FF!FF>@00 black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 @04$FF!FF>@00 red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 @04$FF!FF>@00 green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 @04$FF!FF>@00 yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 @04$FF!FF>@00 blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 @04$FF!FF>@00 magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 @04$FF!FF>@00 cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A @04$FF!FF>@00 white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =s cyan fg :$24 36 $FF;END____________________________________________________________________________________s white fg :$25 37 $FF;END____________________________________________________________________________________s bright black fg :$5A 90 $FF;END____________________________________________________________________________________s bright red fg :$5B 91 $FF;END____________________________________________________________________________________s bright green fg :$5C 92 $FF;END____________________________________________________________________________________s bright yellow fg :$5D 93 $FF;END____________________________________________________________________________________s bright blue fg :$5E 94 $FF;END____________________________________________________________________________________s bright magenta fg :$5F 95 $FF;END____________________________________________________________________________________s bright cyan fg :$60 96 $FF;END____________________________________________________________________________________s bright white fg :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 @04$FF!FF>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 @04$FF!FF>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A @04$FF!FF>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B @04$FF!FF>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C @04$FF!FF>@00a :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D @04$FF!FF>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E @04$FF!FF>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F @04$FF!FF>@00 black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 @04$FF!FF>@00 red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 @04$FF!FF>@00 green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 @04$FF!FF>@00 yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 @04$FF!FF>@00 blue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 @04$FF!FF>@00 magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 @04$FF!FF>@00 cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A @04$FF!FF>@00 white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =cyan fg :$24 36 $FF;END______________________________________________________________________________________white fg :$25 37 $FF;END______________________________________________________________________________________bright black fg :$5A 90 $FF;END______________________________________________________________________________________bright red fg :$5B 91 $FF;END______________________________________________________________________________________bright green fg :$5C 92 $FF;END______________________________________________________________________________________bright yellow fg :$5D 93 $FF;END______________________________________________________________________________________bright blue fg :$5E 94 $FF;END______________________________________________________________________________________bright magenta fg :$5F 95 $FF;END______________________________________________________________________________________bright cyan fg :$60 96 $FF;END______________________________________________________________________________________bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94@04$FF!FF>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94@04$FF!FF>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94@04$FF!FF>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94@04$FF!FF>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94@04$FF!FF>@00 :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94@04$FF!FF>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94@04$FF!FF>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94@04$FF!FF>@00lack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94@04$FF!FF>@00ed :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94@04$FF!FF>@00reen :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94@04$FF!FF>@00ellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94@04$FF!FF>@00lue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94@04$FF!FF>@00agenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94@04$FF!FF>@00yan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94@04$FF!FF>@00hite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b =cyan fg :$24 36 $FF;END______________________________________________________________________________________white fg :$25 37 $FF;END______________________________________________________________________________________bright black fg :$5A 90 $FF;END______________________________________________________________________________________bright red fg :$5B 91 $FF;END______________________________________________________________________________________bright green fg :$5C 92 $FF;END______________________________________________________________________________________bright yellow fg :$5D 93 $FF;END______________________________________________________________________________________bright blue fg :$5E 94 $FF;END______________________________________________________________________________________bright magenta fg :$5F 95 $FF;END______________________________________________________________________________________bright cyan fg :$60 96 $FF;END______________________________________________________________________________________bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94@04$FF!FF>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94@04$FF!FF>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94@04$FF!FF>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94@04$FF!FF>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94@04$FF!FF>@00 :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94@04$FF!FF>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94@04$FF!FF>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94@04$FF!FF>@00lack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94@04$FF!FF>@00ed :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94@04$FF!FF>@00reen :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94@04$FF!FF>@00ellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94@04$FF!FF>@00lue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94@04$FF!FF>@00agenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94@04$FF!FF>@00yan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94@04$FF!FF>@00hite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =cyan fg :$24 36 $FF;END______________________________________________________________________________________white fg :$25 37 $FF;END______________________________________________________________________________________bright black fg :$5A 90 $FF;END______________________________________________________________________________________bright red fg :$5B 91 $FF;END______________________________________________________________________________________bright green fg :$5C 92 $FF;END______________________________________________________________________________________bright yellow fg :$5D 93 $FF;END______________________________________________________________________________________bright blue fg :$5E 94 $FF;END______________________________________________________________________________________bright magenta fg :$5F 95 $FF;END______________________________________________________________________________________bright cyan fg :$60 96 $FF;END______________________________________________________________________________________bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94@04$FF!FF>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94@04$FF!FF>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94@04$FF!FF>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94@04$FF!FF>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94@04$FF!FF>@00 :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94@04$FF!FF>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94@04$FF!FF>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94@04$FF!FF>@00lack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94@04$FF!FF>@00ed :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94@04$FF!FF>@00reen :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94@04$FF!FF>@00ellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94@04$FF!FF>@00lue :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94@04$FF!FF>@00agenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94@04$FF!FF>@00yan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94@04$FF!FF>@00hite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =an fg :$24 36 $FF;END________________________________________________________________________________________ite fg :$25 37 $FF;END________________________________________________________________________________________ight black fg :$5A 90 $FF;END________________________________________________________________________________________ight red fg :$5B 91 $FF;END________________________________________________________________________________________ight green fg :$5C 92 $FF;END________________________________________________________________________________________ight yellow fg :$5D 93 $FF;END________________________________________________________________________________________ight blue fg :$5E 94 $FF;END________________________________________________________________________________________ight magenta fg :$5F 95 $FF;END________________________________________________________________________________________ight cyan fg :$60 96 $FF;END________________________________________________________________________________________ight white fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ @04$FF!FF>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ @04$FF!FF>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ @04$FF!FF>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ @04$FF!FF>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ @04$FF!FF>@00 :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ @04$FF!FF>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ @04$FF!FF>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ @04$FF!FF>@00ck :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/1@04$FF!FF>@00 :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/1@04$FF!FF>@00en :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/1@04$FF!FF>@00low :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/1@04$FF!FF>@00e :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/1@04$FF!FF>@00enta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/1@04$FF!FF>@00n :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/1@04$FF!FF>@00te :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b =an fg :$24 36 $FF;END________________________________________________________________________________________ite fg :$25 37 $FF;END________________________________________________________________________________________ight black fg :$5A 90 $FF;END________________________________________________________________________________________ight red fg :$5B 91 $FF;END________________________________________________________________________________________ight green fg :$5C 92 $FF;END________________________________________________________________________________________ight yellow fg :$5D 93 $FF;END________________________________________________________________________________________ight blue fg :$5E 94 $FF;END________________________________________________________________________________________ight magenta fg :$5F 95 $FF;END________________________________________________________________________________________ight cyan fg :$60 96 $FF;END________________________________________________________________________________________ight white fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ @04$FF!FF>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ @04$FF!FF>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ @04$FF!FF>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ @04$FF!FF>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ @04$FF!FF>@00 :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ @04$FF!FF>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ @04$FF!FF>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ @04$FF!FF>@00ck :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/1@04$FF!FF>@00 :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/1@04$FF!FF>@00en :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/1@04$FF!FF>@00low :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/1@04$FF!FF>@00e :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/1@04$FF!FF>@00enta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/1@04$FF!FF>@00n :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/1@04$FF!FF>@00te :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =an fg :$24 36 $FF;END________________________________________________________________________________________ite fg :$25 37 $FF;END________________________________________________________________________________________ight black fg :$5A 90 $FF;END________________________________________________________________________________________ight red fg :$5B 91 $FF;END________________________________________________________________________________________ight green fg :$5C 92 $FF;END________________________________________________________________________________________ight yellow fg :$5D 93 $FF;END________________________________________________________________________________________ight blue fg :$5E 94 $FF;END________________________________________________________________________________________ight magenta fg :$5F 95 $FF;END________________________________________________________________________________________ight cyan fg :$60 96 $FF;END________________________________________________________________________________________ight white fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ @04$FF!FF>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ @04$FF!FF>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ @04$FF!FF>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ @04$FF!FF>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ @04$FF!FF>@00 :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ @04$FF!FF>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ @04$FF!FF>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ @04$FF!FF>@00ck :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/1@04$FF!FF>@00 :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/1@04$FF!FF>@00en :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/1@04$FF!FF>@00low :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/1@04$FF!FF>@00e :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/1@04$FF!FF>@00enta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/1@04$FF!FF>@00n :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/1@04$FF!FF>@00te :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = fg :$24 36 $FF;END__________________________________________________________________________________________e fg :$25 37 $FF;END__________________________________________________________________________________________ht black fg :$5A 90 $FF;END__________________________________________________________________________________________ht red fg :$5B 91 $FF;END__________________________________________________________________________________________ht green fg :$5C 92 $FF;END__________________________________________________________________________________________ht yellow fg :$5D 93 $FF;END__________________________________________________________________________________________ht blue fg :$5E 94 $FF;END__________________________________________________________________________________________ht magenta fg :$5F 95 $FF;END__________________________________________________________________________________________ht cyan fg :$60 96 $FF;END__________________________________________________________________________________________ht white fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40@04$FF!FF>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41@04$FF!FF>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42@04$FF!FF>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43@04$FF!FF>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44@04$FF!FF>@00 :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45@04$FF!FF>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46@04$FF!FF>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47@04$FF!FF>@00 :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100@04$FF!FF>@00 :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101@04$FF!FF>@00 :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102@04$FF!FF>@00w :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103@04$FF!FF>@00 :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104@04$FF!FF>@00ta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105@04$FF!FF>@00 :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106@04$FF!FF>@00 :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = fg :$24 36 $FF;END__________________________________________________________________________________________e fg :$25 37 $FF;END__________________________________________________________________________________________ht black fg :$5A 90 $FF;END__________________________________________________________________________________________ht red fg :$5B 91 $FF;END__________________________________________________________________________________________ht green fg :$5C 92 $FF;END__________________________________________________________________________________________ht yellow fg :$5D 93 $FF;END__________________________________________________________________________________________ht blue fg :$5E 94 $FF;END__________________________________________________________________________________________ht magenta fg :$5F 95 $FF;END__________________________________________________________________________________________ht cyan fg :$60 96 $FF;END__________________________________________________________________________________________ht white fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40@04$FF!FF>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41@04$FF!FF>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42@04$FF!FF>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43@04$FF!FF>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44@04$FF!FF>@00 :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45@04$FF!FF>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46@04$FF!FF>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47@04$FF!FF>@00 :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100@04$FF!FF>@00 :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101@04$FF!FF>@00 :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102@04$FF!FF>@00w :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103@04$FF!FF>@00 :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104@04$FF!FF>@00ta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105@04$FF!FF>@00 :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106@04$FF!FF>@00 :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = fg :$24 36 $FF;END__________________________________________________________________________________________e fg :$25 37 $FF;END__________________________________________________________________________________________ht black fg :$5A 90 $FF;END__________________________________________________________________________________________ht red fg :$5B 91 $FF;END__________________________________________________________________________________________ht green fg :$5C 92 $FF;END__________________________________________________________________________________________ht yellow fg :$5D 93 $FF;END__________________________________________________________________________________________ht blue fg :$5E 94 $FF;END__________________________________________________________________________________________ht magenta fg :$5F 95 $FF;END__________________________________________________________________________________________ht cyan fg :$60 96 $FF;END__________________________________________________________________________________________ht white fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40@04$FF!FF>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41@04$FF!FF>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42@04$FF!FF>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43@04$FF!FF>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44@04$FF!FF>@00 :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45@04$FF!FF>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46@04$FF!FF>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47@04$FF!FF>@00 :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100@04$FF!FF>@00 :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101@04$FF!FF>@00 :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102@04$FF!FF>@00w :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103@04$FF!FF>@00 :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104@04$FF!FF>@00ta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105@04$FF!FF>@00 :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106@04$FF!FF>@00 :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =g :$24 36 $FF;END____________________________________________________________________________________________fg :$25 37 $FF;END____________________________________________________________________________________________ black fg :$5A 90 $FF;END____________________________________________________________________________________________ red fg :$5B 91 $FF;END____________________________________________________________________________________________ green fg :$5C 92 $FF;END____________________________________________________________________________________________ yellow fg :$5D 93 $FF;END____________________________________________________________________________________________ blue fg :$5E 94 $FF;END____________________________________________________________________________________________ magenta fg :$5F 95 $FF;END____________________________________________________________________________________________ cyan fg :$60 96 $FF;END____________________________________________________________________________________________ white fg :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF @04>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF @04>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF @04>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF @04>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF @04>@00 :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF @04>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF @04>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF @04>@00 :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF @04>@00 :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF @04>@00 :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF @04>@00 :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF @04>@00 :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF @04>@00 :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF @04>@00 :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF @04>@00 :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF @04>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b =g :$24 36 $FF;END____________________________________________________________________________________________fg :$25 37 $FF;END____________________________________________________________________________________________ black fg :$5A 90 $FF;END____________________________________________________________________________________________ red fg :$5B 91 $FF;END____________________________________________________________________________________________ green fg :$5C 92 $FF;END____________________________________________________________________________________________ yellow fg :$5D 93 $FF;END____________________________________________________________________________________________ blue fg :$5E 94 $FF;END____________________________________________________________________________________________ magenta fg :$5F 95 $FF;END____________________________________________________________________________________________ cyan fg :$60 96 $FF;END____________________________________________________________________________________________ white fg :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF @04>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF @04>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF @04>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF @04>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF @04>@00 :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF @04>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF @04>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF @04>@00 :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF @04>@00 :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF @04>@00 :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF @04>@00 :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF @04>@00 :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF @04>@00 :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF @04>@00 :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF @04>@00 :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF @04>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =g :$24 36 $FF;END____________________________________________________________________________________________fg :$25 37 $FF;END____________________________________________________________________________________________ black fg :$5A 90 $FF;END____________________________________________________________________________________________ red fg :$5B 91 $FF;END____________________________________________________________________________________________ green fg :$5C 92 $FF;END____________________________________________________________________________________________ yellow fg :$5D 93 $FF;END____________________________________________________________________________________________ blue fg :$5E 94 $FF;END____________________________________________________________________________________________ magenta fg :$5F 95 $FF;END____________________________________________________________________________________________ cyan fg :$60 96 $FF;END____________________________________________________________________________________________ white fg :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF @04>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF @04>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF @04>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF @04>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF @04>@00 :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF @04>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF @04>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF @04>@00 :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF @04>@00 :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF @04>@00 :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF @04>@00 :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF @04>@00 :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF @04>@00 :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF @04>@00 :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF @04>@00 :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF @04>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$24 36 $FF;END______________________________________________________________________________________________ :$25 37 $FF;END______________________________________________________________________________________________lack fg :$5A 90 $FF;END______________________________________________________________________________________________ed fg :$5B 91 $FF;END______________________________________________________________________________________________reen fg :$5C 92 $FF;END______________________________________________________________________________________________ellow fg :$5D 93 $FF;END______________________________________________________________________________________________lue fg :$5E 94 $FF;END______________________________________________________________________________________________agenta fg :$5F 95 $FF;END______________________________________________________________________________________________yan fg :$60 96 $FF;END______________________________________________________________________________________________hite fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 @04$FF!FF>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 @04$FF!FF>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A @04$FF!FF>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B @04$FF!FF>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C @04$FF!FF>@00 :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D @04$FF!FF>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E @04$FF!FF>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F @04$FF!FF>@00 :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 @04$FF!FF>@00 :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 @04$FF!FF>@00 :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 @04$FF!FF>@00 :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 @04$FF!FF>@00 :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 @04$FF!FF>@00 :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 @04$FF!FF>@00 :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A @04$FF!FF>@00 :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = :$24 36 $FF;END______________________________________________________________________________________________ :$25 37 $FF;END______________________________________________________________________________________________lack fg :$5A 90 $FF;END______________________________________________________________________________________________ed fg :$5B 91 $FF;END______________________________________________________________________________________________reen fg :$5C 92 $FF;END______________________________________________________________________________________________ellow fg :$5D 93 $FF;END______________________________________________________________________________________________lue fg :$5E 94 $FF;END______________________________________________________________________________________________agenta fg :$5F 95 $FF;END______________________________________________________________________________________________yan fg :$60 96 $FF;END______________________________________________________________________________________________hite fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 @04$FF!FF>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 @04$FF!FF>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A @04$FF!FF>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B @04$FF!FF>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C @04$FF!FF>@00 :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D @04$FF!FF>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E @04$FF!FF>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F @04$FF!FF>@00 :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 @04$FF!FF>@00 :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 @04$FF!FF>@00 :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 @04$FF!FF>@00 :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 @04$FF!FF>@00 :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 @04$FF!FF>@00 :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 @04$FF!FF>@00 :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A @04$FF!FF>@00 :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$24 36 $FF;END______________________________________________________________________________________________ :$25 37 $FF;END______________________________________________________________________________________________lack fg :$5A 90 $FF;END______________________________________________________________________________________________ed fg :$5B 91 $FF;END______________________________________________________________________________________________reen fg :$5C 92 $FF;END______________________________________________________________________________________________ellow fg :$5D 93 $FF;END______________________________________________________________________________________________lue fg :$5E 94 $FF;END______________________________________________________________________________________________agenta fg :$5F 95 $FF;END______________________________________________________________________________________________yan fg :$60 96 $FF;END______________________________________________________________________________________________hite fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 @04$FF!FF>@00 :$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 @04$FF!FF>@00 :$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A @04$FF!FF>@00 :$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B @04$FF!FF>@00 :$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C @04$FF!FF>@00 :$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D @04$FF!FF>@00 :$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E @04$FF!FF>@00 :$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F @04$FF!FF>@00 :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 @04$FF!FF>@00 :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 @04$FF!FF>@00 :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 @04$FF!FF>@00 :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 @04$FF!FF>@00 :$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 @04$FF!FF>@00 :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 @04$FF!FF>@00 :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A @04$FF!FF>@00 :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$24 36 $FF;END________________________________________________________________________________________________ :$25 37 $FF;END________________________________________________________________________________________________ck fg :$5A 90 $FF;END________________________________________________________________________________________________ fg :$5B 91 $FF;END________________________________________________________________________________________________en fg :$5C 92 $FF;END________________________________________________________________________________________________low fg :$5D 93 $FF;END________________________________________________________________________________________________e fg :$5E 94 $FF;END________________________________________________________________________________________________enta fg :$5F 95 $FF;END________________________________________________________________________________________________n fg :$60 96 $FF;END________________________________________________________________________________________________te fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95@04$FF!FF>@00$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95@04$FF!FF>@00$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95@04$FF!FF>@00$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95@04$FF!FF>@00$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95@04$FF!FF>@00$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95@04$FF!FF>@00$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95@04$FF!FF>@00$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95@04$FF!FF>@00$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95@04$FF!FF>@00$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95@04$FF!FF>@00$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95@04$FF!FF>@00$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95@04$FF!FF>@00$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95@04$FF!FF>@00$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95@04$FF!FF>@00$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95@04$FF!FF>@00$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = :$24 36 $FF;END________________________________________________________________________________________________ :$25 37 $FF;END________________________________________________________________________________________________ck fg :$5A 90 $FF;END________________________________________________________________________________________________ fg :$5B 91 $FF;END________________________________________________________________________________________________en fg :$5C 92 $FF;END________________________________________________________________________________________________low fg :$5D 93 $FF;END________________________________________________________________________________________________e fg :$5E 94 $FF;END________________________________________________________________________________________________enta fg :$5F 95 $FF;END________________________________________________________________________________________________n fg :$60 96 $FF;END________________________________________________________________________________________________te fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95@04$FF!FF>@00$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95@04$FF!FF>@00$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95@04$FF!FF>@00$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95@04$FF!FF>@00$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95@04$FF!FF>@00$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95@04$FF!FF>@00$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95@04$FF!FF>@00$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95@04$FF!FF>@00$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95@04$FF!FF>@00$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95@04$FF!FF>@00$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95@04$FF!FF>@00$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95@04$FF!FF>@00$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95@04$FF!FF>@00$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95@04$FF!FF>@00$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95@04$FF!FF>@00$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$24 36 $FF;END________________________________________________________________________________________________ :$25 37 $FF;END________________________________________________________________________________________________ck fg :$5A 90 $FF;END________________________________________________________________________________________________ fg :$5B 91 $FF;END________________________________________________________________________________________________en fg :$5C 92 $FF;END________________________________________________________________________________________________low fg :$5D 93 $FF;END________________________________________________________________________________________________e fg :$5E 94 $FF;END________________________________________________________________________________________________enta fg :$5F 95 $FF;END________________________________________________________________________________________________n fg :$60 96 $FF;END________________________________________________________________________________________________te fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28 30/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95@04$FF!FF>@00$1E!29 30/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95@04$FF!FF>@00$1E!2A 30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95@04$FF!FF>@00$1E!2B 30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95@04$FF!FF>@00$1E!2C 30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95@04$FF!FF>@00$1E!2D 30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95@04$FF!FF>@00$1E!2E 30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95@04$FF!FF>@00$1E!2F 30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95@04$FF!FF>@00$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95@04$FF!FF>@00$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95@04$FF!FF>@00$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95@04$FF!FF>@00$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95@04$FF!FF>@00$1E!68 30/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95@04$FF!FF>@00$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95@04$FF!FF>@00$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95@04$FF!FF>@00$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$24 36 $FF;END__________________________________________________________________________________________________ :$25 37 $FF;END__________________________________________________________________________________________________ fg :$5A 90 $FF;END__________________________________________________________________________________________________g :$5B 91 $FF;END__________________________________________________________________________________________________ fg :$5C 92 $FF;END__________________________________________________________________________________________________w fg :$5D 93 $FF;END__________________________________________________________________________________________________fg :$5E 94 $FF;END__________________________________________________________________________________________________ta fg :$5F 95 $FF;END__________________________________________________________________________________________________fg :$60 96 $FF;END__________________________________________________________________________________________________ fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!2830/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ @04$FF!FF>@00$1E!2930/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ @04$FF!FF>@00$1E!2A30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ @04$FF!FF>@00$1E!2B30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ @04$FF!FF>@00$1E!2C30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ @04$FF!FF>@00$1E!2D30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ @04$FF!FF>@00$1E!2E30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ @04$FF!FF>@00$1E!2F30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ @04$FF!FF>@00$1E!6430/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/1@04$FF!FF>@00$1E!6530/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/1@04$FF!FF>@00$1E!6630/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/1@04$FF!FF>@00$1E!6730/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/1@04$FF!FF>@00$1E!6830/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/1@04$FF!FF>@00$1E!6930/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/1@04$FF!FF>@00$1E!6A30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/1@04$FF!FF>@00$1E!6B30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = :$24 36 $FF;END__________________________________________________________________________________________________ :$25 37 $FF;END__________________________________________________________________________________________________ fg :$5A 90 $FF;END__________________________________________________________________________________________________g :$5B 91 $FF;END__________________________________________________________________________________________________ fg :$5C 92 $FF;END__________________________________________________________________________________________________w fg :$5D 93 $FF;END__________________________________________________________________________________________________fg :$5E 94 $FF;END__________________________________________________________________________________________________ta fg :$5F 95 $FF;END__________________________________________________________________________________________________fg :$60 96 $FF;END__________________________________________________________________________________________________ fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!2830/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ @04$FF!FF>@00$1E!2930/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ @04$FF!FF>@00$1E!2A30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ @04$FF!FF>@00$1E!2B30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ @04$FF!FF>@00$1E!2C30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ @04$FF!FF>@00$1E!2D30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ @04$FF!FF>@00$1E!2E30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ @04$FF!FF>@00$1E!2F30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ @04$FF!FF>@00$1E!6430/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/1@04$FF!FF>@00$1E!6530/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/1@04$FF!FF>@00$1E!6630/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/1@04$FF!FF>@00$1E!6730/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/1@04$FF!FF>@00$1E!6830/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/1@04$FF!FF>@00$1E!6930/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/1@04$FF!FF>@00$1E!6A30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/1@04$FF!FF>@00$1E!6B30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$24 36 $FF;END__________________________________________________________________________________________________ :$25 37 $FF;END__________________________________________________________________________________________________ fg :$5A 90 $FF;END__________________________________________________________________________________________________g :$5B 91 $FF;END__________________________________________________________________________________________________ fg :$5C 92 $FF;END__________________________________________________________________________________________________w fg :$5D 93 $FF;END__________________________________________________________________________________________________fg :$5E 94 $FF;END__________________________________________________________________________________________________ta fg :$5F 95 $FF;END__________________________________________________________________________________________________fg :$60 96 $FF;END__________________________________________________________________________________________________ fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!2830/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ @04$FF!FF>@00$1E!2930/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ @04$FF!FF>@00$1E!2A30/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ @04$FF!FF>@00$1E!2B30/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ @04$FF!FF>@00$1E!2C30/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ @04$FF!FF>@00$1E!2D30/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ @04$FF!FF>@00$1E!2E30/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ @04$FF!FF>@00$1E!2F30/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ @04$FF!FF>@00$1E!6430/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/1@04$FF!FF>@00$1E!6530/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/1@04$FF!FF>@00$1E!6630/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/1@04$FF!FF>@00$1E!6730/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/1@04$FF!FF>@00$1E!6830/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/1@04$FF!FF>@00$1E!6930/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/1@04$FF!FF>@00$1E!6A30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/1@04$FF!FF>@00$1E!6B30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$24 36 $FF;END____________________________________________________________________________________________________ :$25 37 $FF;END____________________________________________________________________________________________________g :$5A 90 $FF;END____________________________________________________________________________________________________ :$5B 91 $FF;END____________________________________________________________________________________________________g :$5C 92 $FF;END____________________________________________________________________________________________________fg :$5D 93 $FF;END____________________________________________________________________________________________________ :$5E 94 $FF;END____________________________________________________________________________________________________ fg :$5F 95 $FF;END____________________________________________________________________________________________________ :$60 96 $FF;END____________________________________________________________________________________________________g :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40@04$FF!FF>@00$1E!29/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41@04$FF!FF>@00$1E!2A/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42@04$FF!FF>@00$1E!2B/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43@04$FF!FF>@00$1E!2C/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44@04$FF!FF>@00$1E!2D/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45@04$FF!FF>@00$1E!2E/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46@04$FF!FF>@00$1E!2F/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47@04$FF!FF>@00$1E!64/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100@04$FF!FF>@00$1E!65/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101@04$FF!FF>@00$1E!66/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102@04$FF!FF>@00$1E!67/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103@04$FF!FF>@00$1E!68/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104@04$FF!FF>@00$1E!69/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105@04$FF!FF>@00$1E!6A/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106@04$FF!FF>@00$1E!6B/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = :$24 36 $FF;END____________________________________________________________________________________________________ :$25 37 $FF;END____________________________________________________________________________________________________g :$5A 90 $FF;END____________________________________________________________________________________________________ :$5B 91 $FF;END____________________________________________________________________________________________________g :$5C 92 $FF;END____________________________________________________________________________________________________fg :$5D 93 $FF;END____________________________________________________________________________________________________ :$5E 94 $FF;END____________________________________________________________________________________________________ fg :$5F 95 $FF;END____________________________________________________________________________________________________ :$60 96 $FF;END____________________________________________________________________________________________________g :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40@04$FF!FF>@00$1E!29/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41@04$FF!FF>@00$1E!2A/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42@04$FF!FF>@00$1E!2B/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43@04$FF!FF>@00$1E!2C/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44@04$FF!FF>@00$1E!2D/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45@04$FF!FF>@00$1E!2E/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46@04$FF!FF>@00$1E!2F/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47@04$FF!FF>@00$1E!64/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100@04$FF!FF>@00$1E!65/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101@04$FF!FF>@00$1E!66/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102@04$FF!FF>@00$1E!67/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103@04$FF!FF>@00$1E!68/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104@04$FF!FF>@00$1E!69/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105@04$FF!FF>@00$1E!6A/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106@04$FF!FF>@00$1E!6B/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$24 36 $FF;END____________________________________________________________________________________________________ :$25 37 $FF;END____________________________________________________________________________________________________g :$5A 90 $FF;END____________________________________________________________________________________________________ :$5B 91 $FF;END____________________________________________________________________________________________________g :$5C 92 $FF;END____________________________________________________________________________________________________fg :$5D 93 $FF;END____________________________________________________________________________________________________ :$5E 94 $FF;END____________________________________________________________________________________________________ fg :$5F 95 $FF;END____________________________________________________________________________________________________ :$60 96 $FF;END____________________________________________________________________________________________________g :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28/ 40 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40@04$FF!FF>@00$1E!29/ 41 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41@04$FF!FF>@00$1E!2A/ 42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42@04$FF!FF>@00$1E!2B/ 43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43@04$FF!FF>@00$1E!2C/ 44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44@04$FF!FF>@00$1E!2D/ 45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45@04$FF!FF>@00$1E!2E/ 46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46@04$FF!FF>@00$1E!2F/ 47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47@04$FF!FF>@00$1E!64/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100@04$FF!FF>@00$1E!65/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101@04$FF!FF>@00$1E!66/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102@04$FF!FF>@00$1E!67/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103@04$FF!FF>@00$1E!68/104 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104@04$FF!FF>@00$1E!69/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105@04$FF!FF>@00$1E!6A/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106@04$FF!FF>@00$1E!6B/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$24 36 $FF;END______________________________________________________________________________________________________ :$25 37 $FF;END______________________________________________________________________________________________________ :$5A 90 $FF;END______________________________________________________________________________________________________ :$5B 91 $FF;END______________________________________________________________________________________________________ :$5C 92 $FF;END______________________________________________________________________________________________________ :$5D 93 $FF;END______________________________________________________________________________________________________ :$5E 94 $FF;END______________________________________________________________________________________________________g :$5F 95 $FF;END______________________________________________________________________________________________________ :$60 96 $FF;END______________________________________________________________________________________________________ :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!2840 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF @04>@00$1E!2941 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF @04>@00$1E!2A42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF @04>@00$1E!2B43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF @04>@00$1E!2C44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF @04>@00$1E!2D45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF @04>@00$1E!2E46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF @04>@00$1E!2F47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF @04>@00$1E!6400 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF @04>@00$1E!6501 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF @04>@00$1E!6602 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF @04>@00$1E!6703 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF @04>@00$1E!6804 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF @04>@00$1E!6905 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF @04>@00$1E!6A06 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF @04>@00$1E!6B07 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF @04>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = :$24 36 $FF;END______________________________________________________________________________________________________ :$25 37 $FF;END______________________________________________________________________________________________________ :$5A 90 $FF;END______________________________________________________________________________________________________ :$5B 91 $FF;END______________________________________________________________________________________________________ :$5C 92 $FF;END______________________________________________________________________________________________________ :$5D 93 $FF;END______________________________________________________________________________________________________ :$5E 94 $FF;END______________________________________________________________________________________________________g :$5F 95 $FF;END______________________________________________________________________________________________________ :$60 96 $FF;END______________________________________________________________________________________________________ :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!2840 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF @04>@00$1E!2941 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF @04>@00$1E!2A42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF @04>@00$1E!2B43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF @04>@00$1E!2C44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF @04>@00$1E!2D45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF @04>@00$1E!2E46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF @04>@00$1E!2F47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF @04>@00$1E!6400 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF @04>@00$1E!6501 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF @04>@00$1E!6602 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF @04>@00$1E!6703 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF @04>@00$1E!6804 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF @04>@00$1E!6905 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF @04>@00$1E!6A06 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF @04>@00$1E!6B07 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF @04>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$24 36 $FF;END______________________________________________________________________________________________________ :$25 37 $FF;END______________________________________________________________________________________________________ :$5A 90 $FF;END______________________________________________________________________________________________________ :$5B 91 $FF;END______________________________________________________________________________________________________ :$5C 92 $FF;END______________________________________________________________________________________________________ :$5D 93 $FF;END______________________________________________________________________________________________________ :$5E 94 $FF;END______________________________________________________________________________________________________g :$5F 95 $FF;END______________________________________________________________________________________________________ :$60 96 $FF;END______________________________________________________________________________________________________ :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!2840 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF @04>@00$1E!2941 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF @04>@00$1E!2A42 $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF @04>@00$1E!2B43 $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF @04>@00$1E!2C44 $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF @04>@00$1E!2D45 $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF @04>@00$1E!2E46 $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF @04>@00$1E!2F47 $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF @04>@00$1E!6400 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF @04>@00$1E!6501 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF @04>@00$1E!6602 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF @04>@00$1E!6703 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF @04>@00$1E!6804 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF @04>@00$1E!6905 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF @04>@00$1E!6A06 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF @04>@00$1E!6B07 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF @04>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$24 36 $FF;END________________________________________________________________________________________________________ :$25 37 $FF;END________________________________________________________________________________________________________ :$5A 90 $FF;END________________________________________________________________________________________________________ :$5B 91 $FF;END________________________________________________________________________________________________________ :$5C 92 $FF;END________________________________________________________________________________________________________ :$5D 93 $FF;END________________________________________________________________________________________________________ :$5E 94 $FF;END________________________________________________________________________________________________________ :$5F 95 $FF;END________________________________________________________________________________________________________ :$60 96 $FF;END________________________________________________________________________________________________________ :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 @04$FF!FF>@00$1E!29 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 @04$FF!FF>@00$1E!2A $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A @04$FF!FF>@00$1E!2B $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B @04$FF!FF>@00$1E!2C $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C @04$FF!FF>@00$1E!2D $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D @04$FF!FF>@00$1E!2E $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E @04$FF!FF>@00$1E!2F $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F @04$FF!FF>@00$1E!64 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 @04$FF!FF>@00$1E!65 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 @04$FF!FF>@00$1E!66 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 @04$FF!FF>@00$1E!67 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 @04$FF!FF>@00$1E!68 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 @04$FF!FF>@00$1E!69 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 @04$FF!FF>@00$1E!6A $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A @04$FF!FF>@00$1E!6B $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = :$24 36 $FF;END________________________________________________________________________________________________________ :$25 37 $FF;END________________________________________________________________________________________________________ :$5A 90 $FF;END________________________________________________________________________________________________________ :$5B 91 $FF;END________________________________________________________________________________________________________ :$5C 92 $FF;END________________________________________________________________________________________________________ :$5D 93 $FF;END________________________________________________________________________________________________________ :$5E 94 $FF;END________________________________________________________________________________________________________ :$5F 95 $FF;END________________________________________________________________________________________________________ :$60 96 $FF;END________________________________________________________________________________________________________ :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 @04$FF!FF>@00$1E!29 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 @04$FF!FF>@00$1E!2A $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A @04$FF!FF>@00$1E!2B $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B @04$FF!FF>@00$1E!2C $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C @04$FF!FF>@00$1E!2D $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D @04$FF!FF>@00$1E!2E $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E @04$FF!FF>@00$1E!2F $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F @04$FF!FF>@00$1E!64 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 @04$FF!FF>@00$1E!65 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 @04$FF!FF>@00$1E!66 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 @04$FF!FF>@00$1E!67 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 @04$FF!FF>@00$1E!68 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 @04$FF!FF>@00$1E!69 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 @04$FF!FF>@00$1E!6A $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A @04$FF!FF>@00$1E!6B $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$24 36 $FF;END________________________________________________________________________________________________________ :$25 37 $FF;END________________________________________________________________________________________________________ :$5A 90 $FF;END________________________________________________________________________________________________________ :$5B 91 $FF;END________________________________________________________________________________________________________ :$5C 92 $FF;END________________________________________________________________________________________________________ :$5D 93 $FF;END________________________________________________________________________________________________________ :$5E 94 $FF;END________________________________________________________________________________________________________ :$5F 95 $FF;END________________________________________________________________________________________________________ :$60 96 $FF;END________________________________________________________________________________________________________ :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28 $FF!FF $1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 @04$FF!FF>@00$1E!29 $FF!FF $1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 @04$FF!FF>@00$1E!2A $FF!FF $1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A @04$FF!FF>@00$1E!2B $FF!FF $1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B @04$FF!FF>@00$1E!2C $FF!FF $1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C @04$FF!FF>@00$1E!2D $FF!FF $1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D @04$FF!FF>@00$1E!2E $FF!FF $1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E @04$FF!FF>@00$1E!2F $FF!FF $1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F @04$FF!FF>@00$1E!64 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 @04$FF!FF>@00$1E!65 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 @04$FF!FF>@00$1E!66 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 @04$FF!FF>@00$1E!67 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 @04$FF!FF>@00$1E!68 $FF!FF $1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 @04$FF!FF>@00$1E!69 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 @04$FF!FF>@00$1E!6A $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A @04$FF!FF>@00$1E!6B $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$24 36 $FF;END__________________________________________________________________________________________________________ :$25 37 $FF;END__________________________________________________________________________________________________________ :$5A 90 $FF;END__________________________________________________________________________________________________________ :$5B 91 $FF;END__________________________________________________________________________________________________________ :$5C 92 $FF;END__________________________________________________________________________________________________________ :$5D 93 $FF;END__________________________________________________________________________________________________________ :$5E 94 $FF;END__________________________________________________________________________________________________________ :$5F 95 $FF;END__________________________________________________________________________________________________________ :$60 96 $FF;END__________________________________________________________________________________________________________ :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96@04$FF!FF>@00$1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96@04$FF!FF>@00$1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96@04$FF!FF>@00$1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96@04$FF!FF>@00$1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96@04$FF!FF>@00$1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96@04$FF!FF>@00$1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96@04$FF!FF>@00$1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96@04$FF!FF>@00$1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96@04$FF!FF>@00$1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96@04$FF!FF>@00$1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96@04$FF!FF>@00$1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96@04$FF!FF>@00$1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96@04$FF!FF>@00$1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96@04$FF!FF>@00$1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96@04$FF!FF>@00$1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = :$24 36 $FF;END__________________________________________________________________________________________________________ :$25 37 $FF;END__________________________________________________________________________________________________________ :$5A 90 $FF;END__________________________________________________________________________________________________________ :$5B 91 $FF;END__________________________________________________________________________________________________________ :$5C 92 $FF;END__________________________________________________________________________________________________________ :$5D 93 $FF;END__________________________________________________________________________________________________________ :$5E 94 $FF;END__________________________________________________________________________________________________________ :$5F 95 $FF;END__________________________________________________________________________________________________________ :$60 96 $FF;END__________________________________________________________________________________________________________ :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96@04$FF!FF>@00$1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96@04$FF!FF>@00$1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96@04$FF!FF>@00$1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96@04$FF!FF>@00$1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96@04$FF!FF>@00$1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96@04$FF!FF>@00$1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96@04$FF!FF>@00$1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96@04$FF!FF>@00$1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96@04$FF!FF>@00$1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96@04$FF!FF>@00$1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96@04$FF!FF>@00$1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96@04$FF!FF>@00$1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96@04$FF!FF>@00$1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96@04$FF!FF>@00$1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96@04$FF!FF>@00$1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$24 36 $FF;END__________________________________________________________________________________________________________ :$25 37 $FF;END__________________________________________________________________________________________________________ :$5A 90 $FF;END__________________________________________________________________________________________________________ :$5B 91 $FF;END__________________________________________________________________________________________________________ :$5C 92 $FF;END__________________________________________________________________________________________________________ :$5D 93 $FF;END__________________________________________________________________________________________________________ :$5E 94 $FF;END__________________________________________________________________________________________________________ :$5F 95 $FF;END__________________________________________________________________________________________________________ :$60 96 $FF;END__________________________________________________________________________________________________________ :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28 31/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96@04$FF!FF>@00$1F!29 31/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96@04$FF!FF>@00$1F!2A 31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96@04$FF!FF>@00$1F!2B 31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96@04$FF!FF>@00$1F!2C 31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96@04$FF!FF>@00$1F!2D 31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96@04$FF!FF>@00$1F!2E 31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96@04$FF!FF>@00$1F!2F 31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96@04$FF!FF>@00$1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96@04$FF!FF>@00$1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96@04$FF!FF>@00$1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96@04$FF!FF>@00$1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96@04$FF!FF>@00$1F!68 31/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96@04$FF!FF>@00$1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96@04$FF!FF>@00$1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96@04$FF!FF>@00$1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$24 36 $FF;END____________________________________________________________________________________________________________ :$25 37 $FF;END____________________________________________________________________________________________________________ :$5A 90 $FF;END____________________________________________________________________________________________________________ :$5B 91 $FF;END____________________________________________________________________________________________________________ :$5C 92 $FF;END____________________________________________________________________________________________________________ :$5D 93 $FF;END____________________________________________________________________________________________________________ :$5E 94 $FF;END____________________________________________________________________________________________________________ :$5F 95 $FF;END____________________________________________________________________________________________________________ :$60 96 $FF;END____________________________________________________________________________________________________________ :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!2831/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ @04$FF!FF>@00$1F!2931/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ @04$FF!FF>@00$1F!2A31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ @04$FF!FF>@00$1F!2B31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ @04$FF!FF>@00$1F!2C31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ @04$FF!FF>@00$1F!2D31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ @04$FF!FF>@00$1F!2E31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ @04$FF!FF>@00$1F!2F31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ @04$FF!FF>@00$1F!6431/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/1@04$FF!FF>@00$1F!6531/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/1@04$FF!FF>@00$1F!6631/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/1@04$FF!FF>@00$1F!6731/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/1@04$FF!FF>@00$1F!6831/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/1@04$FF!FF>@00$1F!6931/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/1@04$FF!FF>@00$1F!6A31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/1@04$FF!FF>@00$1F!6B31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +31 = :$24 36 $FF;END____________________________________________________________________________________________________________ :$25 37 $FF;END____________________________________________________________________________________________________________ :$5A 90 $FF;END____________________________________________________________________________________________________________ :$5B 91 $FF;END____________________________________________________________________________________________________________ :$5C 92 $FF;END____________________________________________________________________________________________________________ :$5D 93 $FF;END____________________________________________________________________________________________________________ :$5E 94 $FF;END____________________________________________________________________________________________________________ :$5F 95 $FF;END____________________________________________________________________________________________________________ :$60 96 $FF;END____________________________________________________________________________________________________________ :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!2831/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ @04$FF!FF>@00$1F!2931/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ @04$FF!FF>@00$1F!2A31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ @04$FF!FF>@00$1F!2B31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ @04$FF!FF>@00$1F!2C31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ @04$FF!FF>@00$1F!2D31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ @04$FF!FF>@00$1F!2E31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ @04$FF!FF>@00$1F!2F31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ @04$FF!FF>@00$1F!6431/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/1@04$FF!FF>@00$1F!6531/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/1@04$FF!FF>@00$1F!6631/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/1@04$FF!FF>@00$1F!6731/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/1@04$FF!FF>@00$1F!6831/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/1@04$FF!FF>@00$1F!6931/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/1@04$FF!FF>@00$1F!6A31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/1@04$FF!FF>@00$1F!6B31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________:1#_____________________________________________________________________________________________________________________________________ +1b = :$24 36 $FF;END____________________________________________________________________________________________________________ :$25 37 $FF;END____________________________________________________________________________________________________________ :$5A 90 $FF;END____________________________________________________________________________________________________________ :$5B 91 $FF;END____________________________________________________________________________________________________________ :$5C 92 $FF;END____________________________________________________________________________________________________________ :$5D 93 $FF;END____________________________________________________________________________________________________________ :$5E 94 $FF;END____________________________________________________________________________________________________________ :$5F 95 $FF;END____________________________________________________________________________________________________________ :$60 96 $FF;END____________________________________________________________________________________________________________ :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!2831/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ @04$FF!FF>@00$1F!2931/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ @04$FF!FF>@00$1F!2A31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ @04$FF!FF>@00$1F!2B31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ @04$FF!FF>@00$1F!2C31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ @04$FF!FF>@00$1F!2D31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ @04$FF!FF>@00$1F!2E31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ @04$FF!FF>@00$1F!2F31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ @04$FF!FF>@00$1F!6431/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/1@04$FF!FF>@00$1F!6531/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/1@04$FF!FF>@00$1F!6631/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/1@04$FF!FF>@00$1F!6731/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/1@04$FF!FF>@00$1F!6831/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/1@04$FF!FF>@00$1F!6931/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/1@04$FF!FF>@00$1F!6A31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/1@04$FF!FF>@00$1F!6B31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________:1#_____________________________________________________________________________________________________________________________________ +4f = :$24 36 $FF;END____________________________________________________________________________________________________________ :$25 37 $FF;END____________________________________________________________________________________________________________ :$5A 90 $FF;END____________________________________________________________________________________________________________ :$5B 91 $FF;END____________________________________________________________________________________________________________ :$5C 92 $FF;END____________________________________________________________________________________________________________ :$5D 93 $FF;END____________________________________________________________________________________________________________ :$5E 94 $FF;END____________________________________________________________________________________________________________ :$5F 95 $FF;END____________________________________________________________________________________________________________ :$60 96 $FF;END____________________________________________________________________________________________________________ :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!2831/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ @04$FF!FF>@00$1F!2931/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ @04$FF!FF>@00$1F!2A31/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ @04$FF!FF>@00$1F!2B31/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ @04$FF!FF>@00$1F!2C31/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ @04$FF!FF>@00$1F!2D31/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ @04$FF!FF>@00$1F!2E31/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ @04$FF!FF>@00$1F!2F31/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ @04$FF!FF>@00$1F!6431/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/1@04$FF!FF>@00$1F!6531/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/1@04$FF!FF>@00$1F!6631/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/1@04$FF!FF>@00$1F!6731/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/1@04$FF!FF>@00$1F!6831/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/1@04$FF!FF>@00$1F!6931/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/1@04$FF!FF>@00$1F!6A31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/1@04$FF!FF>@00$1F!6B31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________:1#_____________________________________________________________________________________________________________________________________ +43 = :$24 36 $FF;END_____________________________________________________________________________________________________________ :$25 37 $FF;END_____________________________________________________________________________________________________________ :$5A 90 $FF;END_____________________________________________________________________________________________________________ :$5B 91 $FF;END_____________________________________________________________________________________________________________ :$5C 92 $FF;END_____________________________________________________________________________________________________________ :$5D 93 $FF;END_____________________________________________________________________________________________________________ :$5E 94 $FF;END_____________________________________________________________________________________________________________ :$5F 95 $FF;END_____________________________________________________________________________________________________________ :$60 96 $FF;END_____________________________________________________________________________________________________________ :$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!281/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 4@04$FF!FF>@00$1F!291/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 4@04$FF!FF>@00$1F!2A1/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 4@04$FF!FF>@00$1F!2B1/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 4@04$FF!FF>@00$1F!2C1/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 4@04$FF!FF>@00$1F!2D1/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 4@04$FF!FF>@00$1F!2E1/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 4@04$FF!FF>@00$1F!2F1/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 4@04$FF!FF>@00$1F!641/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/10@04$FF!FF>@00$1F!651/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/10@04$FF!FF>@00$1F!661/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/10@04$FF!FF>@00$1F!671/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/10@04$FF!FF>@00$1F!681/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/10@04$FF!FF>@00$1F!691/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/10@04$FF!FF>@00$1F!6A1/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/10@04$FF!FF>@00$1F!6B1/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/10@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = :$24 36 $FF;END_____________________________________________________________________________________________________________ :$25 37 $FF;END_____________________________________________________________________________________________________________ :$5A 90 $FF;END_____________________________________________________________________________________________________________ :$5B 91 $FF;END_____________________________________________________________________________________________________________ :$5C 92 $FF;END_____________________________________________________________________________________________________________ :$5D 93 $FF;END_____________________________________________________________________________________________________________ :$5E 94 $FF;END_____________________________________________________________________________________________________________ :$5F 95 $FF;END_____________________________________________________________________________________________________________ :$60 96 $FF;END_____________________________________________________________________________________________________________ :$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!281/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 4@04$FF!FF>@00$1F!291/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 4@04$FF!FF>@00$1F!2A1/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 4@04$FF!FF>@00$1F!2B1/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 4@04$FF!FF>@00$1F!2C1/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 4@04$FF!FF>@00$1F!2D1/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 4@04$FF!FF>@00$1F!2E1/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 4@04$FF!FF>@00$1F!2F1/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 4@04$FF!FF>@00$1F!641/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/10@04$FF!FF>@00$1F!651/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/10@04$FF!FF>@00$1F!661/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/10@04$FF!FF>@00$1F!671/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/10@04$FF!FF>@00$1F!681/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/10@04$FF!FF>@00$1F!691/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/10@04$FF!FF>@00$1F!6A1/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/10@04$FF!FF>@00$1F!6B1/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/10@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$24 36 $FF;END_____________________________________________________________________________________________________________ :$25 37 $FF;END_____________________________________________________________________________________________________________ :$5A 90 $FF;END_____________________________________________________________________________________________________________ :$5B 91 $FF;END_____________________________________________________________________________________________________________ :$5C 92 $FF;END_____________________________________________________________________________________________________________ :$5D 93 $FF;END_____________________________________________________________________________________________________________ :$5E 94 $FF;END_____________________________________________________________________________________________________________ :$5F 95 $FF;END_____________________________________________________________________________________________________________ :$60 96 $FF;END_____________________________________________________________________________________________________________ :$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!281/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 4@04$FF!FF>@00$1F!291/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 4@04$FF!FF>@00$1F!2A1/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 4@04$FF!FF>@00$1F!2B1/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 4@04$FF!FF>@00$1F!2C1/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 4@04$FF!FF>@00$1F!2D1/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 4@04$FF!FF>@00$1F!2E1/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 4@04$FF!FF>@00$1F!2F1/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 4@04$FF!FF>@00$1F!641/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/10@04$FF!FF>@00$1F!651/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/10@04$FF!FF>@00$1F!661/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/10@04$FF!FF>@00$1F!671/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/10@04$FF!FF>@00$1F!681/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/10@04$FF!FF>@00$1F!691/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/10@04$FF!FF>@00$1F!6A1/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/10@04$FF!FF>@00$1F!6B1/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/10@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$24 36 $FF;END______________________________________________________________________________________________________________ :$25 37 $FF;END______________________________________________________________________________________________________________ :$5A 90 $FF;END______________________________________________________________________________________________________________ :$5B 91 $FF;END______________________________________________________________________________________________________________ :$5C 92 $FF;END______________________________________________________________________________________________________________ :$5D 93 $FF;END______________________________________________________________________________________________________________ :$5E 94 $FF;END______________________________________________________________________________________________________________ :$5F 95 $FF;END______________________________________________________________________________________________________________ :$60 96 $FF;END______________________________________________________________________________________________________________ :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40@04$FF!FF>@00$1F!29/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41@04$FF!FF>@00$1F!2A/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42@04$FF!FF>@00$1F!2B/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43@04$FF!FF>@00$1F!2C/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44@04$FF!FF>@00$1F!2D/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45@04$FF!FF>@00$1F!2E/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46@04$FF!FF>@00$1F!2F/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47@04$FF!FF>@00$1F!64/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100@04$FF!FF>@00$1F!65/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101@04$FF!FF>@00$1F!66/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102@04$FF!FF>@00$1F!67/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103@04$FF!FF>@00$1F!68/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104@04$FF!FF>@00$1F!69/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105@04$FF!FF>@00$1F!6A/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106@04$FF!FF>@00$1F!6B/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = :$24 36 $FF;END______________________________________________________________________________________________________________ :$25 37 $FF;END______________________________________________________________________________________________________________ :$5A 90 $FF;END______________________________________________________________________________________________________________ :$5B 91 $FF;END______________________________________________________________________________________________________________ :$5C 92 $FF;END______________________________________________________________________________________________________________ :$5D 93 $FF;END______________________________________________________________________________________________________________ :$5E 94 $FF;END______________________________________________________________________________________________________________ :$5F 95 $FF;END______________________________________________________________________________________________________________ :$60 96 $FF;END______________________________________________________________________________________________________________ :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40@04$FF!FF>@00$1F!29/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41@04$FF!FF>@00$1F!2A/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42@04$FF!FF>@00$1F!2B/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43@04$FF!FF>@00$1F!2C/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44@04$FF!FF>@00$1F!2D/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45@04$FF!FF>@00$1F!2E/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46@04$FF!FF>@00$1F!2F/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47@04$FF!FF>@00$1F!64/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100@04$FF!FF>@00$1F!65/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101@04$FF!FF>@00$1F!66/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102@04$FF!FF>@00$1F!67/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103@04$FF!FF>@00$1F!68/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104@04$FF!FF>@00$1F!69/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105@04$FF!FF>@00$1F!6A/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106@04$FF!FF>@00$1F!6B/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$24 36 $FF;END______________________________________________________________________________________________________________ :$25 37 $FF;END______________________________________________________________________________________________________________ :$5A 90 $FF;END______________________________________________________________________________________________________________ :$5B 91 $FF;END______________________________________________________________________________________________________________ :$5C 92 $FF;END______________________________________________________________________________________________________________ :$5D 93 $FF;END______________________________________________________________________________________________________________ :$5E 94 $FF;END______________________________________________________________________________________________________________ :$5F 95 $FF;END______________________________________________________________________________________________________________ :$60 96 $FF;END______________________________________________________________________________________________________________ :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28/ 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40@04$FF!FF>@00$1F!29/ 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41@04$FF!FF>@00$1F!2A/ 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42@04$FF!FF>@00$1F!2B/ 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43@04$FF!FF>@00$1F!2C/ 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44@04$FF!FF>@00$1F!2D/ 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45@04$FF!FF>@00$1F!2E/ 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46@04$FF!FF>@00$1F!2F/ 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47@04$FF!FF>@00$1F!64/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100@04$FF!FF>@00$1F!65/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101@04$FF!FF>@00$1F!66/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102@04$FF!FF>@00$1F!67/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103@04$FF!FF>@00$1F!68/104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104@04$FF!FF>@00$1F!69/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105@04$FF!FF>@00$1F!6A/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106@04$FF!FF>@00$1F!6B/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$24 36 $FF;END_______________________________________________________________________________________________________________ :$25 37 $FF;END_______________________________________________________________________________________________________________ :$5A 90 $FF;END_______________________________________________________________________________________________________________ :$5B 91 $FF;END_______________________________________________________________________________________________________________ :$5C 92 $FF;END_______________________________________________________________________________________________________________ :$5D 93 $FF;END_______________________________________________________________________________________________________________ :$5E 94 $FF;END_______________________________________________________________________________________________________________ :$5F 95 $FF;END_______________________________________________________________________________________________________________ :$60 96 $FF;END_______________________________________________________________________________________________________________ :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 @04$FF!FF>@00$1F!29 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 @04$FF!FF>@00$1F!2A 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 @04$FF!FF>@00$1F!2B 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 @04$FF!FF>@00$1F!2C 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 @04$FF!FF>@00$1F!2D 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 @04$FF!FF>@00$1F!2E 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 @04$FF!FF>@00$1F!2F 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 @04$FF!FF>@00$1F!64100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 @04$FF!FF>@00$1F!65101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 @04$FF!FF>@00$1F!66102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 @04$FF!FF>@00$1F!67103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 @04$FF!FF>@00$1F!68104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 @04$FF!FF>@00$1F!69105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 @04$FF!FF>@00$1F!6A106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 @04$FF!FF>@00$1F!6B107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = :$24 36 $FF;END_______________________________________________________________________________________________________________ :$25 37 $FF;END_______________________________________________________________________________________________________________ :$5A 90 $FF;END_______________________________________________________________________________________________________________ :$5B 91 $FF;END_______________________________________________________________________________________________________________ :$5C 92 $FF;END_______________________________________________________________________________________________________________ :$5D 93 $FF;END_______________________________________________________________________________________________________________ :$5E 94 $FF;END_______________________________________________________________________________________________________________ :$5F 95 $FF;END_______________________________________________________________________________________________________________ :$60 96 $FF;END_______________________________________________________________________________________________________________ :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 @04$FF!FF>@00$1F!29 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 @04$FF!FF>@00$1F!2A 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 @04$FF!FF>@00$1F!2B 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 @04$FF!FF>@00$1F!2C 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 @04$FF!FF>@00$1F!2D 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 @04$FF!FF>@00$1F!2E 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 @04$FF!FF>@00$1F!2F 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 @04$FF!FF>@00$1F!64100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 @04$FF!FF>@00$1F!65101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 @04$FF!FF>@00$1F!66102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 @04$FF!FF>@00$1F!67103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 @04$FF!FF>@00$1F!68104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 @04$FF!FF>@00$1F!69105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 @04$FF!FF>@00$1F!6A106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 @04$FF!FF>@00$1F!6B107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$24 36 $FF;END_______________________________________________________________________________________________________________ :$25 37 $FF;END_______________________________________________________________________________________________________________ :$5A 90 $FF;END_______________________________________________________________________________________________________________ :$5B 91 $FF;END_______________________________________________________________________________________________________________ :$5C 92 $FF;END_______________________________________________________________________________________________________________ :$5D 93 $FF;END_______________________________________________________________________________________________________________ :$5E 94 $FF;END_______________________________________________________________________________________________________________ :$5F 95 $FF;END_______________________________________________________________________________________________________________ :$60 96 $FF;END_______________________________________________________________________________________________________________ :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28 40 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 @04$FF!FF>@00$1F!29 41 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 @04$FF!FF>@00$1F!2A 42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 @04$FF!FF>@00$1F!2B 43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 @04$FF!FF>@00$1F!2C 44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 @04$FF!FF>@00$1F!2D 45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 @04$FF!FF>@00$1F!2E 46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 @04$FF!FF>@00$1F!2F 47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 @04$FF!FF>@00$1F!64100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 @04$FF!FF>@00$1F!65101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 @04$FF!FF>@00$1F!66102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 @04$FF!FF>@00$1F!67103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 @04$FF!FF>@00$1F!68104 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 @04$FF!FF>@00$1F!69105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 @04$FF!FF>@00$1F!6A106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 @04$FF!FF>@00$1F!6B107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$24 36 $FF;END________________________________________________________________________________________________________________ :$25 37 $FF;END________________________________________________________________________________________________________________ :$5A 90 $FF;END________________________________________________________________________________________________________________ :$5B 91 $FF;END________________________________________________________________________________________________________________ :$5C 92 $FF;END________________________________________________________________________________________________________________ :$5D 93 $FF;END________________________________________________________________________________________________________________ :$5E 94 $FF;END________________________________________________________________________________________________________________ :$5F 95 $FF;END________________________________________________________________________________________________________________ :$60 96 $FF;END________________________________________________________________________________________________________________ :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!2840 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF @04>@00$1F!2941 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF @04>@00$1F!2A42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF @04>@00$1F!2B43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF @04>@00$1F!2C44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF @04>@00$1F!2D45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF @04>@00$1F!2E46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF @04>@00$1F!2F47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF @04>@00$1F!6400 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF @04>@00$1F!6501 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF @04>@00$1F!6602 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF @04>@00$1F!6703 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF @04>@00$1F!6804 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF @04>@00$1F!6905 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF @04>@00$1F!6A06 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF @04>@00$1F!6B07 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF @04>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = :$24 36 $FF;END________________________________________________________________________________________________________________ :$25 37 $FF;END________________________________________________________________________________________________________________ :$5A 90 $FF;END________________________________________________________________________________________________________________ :$5B 91 $FF;END________________________________________________________________________________________________________________ :$5C 92 $FF;END________________________________________________________________________________________________________________ :$5D 93 $FF;END________________________________________________________________________________________________________________ :$5E 94 $FF;END________________________________________________________________________________________________________________ :$5F 95 $FF;END________________________________________________________________________________________________________________ :$60 96 $FF;END________________________________________________________________________________________________________________ :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!2840 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF @04>@00$1F!2941 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF @04>@00$1F!2A42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF @04>@00$1F!2B43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF @04>@00$1F!2C44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF @04>@00$1F!2D45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF @04>@00$1F!2E46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF @04>@00$1F!2F47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF @04>@00$1F!6400 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF @04>@00$1F!6501 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF @04>@00$1F!6602 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF @04>@00$1F!6703 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF @04>@00$1F!6804 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF @04>@00$1F!6905 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF @04>@00$1F!6A06 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF @04>@00$1F!6B07 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF @04>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$24 36 $FF;END________________________________________________________________________________________________________________ :$25 37 $FF;END________________________________________________________________________________________________________________ :$5A 90 $FF;END________________________________________________________________________________________________________________ :$5B 91 $FF;END________________________________________________________________________________________________________________ :$5C 92 $FF;END________________________________________________________________________________________________________________ :$5D 93 $FF;END________________________________________________________________________________________________________________ :$5E 94 $FF;END________________________________________________________________________________________________________________ :$5F 95 $FF;END________________________________________________________________________________________________________________ :$60 96 $FF;END________________________________________________________________________________________________________________ :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!2840 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF @04>@00$1F!2941 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF @04>@00$1F!2A42 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF @04>@00$1F!2B43 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF @04>@00$1F!2C44 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF @04>@00$1F!2D45 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF @04>@00$1F!2E46 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF @04>@00$1F!2F47 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF @04>@00$1F!6400 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF @04>@00$1F!6501 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF @04>@00$1F!6602 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF @04>@00$1F!6703 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF @04>@00$1F!6804 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF @04>@00$1F!6905 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF @04>@00$1F!6A06 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF @04>@00$1F!6B07 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF @04>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$24 36 $FF;END_________________________________________________________________________________________________________________ :$25 37 $FF;END_________________________________________________________________________________________________________________ :$5A 90 $FF;END_________________________________________________________________________________________________________________ :$5B 91 $FF;END_________________________________________________________________________________________________________________ :$5C 92 $FF;END_________________________________________________________________________________________________________________ :$5D 93 $FF;END_________________________________________________________________________________________________________________ :$5E 94 $FF;END_________________________________________________________________________________________________________________ :$5F 95 $FF;END_________________________________________________________________________________________________________________ :$60 96 $FF;END_________________________________________________________________________________________________________________ :$61 97 $FF;END_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!280 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 @04$FF!FF>@00$1F!291 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 @04$FF!FF>@00$1F!2A2 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A @04$FF!FF>@00$1F!2B3 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B @04$FF!FF>@00$1F!2C4 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C @04$FF!FF>@00$1F!2D5 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D @04$FF!FF>@00$1F!2E6 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E @04$FF!FF>@00$1F!2F7 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F @04$FF!FF>@00$1F!640 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 @04$FF!FF>@00$1F!651 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 @04$FF!FF>@00$1F!662 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 @04$FF!FF>@00$1F!673 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 @04$FF!FF>@00$1F!684 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 @04$FF!FF>@00$1F!695 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 @04$FF!FF>@00$1F!6A6 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A @04$FF!FF>@00$1F!6B7 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = :$24 36 $FF;END_________________________________________________________________________________________________________________ :$25 37 $FF;END_________________________________________________________________________________________________________________ :$5A 90 $FF;END_________________________________________________________________________________________________________________ :$5B 91 $FF;END_________________________________________________________________________________________________________________ :$5C 92 $FF;END_________________________________________________________________________________________________________________ :$5D 93 $FF;END_________________________________________________________________________________________________________________ :$5E 94 $FF;END_________________________________________________________________________________________________________________ :$5F 95 $FF;END_________________________________________________________________________________________________________________ :$60 96 $FF;END_________________________________________________________________________________________________________________ :$61 97 $FF;END_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!280 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 @04$FF!FF>@00$1F!291 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 @04$FF!FF>@00$1F!2A2 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A @04$FF!FF>@00$1F!2B3 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B @04$FF!FF>@00$1F!2C4 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C @04$FF!FF>@00$1F!2D5 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D @04$FF!FF>@00$1F!2E6 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E @04$FF!FF>@00$1F!2F7 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F @04$FF!FF>@00$1F!640 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 @04$FF!FF>@00$1F!651 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 @04$FF!FF>@00$1F!662 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 @04$FF!FF>@00$1F!673 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 @04$FF!FF>@00$1F!684 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 @04$FF!FF>@00$1F!695 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 @04$FF!FF>@00$1F!6A6 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A @04$FF!FF>@00$1F!6B7 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$24 36 $FF;END_________________________________________________________________________________________________________________ :$25 37 $FF;END_________________________________________________________________________________________________________________ :$5A 90 $FF;END_________________________________________________________________________________________________________________ :$5B 91 $FF;END_________________________________________________________________________________________________________________ :$5C 92 $FF;END_________________________________________________________________________________________________________________ :$5D 93 $FF;END_________________________________________________________________________________________________________________ :$5E 94 $FF;END_________________________________________________________________________________________________________________ :$5F 95 $FF;END_________________________________________________________________________________________________________________ :$60 96 $FF;END_________________________________________________________________________________________________________________ :$61 97 $FF;END_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!280 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 @04$FF!FF>@00$1F!291 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 @04$FF!FF>@00$1F!2A2 $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A @04$FF!FF>@00$1F!2B3 $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B @04$FF!FF>@00$1F!2C4 $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C @04$FF!FF>@00$1F!2D5 $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D @04$FF!FF>@00$1F!2E6 $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E @04$FF!FF>@00$1F!2F7 $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F @04$FF!FF>@00$1F!640 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 @04$FF!FF>@00$1F!651 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 @04$FF!FF>@00$1F!662 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 @04$FF!FF>@00$1F!673 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 @04$FF!FF>@00$1F!684 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 @04$FF!FF>@00$1F!695 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 @04$FF!FF>@00$1F!6A6 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A @04$FF!FF>@00$1F!6B7 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$24 36 $FF;END__________________________________________________________________________________________________________________ :$25 37 $FF;END__________________________________________________________________________________________________________________ :$5A 90 $FF;END__________________________________________________________________________________________________________________ :$5B 91 $FF;END__________________________________________________________________________________________________________________ :$5C 92 $FF;END__________________________________________________________________________________________________________________ :$5D 93 $FF;END__________________________________________________________________________________________________________________ :$5E 94 $FF;END__________________________________________________________________________________________________________________ :$5F 95 $FF;END__________________________________________________________________________________________________________________ :$60 96 $FF;END__________________________________________________________________________________________________________________ :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 @04$FF!FF>@00$1F!29 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 @04$FF!FF>@00$1F!2A $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A @04$FF!FF>@00$1F!2B $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B @04$FF!FF>@00$1F!2C $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C @04$FF!FF>@00$1F!2D $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D @04$FF!FF>@00$1F!2E $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E @04$FF!FF>@00$1F!2F $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F @04$FF!FF>@00$1F!64 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 @04$FF!FF>@00$1F!65 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 @04$FF!FF>@00$1F!66 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 @04$FF!FF>@00$1F!67 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 @04$FF!FF>@00$1F!68 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 @04$FF!FF>@00$1F!69 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 @04$FF!FF>@00$1F!6A $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A @04$FF!FF>@00$1F!6B $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = :$24 36 $FF;END__________________________________________________________________________________________________________________ :$25 37 $FF;END__________________________________________________________________________________________________________________ :$5A 90 $FF;END__________________________________________________________________________________________________________________ :$5B 91 $FF;END__________________________________________________________________________________________________________________ :$5C 92 $FF;END__________________________________________________________________________________________________________________ :$5D 93 $FF;END__________________________________________________________________________________________________________________ :$5E 94 $FF;END__________________________________________________________________________________________________________________ :$5F 95 $FF;END__________________________________________________________________________________________________________________ :$60 96 $FF;END__________________________________________________________________________________________________________________ :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 @04$FF!FF>@00$1F!29 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 @04$FF!FF>@00$1F!2A $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A @04$FF!FF>@00$1F!2B $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B @04$FF!FF>@00$1F!2C $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C @04$FF!FF>@00$1F!2D $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D @04$FF!FF>@00$1F!2E $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E @04$FF!FF>@00$1F!2F $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F @04$FF!FF>@00$1F!64 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 @04$FF!FF>@00$1F!65 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 @04$FF!FF>@00$1F!66 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 @04$FF!FF>@00$1F!67 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 @04$FF!FF>@00$1F!68 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 @04$FF!FF>@00$1F!69 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 @04$FF!FF>@00$1F!6A $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A @04$FF!FF>@00$1F!6B $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$24 36 $FF;END__________________________________________________________________________________________________________________ :$25 37 $FF;END__________________________________________________________________________________________________________________ :$5A 90 $FF;END__________________________________________________________________________________________________________________ :$5B 91 $FF;END__________________________________________________________________________________________________________________ :$5C 92 $FF;END__________________________________________________________________________________________________________________ :$5D 93 $FF;END__________________________________________________________________________________________________________________ :$5E 94 $FF;END__________________________________________________________________________________________________________________ :$5F 95 $FF;END__________________________________________________________________________________________________________________ :$60 96 $FF;END__________________________________________________________________________________________________________________ :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28 $FF!FF $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 @04$FF!FF>@00$1F!29 $FF!FF $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 @04$FF!FF>@00$1F!2A $FF!FF $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A @04$FF!FF>@00$1F!2B $FF!FF $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B @04$FF!FF>@00$1F!2C $FF!FF $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C @04$FF!FF>@00$1F!2D $FF!FF $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D @04$FF!FF>@00$1F!2E $FF!FF $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E @04$FF!FF>@00$1F!2F $FF!FF $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F @04$FF!FF>@00$1F!64 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 @04$FF!FF>@00$1F!65 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 @04$FF!FF>@00$1F!66 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 @04$FF!FF>@00$1F!67 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 @04$FF!FF>@00$1F!68 $FF!FF $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 @04$FF!FF>@00$1F!69 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 @04$FF!FF>@00$1F!6A $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A @04$FF!FF>@00$1F!6B $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$24 36 $FF;END___________________________________________________________________________________________________________________ :$25 37 $FF;END___________________________________________________________________________________________________________________ :$5A 90 $FF;END___________________________________________________________________________________________________________________ :$5B 91 $FF;END___________________________________________________________________________________________________________________ :$5C 92 $FF;END___________________________________________________________________________________________________________________ :$5D 93 $FF;END___________________________________________________________________________________________________________________ :$5E 94 $FF;END___________________________________________________________________________________________________________________ :$5F 95 $FF;END___________________________________________________________________________________________________________________ :$60 96 $FF;END___________________________________________________________________________________________________________________ :$61 97 $FF;END_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 9@04$FF!FF>@00 $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 9@04$FF!FF>@00 $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 9@04$FF!FF>@00 $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 9@04$FF!FF>@00 $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 9@04$FF!FF>@00 $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 9@04$FF!FF>@00 $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 9@04$FF!FF>@00 $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 9@04$FF!FF>@00 $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 9@04$FF!FF>@00 $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 9@04$FF!FF>@00 $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 9@04$FF!FF>@00 $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 9@04$FF!FF>@00 $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 9@04$FF!FF>@00 $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 9@04$FF!FF>@00 $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 9@04$FF!FF>@00 $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 9@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = :$24 36 $FF;END___________________________________________________________________________________________________________________ :$25 37 $FF;END___________________________________________________________________________________________________________________ :$5A 90 $FF;END___________________________________________________________________________________________________________________ :$5B 91 $FF;END___________________________________________________________________________________________________________________ :$5C 92 $FF;END___________________________________________________________________________________________________________________ :$5D 93 $FF;END___________________________________________________________________________________________________________________ :$5E 94 $FF;END___________________________________________________________________________________________________________________ :$5F 95 $FF;END___________________________________________________________________________________________________________________ :$60 96 $FF;END___________________________________________________________________________________________________________________ :$61 97 $FF;END_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 9@04$FF!FF>@00 $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 9@04$FF!FF>@00 $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 9@04$FF!FF>@00 $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 9@04$FF!FF>@00 $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 9@04$FF!FF>@00 $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 9@04$FF!FF>@00 $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 9@04$FF!FF>@00 $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 9@04$FF!FF>@00 $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 9@04$FF!FF>@00 $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 9@04$FF!FF>@00 $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 9@04$FF!FF>@00 $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 9@04$FF!FF>@00 $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 9@04$FF!FF>@00 $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 9@04$FF!FF>@00 $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 9@04$FF!FF>@00 $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 9@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$24 36 $FF;END___________________________________________________________________________________________________________________ :$25 37 $FF;END___________________________________________________________________________________________________________________ :$5A 90 $FF;END___________________________________________________________________________________________________________________ :$5B 91 $FF;END___________________________________________________________________________________________________________________ :$5C 92 $FF;END___________________________________________________________________________________________________________________ :$5D 93 $FF;END___________________________________________________________________________________________________________________ :$5E 94 $FF;END___________________________________________________________________________________________________________________ :$5F 95 $FF;END___________________________________________________________________________________________________________________ :$60 96 $FF;END___________________________________________________________________________________________________________________ :$61 97 $FF;END_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ $20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 9@04$FF!FF>@00 $20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 9@04$FF!FF>@00 $20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 9@04$FF!FF>@00 $20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 9@04$FF!FF>@00 $20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 9@04$FF!FF>@00 $20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 9@04$FF!FF>@00 $20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 9@04$FF!FF>@00 $20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 9@04$FF!FF>@00 $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 9@04$FF!FF>@00 $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 9@04$FF!FF>@00 $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 9@04$FF!FF>@00 $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 9@04$FF!FF>@00 $20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 9@04$FF!FF>@00 $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 9@04$FF!FF>@00 $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 9@04$FF!FF>@00 $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 9@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$24 36 $FF;END____________________________________________________________________________________________________________________ :$25 37 $FF;END____________________________________________________________________________________________________________________ :$5A 90 $FF;END____________________________________________________________________________________________________________________ :$5B 91 $FF;END____________________________________________________________________________________________________________________ :$5C 92 $FF;END____________________________________________________________________________________________________________________ :$5D 93 $FF;END____________________________________________________________________________________________________________________ :$5E 94 $FF;END____________________________________________________________________________________________________________________ :$5F 95 $FF;END____________________________________________________________________________________________________________________ :$60 96 $FF;END____________________________________________________________________________________________________________________ :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97@04$FF!FF>@00$20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97@04$FF!FF>@00$20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97@04$FF!FF>@00$20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97@04$FF!FF>@00$20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97@04$FF!FF>@00$20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97@04$FF!FF>@00$20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97@04$FF!FF>@00$20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97@04$FF!FF>@00$20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97@04$FF!FF>@00$20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97@04$FF!FF>@00$20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97@04$FF!FF>@00$20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97@04$FF!FF>@00$20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97@04$FF!FF>@00$20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97@04$FF!FF>@00$20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97@04$FF!FF>@00$20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = :$24 36 $FF;END____________________________________________________________________________________________________________________ :$25 37 $FF;END____________________________________________________________________________________________________________________ :$5A 90 $FF;END____________________________________________________________________________________________________________________ :$5B 91 $FF;END____________________________________________________________________________________________________________________ :$5C 92 $FF;END____________________________________________________________________________________________________________________ :$5D 93 $FF;END____________________________________________________________________________________________________________________ :$5E 94 $FF;END____________________________________________________________________________________________________________________ :$5F 95 $FF;END____________________________________________________________________________________________________________________ :$60 96 $FF;END____________________________________________________________________________________________________________________ :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97@04$FF!FF>@00$20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97@04$FF!FF>@00$20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97@04$FF!FF>@00$20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97@04$FF!FF>@00$20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97@04$FF!FF>@00$20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97@04$FF!FF>@00$20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97@04$FF!FF>@00$20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97@04$FF!FF>@00$20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97@04$FF!FF>@00$20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97@04$FF!FF>@00$20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97@04$FF!FF>@00$20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97@04$FF!FF>@00$20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97@04$FF!FF>@00$20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97@04$FF!FF>@00$20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97@04$FF!FF>@00$20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$24 36 $FF;END____________________________________________________________________________________________________________________ :$25 37 $FF;END____________________________________________________________________________________________________________________ :$5A 90 $FF;END____________________________________________________________________________________________________________________ :$5B 91 $FF;END____________________________________________________________________________________________________________________ :$5C 92 $FF;END____________________________________________________________________________________________________________________ :$5D 93 $FF;END____________________________________________________________________________________________________________________ :$5E 94 $FF;END____________________________________________________________________________________________________________________ :$5F 95 $FF;END____________________________________________________________________________________________________________________ :$60 96 $FF;END____________________________________________________________________________________________________________________ :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97@04$FF!FF>@00$20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97@04$FF!FF>@00$20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97@04$FF!FF>@00$20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97@04$FF!FF>@00$20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97@04$FF!FF>@00$20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97@04$FF!FF>@00$20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97@04$FF!FF>@00$20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97@04$FF!FF>@00$20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97@04$FF!FF>@00$20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97@04$FF!FF>@00$20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97@04$FF!FF>@00$20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97@04$FF!FF>@00$20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97@04$FF!FF>@00$20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97@04$FF!FF>@00$20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97@04$FF!FF>@00$20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =:$24 36 $FF;END_____________________________________________________________________________________________________________________:$25 37 $FF;END_____________________________________________________________________________________________________________________:$5A 90 $FF;END_____________________________________________________________________________________________________________________:$5B 91 $FF;END_____________________________________________________________________________________________________________________:$5C 92 $FF;END_____________________________________________________________________________________________________________________:$5D 93 $FF;END_____________________________________________________________________________________________________________________:$5E 94 $FF;END_____________________________________________________________________________________________________________________:$5F 95 $FF;END_____________________________________________________________________________________________________________________:$60 96 $FF;END_____________________________________________________________________________________________________________________:$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/@04$FF!FF>@00$20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/@04$FF!FF>@00$20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/@04$FF!FF>@00$20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/@04$FF!FF>@00$20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/@04$FF!FF>@00$20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/@04$FF!FF>@00$20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/@04$FF!FF>@00$20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/@04$FF!FF>@00$20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/@04$FF!FF>@00$20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/@04$FF!FF>@00$20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/@04$FF!FF>@00$20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/@04$FF!FF>@00$20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/@04$FF!FF>@00$20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/@04$FF!FF>@00$20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/@04$FF!FF>@00$20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b =:$24 36 $FF;END_____________________________________________________________________________________________________________________:$25 37 $FF;END_____________________________________________________________________________________________________________________:$5A 90 $FF;END_____________________________________________________________________________________________________________________:$5B 91 $FF;END_____________________________________________________________________________________________________________________:$5C 92 $FF;END_____________________________________________________________________________________________________________________:$5D 93 $FF;END_____________________________________________________________________________________________________________________:$5E 94 $FF;END_____________________________________________________________________________________________________________________:$5F 95 $FF;END_____________________________________________________________________________________________________________________:$60 96 $FF;END_____________________________________________________________________________________________________________________:$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/@04$FF!FF>@00$20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/@04$FF!FF>@00$20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/@04$FF!FF>@00$20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/@04$FF!FF>@00$20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/@04$FF!FF>@00$20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/@04$FF!FF>@00$20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/@04$FF!FF>@00$20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/@04$FF!FF>@00$20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/@04$FF!FF>@00$20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/@04$FF!FF>@00$20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/@04$FF!FF>@00$20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/@04$FF!FF>@00$20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/@04$FF!FF>@00$20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/@04$FF!FF>@00$20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/@04$FF!FF>@00$20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =:$24 36 $FF;END_____________________________________________________________________________________________________________________:$25 37 $FF;END_____________________________________________________________________________________________________________________:$5A 90 $FF;END_____________________________________________________________________________________________________________________:$5B 91 $FF;END_____________________________________________________________________________________________________________________:$5C 92 $FF;END_____________________________________________________________________________________________________________________:$5D 93 $FF;END_____________________________________________________________________________________________________________________:$5E 94 $FF;END_____________________________________________________________________________________________________________________:$5F 95 $FF;END_____________________________________________________________________________________________________________________:$60 96 $FF;END_____________________________________________________________________________________________________________________:$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$20!28 32/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/@04$FF!FF>@00$20!29 32/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/@04$FF!FF>@00$20!2A 32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/@04$FF!FF>@00$20!2B 32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/@04$FF!FF>@00$20!2C 32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/@04$FF!FF>@00$20!2D 32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/@04$FF!FF>@00$20!2E 32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/@04$FF!FF>@00$20!2F 32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/@04$FF!FF>@00$20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/@04$FF!FF>@00$20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/@04$FF!FF>@00$20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/@04$FF!FF>@00$20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/@04$FF!FF>@00$20!68 32/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/@04$FF!FF>@00$20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/@04$FF!FF>@00$20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/@04$FF!FF>@00$20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =$24 36 $FF;END______________________________________________________________________________________________________________________$25 37 $FF;END______________________________________________________________________________________________________________________$5A 90 $FF;END______________________________________________________________________________________________________________________$5B 91 $FF;END______________________________________________________________________________________________________________________$5C 92 $FF;END______________________________________________________________________________________________________________________$5D 93 $FF;END______________________________________________________________________________________________________________________$5E 94 $FF;END______________________________________________________________________________________________________________________$5F 95 $FF;END______________________________________________________________________________________________________________________$60 96 $FF;END______________________________________________________________________________________________________________________$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$20!2832/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ @04$FF!FF>@00$20!2932/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ @04$FF!FF>@00$20!2A32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ @04$FF!FF>@00$20!2B32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ @04$FF!FF>@00$20!2C32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ @04$FF!FF>@00$20!2D32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/ @04$FF!FF>@00$20!2E32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/ @04$FF!FF>@00$20!2F32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/ @04$FF!FF>@00$20!6432/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/1@04$FF!FF>@00$20!6532/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/1@04$FF!FF>@00$20!6632/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/1@04$FF!FF>@00$20!6732/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/1@04$FF!FF>@00$20!6832/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/1@04$FF!FF>@00$20!6932/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/1@04$FF!FF>@00$20!6A32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/1@04$FF!FF>@00$20!6B32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b =$24 36 $FF;END______________________________________________________________________________________________________________________$25 37 $FF;END______________________________________________________________________________________________________________________$5A 90 $FF;END______________________________________________________________________________________________________________________$5B 91 $FF;END______________________________________________________________________________________________________________________$5C 92 $FF;END______________________________________________________________________________________________________________________$5D 93 $FF;END______________________________________________________________________________________________________________________$5E 94 $FF;END______________________________________________________________________________________________________________________$5F 95 $FF;END______________________________________________________________________________________________________________________$60 96 $FF;END______________________________________________________________________________________________________________________$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$20!2832/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ @04$FF!FF>@00$20!2932/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ @04$FF!FF>@00$20!2A32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ @04$FF!FF>@00$20!2B32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ @04$FF!FF>@00$20!2C32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ @04$FF!FF>@00$20!2D32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/ @04$FF!FF>@00$20!2E32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/ @04$FF!FF>@00$20!2F32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/ @04$FF!FF>@00$20!6432/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/1@04$FF!FF>@00$20!6532/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/1@04$FF!FF>@00$20!6632/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/1@04$FF!FF>@00$20!6732/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/1@04$FF!FF>@00$20!6832/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/1@04$FF!FF>@00$20!6932/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/1@04$FF!FF>@00$20!6A32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/1@04$FF!FF>@00$20!6B32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =$24 36 $FF;END______________________________________________________________________________________________________________________$25 37 $FF;END______________________________________________________________________________________________________________________$5A 90 $FF;END______________________________________________________________________________________________________________________$5B 91 $FF;END______________________________________________________________________________________________________________________$5C 92 $FF;END______________________________________________________________________________________________________________________$5D 93 $FF;END______________________________________________________________________________________________________________________$5E 94 $FF;END______________________________________________________________________________________________________________________$5F 95 $FF;END______________________________________________________________________________________________________________________$60 96 $FF;END______________________________________________________________________________________________________________________$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$20!2832/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ @04$FF!FF>@00$20!2932/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ @04$FF!FF>@00$20!2A32/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ @04$FF!FF>@00$20!2B32/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ @04$FF!FF>@00$20!2C32/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ @04$FF!FF>@00$20!2D32/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/ @04$FF!FF>@00$20!2E32/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/ @04$FF!FF>@00$20!2F32/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/ @04$FF!FF>@00$20!6432/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/1@04$FF!FF>@00$20!6532/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/1@04$FF!FF>@00$20!6632/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/1@04$FF!FF>@00$20!6732/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/1@04$FF!FF>@00$20!6832/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/1@04$FF!FF>@00$20!6932/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/1@04$FF!FF>@00$20!6A32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/1@04$FF!FF>@00$20!6B32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =$24 36 $FF;END_______________________________________________________________________________________________________________________$25 37 $FF;END_______________________________________________________________________________________________________________________$5A 90 $FF;END_______________________________________________________________________________________________________________________$5B 91 $FF;END_______________________________________________________________________________________________________________________$5C 92 $FF;END_______________________________________________________________________________________________________________________$5D 93 $FF;END_______________________________________________________________________________________________________________________$5E 94 $FF;END_______________________________________________________________________________________________________________________$5F 95 $FF;END_______________________________________________________________________________________________________________________$60 96 $FF;END_______________________________________________________________________________________________________________________$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$20!282/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ 4@04$FF!FF>@00$20!292/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ 4@04$FF!FF>@00$20!2A2/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ 4@04$FF!FF>@00$20!2B2/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ 4@04$FF!FF>@00$20!2C2/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ 4@04$FF!FF>@00$20!2D2/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/ 4@04$FF!FF>@00$20!2E2/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/ 4@04$FF!FF>@00$20!2F2/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/ 4@04$FF!FF>@00$20!642/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/10@04$FF!FF>@00$20!652/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/10@04$FF!FF>@00$20!662/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/10@04$FF!FF>@00$20!672/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/10@04$FF!FF>@00$20!682/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/10@04$FF!FF>@00$20!692/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/10@04$FF!FF>@00$20!6A2/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/10@04$FF!FF>@00$20!6B2/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/10@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +2f =$24 36 $FF;END_______________________________________________________________________________________________________________________$25 37 $FF;END_______________________________________________________________________________________________________________________$5A 90 $FF;END_______________________________________________________________________________________________________________________$5B 91 $FF;END_______________________________________________________________________________________________________________________$5C 92 $FF;END_______________________________________________________________________________________________________________________$5D 93 $FF;END_______________________________________________________________________________________________________________________$5E 94 $FF;END_______________________________________________________________________________________________________________________$5F 95 $FF;END_______________________________________________________________________________________________________________________$60 96 $FF;END_______________________________________________________________________________________________________________________$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$20!282/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ 4@04$FF!FF>@00$20!292/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ 4@04$FF!FF>@00$20!2A2/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ 4@04$FF!FF>@00$20!2B2/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ 4@04$FF!FF>@00$20!2C2/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ 4@04$FF!FF>@00$20!2D2/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/ 4@04$FF!FF>@00$20!2E2/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/ 4@04$FF!FF>@00$20!2F2/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/ 4@04$FF!FF>@00$20!642/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/10@04$FF!FF>@00$20!652/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/10@04$FF!FF>@00$20!662/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/10@04$FF!FF>@00$20!672/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/10@04$FF!FF>@00$20!682/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/10@04$FF!FF>@00$20!692/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/10@04$FF!FF>@00$20!6A2/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/10@04$FF!FF>@00$20!6B2/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/10@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________/#______________________________________________________________________________________________________________________________________ +34 =$24 36 $FF;END_______________________________________________________________________________________________________________________$25 37 $FF;END_______________________________________________________________________________________________________________________$5A 90 $FF;END_______________________________________________________________________________________________________________________$5B 91 $FF;END_______________________________________________________________________________________________________________________$5C 92 $FF;END_______________________________________________________________________________________________________________________$5D 93 $FF;END_______________________________________________________________________________________________________________________$5E 94 $FF;END_______________________________________________________________________________________________________________________$5F 95 $FF;END_______________________________________________________________________________________________________________________$60 96 $FF;END_______________________________________________________________________________________________________________________$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$20!282/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ 4@04$FF!FF>@00$20!292/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ 4@04$FF!FF>@00$20!2A2/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ 4@04$FF!FF>@00$20!2B2/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ 4@04$FF!FF>@00$20!2C2/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ 4@04$FF!FF>@00$20!2D2/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/ 4@04$FF!FF>@00$20!2E2/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/ 4@04$FF!FF>@00$20!2F2/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/ 4@04$FF!FF>@00$20!642/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/10@04$FF!FF>@00$20!652/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/10@04$FF!FF>@00$20!662/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/10@04$FF!FF>@00$20!672/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/10@04$FF!FF>@00$20!682/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/10@04$FF!FF>@00$20!692/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/10@04$FF!FF>@00$20!6A2/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/10@04$FF!FF>@00$20!6B2/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/10@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________/4#_____________________________________________________________________________________________________________________________________ +2e =$24 36 $FF;END_______________________________________________________________________________________________________________________$25 37 $FF;END_______________________________________________________________________________________________________________________$5A 90 $FF;END_______________________________________________________________________________________________________________________$5B 91 $FF;END_______________________________________________________________________________________________________________________$5C 92 $FF;END_______________________________________________________________________________________________________________________$5D 93 $FF;END_______________________________________________________________________________________________________________________$5E 94 $FF;END_______________________________________________________________________________________________________________________$5F 95 $FF;END_______________________________________________________________________________________________________________________$60 96 $FF;END_______________________________________________________________________________________________________________________$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$20!282/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ 4@04$FF!FF>@00$20!292/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ 4@04$FF!FF>@00$20!2A2/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ 4@04$FF!FF>@00$20!2B2/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ 4@04$FF!FF>@00$20!2C2/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ 4@04$FF!FF>@00$20!2D2/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/ 4@04$FF!FF>@00$20!2E2/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/ 4@04$FF!FF>@00$20!2F2/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/ 4@04$FF!FF>@00$20!642/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/10@04$FF!FF>@00$20!652/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/10@04$FF!FF>@00$20!662/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/10@04$FF!FF>@00$20!672/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/10@04$FF!FF>@00$20!682/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/10@04$FF!FF>@00$20!692/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/10@04$FF!FF>@00$20!6A2/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/10@04$FF!FF>@00$20!6B2/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/10@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________/4.#____________________________________________________________________________________________________________________________________ +2e =$24 36 $FF;END_______________________________________________________________________________________________________________________$25 37 $FF;END_______________________________________________________________________________________________________________________$5A 90 $FF;END_______________________________________________________________________________________________________________________$5B 91 $FF;END_______________________________________________________________________________________________________________________$5C 92 $FF;END_______________________________________________________________________________________________________________________$5D 93 $FF;END_______________________________________________________________________________________________________________________$5E 94 $FF;END_______________________________________________________________________________________________________________________$5F 95 $FF;END_______________________________________________________________________________________________________________________$60 96 $FF;END_______________________________________________________________________________________________________________________$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$20!282/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ 4@04$FF!FF>@00$20!292/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ 4@04$FF!FF>@00$20!2A2/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ 4@04$FF!FF>@00$20!2B2/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ 4@04$FF!FF>@00$20!2C2/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ 4@04$FF!FF>@00$20!2D2/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/ 4@04$FF!FF>@00$20!2E2/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/ 4@04$FF!FF>@00$20!2F2/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/ 4@04$FF!FF>@00$20!642/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/10@04$FF!FF>@00$20!652/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/10@04$FF!FF>@00$20!662/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/10@04$FF!FF>@00$20!672/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/10@04$FF!FF>@00$20!682/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/10@04$FF!FF>@00$20!692/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/10@04$FF!FF>@00$20!6A2/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/10@04$FF!FF>@00$20!6B2/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/10@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________/4..#___________________________________________________________________________________________________________________________________ +2e =$24 36 $FF;END_______________________________________________________________________________________________________________________$25 37 $FF;END_______________________________________________________________________________________________________________________$5A 90 $FF;END_______________________________________________________________________________________________________________________$5B 91 $FF;END_______________________________________________________________________________________________________________________$5C 92 $FF;END_______________________________________________________________________________________________________________________$5D 93 $FF;END_______________________________________________________________________________________________________________________$5E 94 $FF;END_______________________________________________________________________________________________________________________$5F 95 $FF;END_______________________________________________________________________________________________________________________$60 96 $FF;END_______________________________________________________________________________________________________________________$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$20!282/ 40 $FF!FF $21!28 33/ 40 $FF!FF $22!28 34/ 40 $FF!FF $23!28 35/ 40 $FF!FF $24!28 36/ 40 $FF!FF $25!28 37/ 40 $FF!FF $5A!28 90/ 40 $FF!FF $5B!28 91/ 40 $FF!FF $5C!28 92/ 40 $FF!FF $5D!28 93/ 40 $FF!FF $5E!28 94/ 40 $FF!FF $5F!28 95/ 40 $FF!FF $60!28 96/ 40 $FF!FF $61!28 97/ 4@04$FF!FF>@00$20!292/ 41 $FF!FF $21!29 33/ 41 $FF!FF $22!29 34/ 41 $FF!FF $23!29 35/ 41 $FF!FF $24!29 36/ 41 $FF!FF $25!29 37/ 41 $FF!FF $5A!29 90/ 41 $FF!FF $5B!29 91/ 41 $FF!FF $5C!29 92/ 41 $FF!FF $5D!29 93/ 41 $FF!FF $5E!29 94/ 41 $FF!FF $5F!29 95/ 41 $FF!FF $60!29 96/ 41 $FF!FF $61!29 97/ 4@04$FF!FF>@00$20!2A2/ 42 $FF!FF $21!2A 33/ 42 $FF!FF $22!2A 34/ 42 $FF!FF $23!2A 35/ 42 $FF!FF $24!2A 36/ 42 $FF!FF $25!2A 37/ 42 $FF!FF $5A!2A 90/ 42 $FF!FF $5B!2A 91/ 42 $FF!FF $5C!2A 92/ 42 $FF!FF $5D!2A 93/ 42 $FF!FF $5E!2A 94/ 42 $FF!FF $5F!2A 95/ 42 $FF!FF $60!2A 96/ 42 $FF!FF $61!2A 97/ 4@04$FF!FF>@00$20!2B2/ 43 $FF!FF $21!2B 33/ 43 $FF!FF $22!2B 34/ 43 $FF!FF $23!2B 35/ 43 $FF!FF $24!2B 36/ 43 $FF!FF $25!2B 37/ 43 $FF!FF $5A!2B 90/ 43 $FF!FF $5B!2B 91/ 43 $FF!FF $5C!2B 92/ 43 $FF!FF $5D!2B 93/ 43 $FF!FF $5E!2B 94/ 43 $FF!FF $5F!2B 95/ 43 $FF!FF $60!2B 96/ 43 $FF!FF $61!2B 97/ 4@04$FF!FF>@00$20!2C2/ 44 $FF!FF $21!2C 33/ 44 $FF!FF $22!2C 34/ 44 $FF!FF $23!2C 35/ 44 $FF!FF $24!2C 36/ 44 $FF!FF $25!2C 37/ 44 $FF!FF $5A!2C 90/ 44 $FF!FF $5B!2C 91/ 44 $FF!FF $5C!2C 92/ 44 $FF!FF $5D!2C 93/ 44 $FF!FF $5E!2C 94/ 44 $FF!FF $5F!2C 95/ 44 $FF!FF $60!2C 96/ 44 $FF!FF $61!2C 97/ 4@04$FF!FF>@00$20!2D2/ 45 $FF!FF $21!2D 33/ 45 $FF!FF $22!2D 34/ 45 $FF!FF $23!2D 35/ 45 $FF!FF $24!2D 36/ 45 $FF!FF $25!2D 37/ 45 $FF!FF $5A!2D 90/ 45 $FF!FF $5B!2D 91/ 45 $FF!FF $5C!2D 92/ 45 $FF!FF $5D!2D 93/ 45 $FF!FF $5E!2D 94/ 45 $FF!FF $5F!2D 95/ 45 $FF!FF $60!2D 96/ 45 $FF!FF $61!2D 97/ 4@04$FF!FF>@00$20!2E2/ 46 $FF!FF $21!2E 33/ 46 $FF!FF $22!2E 34/ 46 $FF!FF $23!2E 35/ 46 $FF!FF $24!2E 36/ 46 $FF!FF $25!2E 37/ 46 $FF!FF $5A!2E 90/ 46 $FF!FF $5B!2E 91/ 46 $FF!FF $5C!2E 92/ 46 $FF!FF $5D!2E 93/ 46 $FF!FF $5E!2E 94/ 46 $FF!FF $5F!2E 95/ 46 $FF!FF $60!2E 96/ 46 $FF!FF $61!2E 97/ 4@04$FF!FF>@00$20!2F2/ 47 $FF!FF $21!2F 33/ 47 $FF!FF $22!2F 34/ 47 $FF!FF $23!2F 35/ 47 $FF!FF $24!2F 36/ 47 $FF!FF $25!2F 37/ 47 $FF!FF $5A!2F 90/ 47 $FF!FF $5B!2F 91/ 47 $FF!FF $5C!2F 92/ 47 $FF!FF $5D!2F 93/ 47 $FF!FF $5E!2F 94/ 47 $FF!FF $5F!2F 95/ 47 $FF!FF $60!2F 96/ 47 $FF!FF $61!2F 97/ 4@04$FF!FF>@00$20!642/100 $FF!FF $21!64 33/100 $FF!FF $22!64 34/100 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 94/100 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $FF!FF $61!64 97/10@04$FF!FF>@00$20!652/101 $FF!FF $21!65 33/101 $FF!FF $22!65 34/101 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 94/101 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $FF!FF $61!65 97/10@04$FF!FF>@00$20!662/102 $FF!FF $21!66 33/102 $FF!FF $22!66 34/102 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 94/102 $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $FF!FF $61!66 97/10@04$FF!FF>@00$20!672/103 $FF!FF $21!67 33/103 $FF!FF $22!67 34/103 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 94/103 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $FF!FF $61!67 97/10@04$FF!FF>@00$20!682/104 $FF!FF $21!68 33/104 $FF!FF $22!68 34/104 $FF!FF $23!68 35/104 $FF!FF $24!68 36/104 $FF!FF $25!68 37/104 $FF!FF $5A!68 90/104 $FF!FF $5B!68 91/104 $FF!FF $5C!68 92/104 $FF!FF $5D!68 93/104 $FF!FF $5E!68 94/104 $FF!FF $5F!68 95/104 $FF!FF $60!68 96/104 $FF!FF $61!68 97/10@04$FF!FF>@00$20!692/105 $FF!FF $21!69 33/105 $FF!FF $22!69 34/105 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 94/105 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $FF!FF $61!69 97/10@04$FF!FF>@00$20!6A2/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 34/106 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 94/106 $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $FF!FF $61!6A 97/10@04$FF!FF>@00$20!6B2/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 34/107 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 94/107 $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $FF!FF $61!6B 97/10@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________/4...#__________________________________________________________________________________________________________________________________ +a =this is bright blue fg :$5E 9@044 @00$FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ @0440 $FF!FF @00$1F!28 31/ @0440 $FF!FF @00$20!28 32/ @0440 $FF!FF @00$21!28 33/ @0440 $FF!FF @00$22!28 3@044/ 4@000 $FF!FF $23!28 35/ @0440 $FF!FF @00$24!28 36/ @0440 $FF!FF @00$25!28 37/ @0440 $FF!FF @00$5A!28 90/ @0440 $FF!FF @00$5B!28 91/ @0440 $FF!FF @00$5C!28 92/ @0440 $FF!FF @00$5D!28 93/ @04$FF!FF>@00red :$1E!29 30/ @0441 $FF!FF @00$1F!29 31/ @0441 $FF!FF @00$20!29 32/ @0441 $FF!FF @00$21!29 33/ @0441 $FF!FF @00$22!29 3@044/ 4@001 $FF!FF $23!29 35/ @0441 $FF!FF @00$24!29 36/ @0441 $FF!FF @00$25!29 37/ @0441 $FF!FF @00$5A!29 90/ @0441 $FF!FF @00$5B!29 91/ @0441 $FF!FF @00$5C!29 92/ @0441 $FF!FF @00$5D!29 93/ @04$FF!FF>@00green :$1E!2A 30/ @0442 $FF!FF @00$1F!2A 31/ @0442 $FF!FF @00$20!2A 32/ @0442 $FF!FF @00$21!2A 33/ @0442 $FF!FF @00$22!2A 3@044/ 4@002 $FF!FF $23!2A 35/ @0442 $FF!FF @00$24!2A 36/ @0442 $FF!FF @00$25!2A 37/ @0442 $FF!FF @00$5A!2A 90/ @0442 $FF!FF @00$5B!2A 91/ @0442 $FF!FF @00$5C!2A 92/ @0442 $FF!FF @00$5D!2A 93/ @04$FF!FF>@00yellow :$1E!2B 30/ @0443 $FF!FF @00$1F!2B 31/ @0443 $FF!FF @00$20!2B 32/ @0443 $FF!FF @00$21!2B 33/ @0443 $FF!FF @00$22!2B 3@044/ 4@003 $FF!FF $23!2B 35/ @0443 $FF!FF @00$24!2B 36/ @0443 $FF!FF @00$25!2B 37/ @0443 $FF!FF @00$5A!2B 90/ @0443 $FF!FF @00$5B!2B 91/ @0443 $FF!FF @00$5C!2B 92/ @0443 $FF!FF @00$5D!2B 93/ @04$FF!FF>@00blue :$1E!2C 30/ @0444 $FF!FF @00$1F!2C 31/ @0444 $FF!FF @00$20!2C 32/ @0444 $FF!FF @00$21!2C 33/ @0444 $FF!FF @00$22!2C 3@044/ 44 $FF!FF $23!2C @00 35/ @0444 $FF!FF @00$24!2C 36/ @0444 $FF!FF @00$25!2C 37/ @0444 $FF!FF @00$5A!2C 90/ @0444 $FF!FF @00$5B!2C 91/ @0444 $FF!FF @00$5C!2C 92/ @0444 $FF!FF @00$5D!2C 93/ @04$FF!FF>@00magenta :$1E!2D 30/ @0445 $FF!FF @00$1F!2D 31/ @0445 $FF!FF @00$20!2D 32/ @0445 $FF!FF @00$21!2D 33/ @0445 $FF!FF @00$22!2D 3@044/ 4@005 $FF!FF $23!2D 35/ @0445 $FF!FF @00$24!2D 36/ @0445 $FF!FF @00$25!2D 37/ @0445 $FF!FF @00$5A!2D 90/ @0445 $FF!FF @00$5B!2D 91/ @0445 $FF!FF @00$5C!2D 92/ @0445 $FF!FF @00$5D!2D 93/ @04$FF!FF>@00cyan :$1E!2E 30/ @0446 $FF!FF @00$1F!2E 31/ @0446 $FF!FF @00$20!2E 32/ @0446 $FF!FF @00$21!2E 33/ @0446 $FF!FF @00$22!2E 3@044/ 4@006 $FF!FF $23!2E 35/ @0446 $FF!FF @00$24!2E 36/ @0446 $FF!FF @00$25!2E 37/ @0446 $FF!FF @00$5A!2E 90/ @0446 $FF!FF @00$5B!2E 91/ @0446 $FF!FF @00$5C!2E 92/ @0446 $FF!FF @00$5D!2E 93/ @04$FF!FF>@00white :$1E!2F 30/ @0447 $FF!FF @00$1F!2F 31/ @0447 $FF!FF @00$20!2F 32/ @0447 $FF!FF @00$21!2F 33/ @0447 $FF!FF @00$22!2F 3@044/ 4@007 $FF!FF $23!2F 35/ @0447 $FF!FF @00$24!2F 36/ @0447 $FF!FF @00$25!2F 37/ @0447 $FF!FF @00$5A!2F 90/ @0447 $FF!FF @00$5B!2F 91/ @0447 $FF!FF @00$5C!2F 92/ @0447 $FF!FF @00$5D!2F 93/ @04$FF!FF>@00bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/10@000 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1@04$FF!FF>@00bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/10@001 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1@04$FF!FF>@00bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/10@002 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1@04$FF!FF>@00bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/10@003 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1@04$FF!FF>@00bright blue :$1E!68 30/10@044 $FF!FF $1F!68 @00 31/10@044 $FF!FF $20!68 @00 32/10@044 $FF!FF $21!68 @00 33/10@044 $FF!FF $22!68 @00 3@044/104 $FF!FF $23!68 @00 35/10@044 $FF!FF $24!68 @00 36/10@044 $FF!FF $25!68 @00 37/10@044 $FF!FF $5A!68 @00 90/10@044 $FF!FF $5B!68 @00 91/10@044 $FF!FF $5C!68 @00 92/10@044 $FF!FF $5D!68 @00 93/1@04$FF!FF>@00bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/10@005 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1@04$FF!FF>@00bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/10@006 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1@04$FF!FF>@00bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/10@007 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +2f =this is bright blue fg :$5E 9@044 @00$FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ @0440 $FF!FF @00$1F!28 31/ @0440 $FF!FF @00$20!28 32/ @0440 $FF!FF @00$21!28 33/ @0440 $FF!FF @00$22!28 3@044/ 4@000 $FF!FF $23!28 35/ @0440 $FF!FF @00$24!28 36/ @0440 $FF!FF @00$25!28 37/ @0440 $FF!FF @00$5A!28 90/ @0440 $FF!FF @00$5B!28 91/ @0440 $FF!FF @00$5C!28 92/ @0440 $FF!FF @00$5D!28 93/ @04$FF!FF>@00red :$1E!29 30/ @0441 $FF!FF @00$1F!29 31/ @0441 $FF!FF @00$20!29 32/ @0441 $FF!FF @00$21!29 33/ @0441 $FF!FF @00$22!29 3@044/ 4@001 $FF!FF $23!29 35/ @0441 $FF!FF @00$24!29 36/ @0441 $FF!FF @00$25!29 37/ @0441 $FF!FF @00$5A!29 90/ @0441 $FF!FF @00$5B!29 91/ @0441 $FF!FF @00$5C!29 92/ @0441 $FF!FF @00$5D!29 93/ @04$FF!FF>@00green :$1E!2A 30/ @0442 $FF!FF @00$1F!2A 31/ @0442 $FF!FF @00$20!2A 32/ @0442 $FF!FF @00$21!2A 33/ @0442 $FF!FF @00$22!2A 3@044/ 4@002 $FF!FF $23!2A 35/ @0442 $FF!FF @00$24!2A 36/ @0442 $FF!FF @00$25!2A 37/ @0442 $FF!FF @00$5A!2A 90/ @0442 $FF!FF @00$5B!2A 91/ @0442 $FF!FF @00$5C!2A 92/ @0442 $FF!FF @00$5D!2A 93/ @04$FF!FF>@00yellow :$1E!2B 30/ @0443 $FF!FF @00$1F!2B 31/ @0443 $FF!FF @00$20!2B 32/ @0443 $FF!FF @00$21!2B 33/ @0443 $FF!FF @00$22!2B 3@044/ 4@003 $FF!FF $23!2B 35/ @0443 $FF!FF @00$24!2B 36/ @0443 $FF!FF @00$25!2B 37/ @0443 $FF!FF @00$5A!2B 90/ @0443 $FF!FF @00$5B!2B 91/ @0443 $FF!FF @00$5C!2B 92/ @0443 $FF!FF @00$5D!2B 93/ @04$FF!FF>@00blue :$1E!2C 30/ @0444 $FF!FF @00$1F!2C 31/ @0444 $FF!FF @00$20!2C 32/ @0444 $FF!FF @00$21!2C 33/ @0444 $FF!FF @00$22!2C 3@044/ 44 $FF!FF $23!2C @00 35/ @0444 $FF!FF @00$24!2C 36/ @0444 $FF!FF @00$25!2C 37/ @0444 $FF!FF @00$5A!2C 90/ @0444 $FF!FF @00$5B!2C 91/ @0444 $FF!FF @00$5C!2C 92/ @0444 $FF!FF @00$5D!2C 93/ @04$FF!FF>@00magenta :$1E!2D 30/ @0445 $FF!FF @00$1F!2D 31/ @0445 $FF!FF @00$20!2D 32/ @0445 $FF!FF @00$21!2D 33/ @0445 $FF!FF @00$22!2D 3@044/ 4@005 $FF!FF $23!2D 35/ @0445 $FF!FF @00$24!2D 36/ @0445 $FF!FF @00$25!2D 37/ @0445 $FF!FF @00$5A!2D 90/ @0445 $FF!FF @00$5B!2D 91/ @0445 $FF!FF @00$5C!2D 92/ @0445 $FF!FF @00$5D!2D 93/ @04$FF!FF>@00cyan :$1E!2E 30/ @0446 $FF!FF @00$1F!2E 31/ @0446 $FF!FF @00$20!2E 32/ @0446 $FF!FF @00$21!2E 33/ @0446 $FF!FF @00$22!2E 3@044/ 4@006 $FF!FF $23!2E 35/ @0446 $FF!FF @00$24!2E 36/ @0446 $FF!FF @00$25!2E 37/ @0446 $FF!FF @00$5A!2E 90/ @0446 $FF!FF @00$5B!2E 91/ @0446 $FF!FF @00$5C!2E 92/ @0446 $FF!FF @00$5D!2E 93/ @04$FF!FF>@00white :$1E!2F 30/ @0447 $FF!FF @00$1F!2F 31/ @0447 $FF!FF @00$20!2F 32/ @0447 $FF!FF @00$21!2F 33/ @0447 $FF!FF @00$22!2F 3@044/ 4@007 $FF!FF $23!2F 35/ @0447 $FF!FF @00$24!2F 36/ @0447 $FF!FF @00$25!2F 37/ @0447 $FF!FF @00$5A!2F 90/ @0447 $FF!FF @00$5B!2F 91/ @0447 $FF!FF @00$5C!2F 92/ @0447 $FF!FF @00$5D!2F 93/ @04$FF!FF>@00bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/10@000 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1@04$FF!FF>@00bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/10@001 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1@04$FF!FF>@00bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/10@002 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1@04$FF!FF>@00bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/10@003 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1@04$FF!FF>@00bright blue :$1E!68 30/10@044 $FF!FF $1F!68 @00 31/10@044 $FF!FF $20!68 @00 32/10@044 $FF!FF $21!68 @00 33/10@044 $FF!FF $22!68 @00 3@044/104 $FF!FF $23!68 @00 35/10@044 $FF!FF $24!68 @00 36/10@044 $FF!FF $25!68 @00 37/10@044 $FF!FF $5A!68 @00 90/10@044 $FF!FF $5B!68 @00 91/10@044 $FF!FF $5C!68 @00 92/10@044 $FF!FF $5D!68 @00 93/1@04$FF!FF>@00bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/10@005 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1@04$FF!FF>@00bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/10@006 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1@04$FF!FF>@00bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/10@007 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________/#______________________________________________________________________________________________________________________________________ +34 =this is bright blue fg :$5E 9@044 @00$FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ @0440 $FF!FF @00$1F!28 31/ @0440 $FF!FF @00$20!28 32/ @0440 $FF!FF @00$21!28 33/ @0440 $FF!FF @00$22!28 3@044/ 4@000 $FF!FF $23!28 35/ @0440 $FF!FF @00$24!28 36/ @0440 $FF!FF @00$25!28 37/ @0440 $FF!FF @00$5A!28 90/ @0440 $FF!FF @00$5B!28 91/ @0440 $FF!FF @00$5C!28 92/ @0440 $FF!FF @00$5D!28 93/ @04$FF!FF>@00red :$1E!29 30/ @0441 $FF!FF @00$1F!29 31/ @0441 $FF!FF @00$20!29 32/ @0441 $FF!FF @00$21!29 33/ @0441 $FF!FF @00$22!29 3@044/ 4@001 $FF!FF $23!29 35/ @0441 $FF!FF @00$24!29 36/ @0441 $FF!FF @00$25!29 37/ @0441 $FF!FF @00$5A!29 90/ @0441 $FF!FF @00$5B!29 91/ @0441 $FF!FF @00$5C!29 92/ @0441 $FF!FF @00$5D!29 93/ @04$FF!FF>@00green :$1E!2A 30/ @0442 $FF!FF @00$1F!2A 31/ @0442 $FF!FF @00$20!2A 32/ @0442 $FF!FF @00$21!2A 33/ @0442 $FF!FF @00$22!2A 3@044/ 4@002 $FF!FF $23!2A 35/ @0442 $FF!FF @00$24!2A 36/ @0442 $FF!FF @00$25!2A 37/ @0442 $FF!FF @00$5A!2A 90/ @0442 $FF!FF @00$5B!2A 91/ @0442 $FF!FF @00$5C!2A 92/ @0442 $FF!FF @00$5D!2A 93/ @04$FF!FF>@00yellow :$1E!2B 30/ @0443 $FF!FF @00$1F!2B 31/ @0443 $FF!FF @00$20!2B 32/ @0443 $FF!FF @00$21!2B 33/ @0443 $FF!FF @00$22!2B 3@044/ 4@003 $FF!FF $23!2B 35/ @0443 $FF!FF @00$24!2B 36/ @0443 $FF!FF @00$25!2B 37/ @0443 $FF!FF @00$5A!2B 90/ @0443 $FF!FF @00$5B!2B 91/ @0443 $FF!FF @00$5C!2B 92/ @0443 $FF!FF @00$5D!2B 93/ @04$FF!FF>@00blue :$1E!2C 30/ @0444 $FF!FF @00$1F!2C 31/ @0444 $FF!FF @00$20!2C 32/ @0444 $FF!FF @00$21!2C 33/ @0444 $FF!FF @00$22!2C 3@044/ 44 $FF!FF $23!2C @00 35/ @0444 $FF!FF @00$24!2C 36/ @0444 $FF!FF @00$25!2C 37/ @0444 $FF!FF @00$5A!2C 90/ @0444 $FF!FF @00$5B!2C 91/ @0444 $FF!FF @00$5C!2C 92/ @0444 $FF!FF @00$5D!2C 93/ @04$FF!FF>@00magenta :$1E!2D 30/ @0445 $FF!FF @00$1F!2D 31/ @0445 $FF!FF @00$20!2D 32/ @0445 $FF!FF @00$21!2D 33/ @0445 $FF!FF @00$22!2D 3@044/ 4@005 $FF!FF $23!2D 35/ @0445 $FF!FF @00$24!2D 36/ @0445 $FF!FF @00$25!2D 37/ @0445 $FF!FF @00$5A!2D 90/ @0445 $FF!FF @00$5B!2D 91/ @0445 $FF!FF @00$5C!2D 92/ @0445 $FF!FF @00$5D!2D 93/ @04$FF!FF>@00cyan :$1E!2E 30/ @0446 $FF!FF @00$1F!2E 31/ @0446 $FF!FF @00$20!2E 32/ @0446 $FF!FF @00$21!2E 33/ @0446 $FF!FF @00$22!2E 3@044/ 4@006 $FF!FF $23!2E 35/ @0446 $FF!FF @00$24!2E 36/ @0446 $FF!FF @00$25!2E 37/ @0446 $FF!FF @00$5A!2E 90/ @0446 $FF!FF @00$5B!2E 91/ @0446 $FF!FF @00$5C!2E 92/ @0446 $FF!FF @00$5D!2E 93/ @04$FF!FF>@00white :$1E!2F 30/ @0447 $FF!FF @00$1F!2F 31/ @0447 $FF!FF @00$20!2F 32/ @0447 $FF!FF @00$21!2F 33/ @0447 $FF!FF @00$22!2F 3@044/ 4@007 $FF!FF $23!2F 35/ @0447 $FF!FF @00$24!2F 36/ @0447 $FF!FF @00$25!2F 37/ @0447 $FF!FF @00$5A!2F 90/ @0447 $FF!FF @00$5B!2F 91/ @0447 $FF!FF @00$5C!2F 92/ @0447 $FF!FF @00$5D!2F 93/ @04$FF!FF>@00bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/10@000 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1@04$FF!FF>@00bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/10@001 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1@04$FF!FF>@00bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/10@002 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1@04$FF!FF>@00bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/10@003 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1@04$FF!FF>@00bright blue :$1E!68 30/10@044 $FF!FF $1F!68 @00 31/10@044 $FF!FF $20!68 @00 32/10@044 $FF!FF $21!68 @00 33/10@044 $FF!FF $22!68 @00 3@044/104 $FF!FF $23!68 @00 35/10@044 $FF!FF $24!68 @00 36/10@044 $FF!FF $25!68 @00 37/10@044 $FF!FF $5A!68 @00 90/10@044 $FF!FF $5B!68 @00 91/10@044 $FF!FF $5C!68 @00 92/10@044 $FF!FF $5D!68 @00 93/1@04$FF!FF>@00bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/10@005 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1@04$FF!FF>@00bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/10@006 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1@04$FF!FF>@00bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/10@007 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________/4#_____________________________________________________________________________________________________________________________________ +2e =this is bright blue fg :$5E 9@044 @00$FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ @0440 $FF!FF @00$1F!28 31/ @0440 $FF!FF @00$20!28 32/ @0440 $FF!FF @00$21!28 33/ @0440 $FF!FF @00$22!28 3@044/ 4@000 $FF!FF $23!28 35/ @0440 $FF!FF @00$24!28 36/ @0440 $FF!FF @00$25!28 37/ @0440 $FF!FF @00$5A!28 90/ @0440 $FF!FF @00$5B!28 91/ @0440 $FF!FF @00$5C!28 92/ @0440 $FF!FF @00$5D!28 93/ @04$FF!FF>@00red :$1E!29 30/ @0441 $FF!FF @00$1F!29 31/ @0441 $FF!FF @00$20!29 32/ @0441 $FF!FF @00$21!29 33/ @0441 $FF!FF @00$22!29 3@044/ 4@001 $FF!FF $23!29 35/ @0441 $FF!FF @00$24!29 36/ @0441 $FF!FF @00$25!29 37/ @0441 $FF!FF @00$5A!29 90/ @0441 $FF!FF @00$5B!29 91/ @0441 $FF!FF @00$5C!29 92/ @0441 $FF!FF @00$5D!29 93/ @04$FF!FF>@00green :$1E!2A 30/ @0442 $FF!FF @00$1F!2A 31/ @0442 $FF!FF @00$20!2A 32/ @0442 $FF!FF @00$21!2A 33/ @0442 $FF!FF @00$22!2A 3@044/ 4@002 $FF!FF $23!2A 35/ @0442 $FF!FF @00$24!2A 36/ @0442 $FF!FF @00$25!2A 37/ @0442 $FF!FF @00$5A!2A 90/ @0442 $FF!FF @00$5B!2A 91/ @0442 $FF!FF @00$5C!2A 92/ @0442 $FF!FF @00$5D!2A 93/ @04$FF!FF>@00yellow :$1E!2B 30/ @0443 $FF!FF @00$1F!2B 31/ @0443 $FF!FF @00$20!2B 32/ @0443 $FF!FF @00$21!2B 33/ @0443 $FF!FF @00$22!2B 3@044/ 4@003 $FF!FF $23!2B 35/ @0443 $FF!FF @00$24!2B 36/ @0443 $FF!FF @00$25!2B 37/ @0443 $FF!FF @00$5A!2B 90/ @0443 $FF!FF @00$5B!2B 91/ @0443 $FF!FF @00$5C!2B 92/ @0443 $FF!FF @00$5D!2B 93/ @04$FF!FF>@00blue :$1E!2C 30/ @0444 $FF!FF @00$1F!2C 31/ @0444 $FF!FF @00$20!2C 32/ @0444 $FF!FF @00$21!2C 33/ @0444 $FF!FF @00$22!2C 3@044/ 44 $FF!FF $23!2C @00 35/ @0444 $FF!FF @00$24!2C 36/ @0444 $FF!FF @00$25!2C 37/ @0444 $FF!FF @00$5A!2C 90/ @0444 $FF!FF @00$5B!2C 91/ @0444 $FF!FF @00$5C!2C 92/ @0444 $FF!FF @00$5D!2C 93/ @04$FF!FF>@00magenta :$1E!2D 30/ @0445 $FF!FF @00$1F!2D 31/ @0445 $FF!FF @00$20!2D 32/ @0445 $FF!FF @00$21!2D 33/ @0445 $FF!FF @00$22!2D 3@044/ 4@005 $FF!FF $23!2D 35/ @0445 $FF!FF @00$24!2D 36/ @0445 $FF!FF @00$25!2D 37/ @0445 $FF!FF @00$5A!2D 90/ @0445 $FF!FF @00$5B!2D 91/ @0445 $FF!FF @00$5C!2D 92/ @0445 $FF!FF @00$5D!2D 93/ @04$FF!FF>@00cyan :$1E!2E 30/ @0446 $FF!FF @00$1F!2E 31/ @0446 $FF!FF @00$20!2E 32/ @0446 $FF!FF @00$21!2E 33/ @0446 $FF!FF @00$22!2E 3@044/ 4@006 $FF!FF $23!2E 35/ @0446 $FF!FF @00$24!2E 36/ @0446 $FF!FF @00$25!2E 37/ @0446 $FF!FF @00$5A!2E 90/ @0446 $FF!FF @00$5B!2E 91/ @0446 $FF!FF @00$5C!2E 92/ @0446 $FF!FF @00$5D!2E 93/ @04$FF!FF>@00white :$1E!2F 30/ @0447 $FF!FF @00$1F!2F 31/ @0447 $FF!FF @00$20!2F 32/ @0447 $FF!FF @00$21!2F 33/ @0447 $FF!FF @00$22!2F 3@044/ 4@007 $FF!FF $23!2F 35/ @0447 $FF!FF @00$24!2F 36/ @0447 $FF!FF @00$25!2F 37/ @0447 $FF!FF @00$5A!2F 90/ @0447 $FF!FF @00$5B!2F 91/ @0447 $FF!FF @00$5C!2F 92/ @0447 $FF!FF @00$5D!2F 93/ @04$FF!FF>@00bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/10@000 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1@04$FF!FF>@00bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/10@001 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1@04$FF!FF>@00bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/10@002 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1@04$FF!FF>@00bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/10@003 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1@04$FF!FF>@00bright blue :$1E!68 30/10@044 $FF!FF $1F!68 @00 31/10@044 $FF!FF $20!68 @00 32/10@044 $FF!FF $21!68 @00 33/10@044 $FF!FF $22!68 @00 3@044/104 $FF!FF $23!68 @00 35/10@044 $FF!FF $24!68 @00 36/10@044 $FF!FF $25!68 @00 37/10@044 $FF!FF $5A!68 @00 90/10@044 $FF!FF $5B!68 @00 91/10@044 $FF!FF $5C!68 @00 92/10@044 $FF!FF $5D!68 @00 93/1@04$FF!FF>@00bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/10@005 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1@04$FF!FF>@00bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/10@006 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1@04$FF!FF>@00bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/10@007 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________/4.#____________________________________________________________________________________________________________________________________ +2e =this is bright blue fg :$5E 9@044 @00$FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ @0440 $FF!FF @00$1F!28 31/ @0440 $FF!FF @00$20!28 32/ @0440 $FF!FF @00$21!28 33/ @0440 $FF!FF @00$22!28 3@044/ 4@000 $FF!FF $23!28 35/ @0440 $FF!FF @00$24!28 36/ @0440 $FF!FF @00$25!28 37/ @0440 $FF!FF @00$5A!28 90/ @0440 $FF!FF @00$5B!28 91/ @0440 $FF!FF @00$5C!28 92/ @0440 $FF!FF @00$5D!28 93/ @04$FF!FF>@00red :$1E!29 30/ @0441 $FF!FF @00$1F!29 31/ @0441 $FF!FF @00$20!29 32/ @0441 $FF!FF @00$21!29 33/ @0441 $FF!FF @00$22!29 3@044/ 4@001 $FF!FF $23!29 35/ @0441 $FF!FF @00$24!29 36/ @0441 $FF!FF @00$25!29 37/ @0441 $FF!FF @00$5A!29 90/ @0441 $FF!FF @00$5B!29 91/ @0441 $FF!FF @00$5C!29 92/ @0441 $FF!FF @00$5D!29 93/ @04$FF!FF>@00green :$1E!2A 30/ @0442 $FF!FF @00$1F!2A 31/ @0442 $FF!FF @00$20!2A 32/ @0442 $FF!FF @00$21!2A 33/ @0442 $FF!FF @00$22!2A 3@044/ 4@002 $FF!FF $23!2A 35/ @0442 $FF!FF @00$24!2A 36/ @0442 $FF!FF @00$25!2A 37/ @0442 $FF!FF @00$5A!2A 90/ @0442 $FF!FF @00$5B!2A 91/ @0442 $FF!FF @00$5C!2A 92/ @0442 $FF!FF @00$5D!2A 93/ @04$FF!FF>@00yellow :$1E!2B 30/ @0443 $FF!FF @00$1F!2B 31/ @0443 $FF!FF @00$20!2B 32/ @0443 $FF!FF @00$21!2B 33/ @0443 $FF!FF @00$22!2B 3@044/ 4@003 $FF!FF $23!2B 35/ @0443 $FF!FF @00$24!2B 36/ @0443 $FF!FF @00$25!2B 37/ @0443 $FF!FF @00$5A!2B 90/ @0443 $FF!FF @00$5B!2B 91/ @0443 $FF!FF @00$5C!2B 92/ @0443 $FF!FF @00$5D!2B 93/ @04$FF!FF>@00blue :$1E!2C 30/ @0444 $FF!FF @00$1F!2C 31/ @0444 $FF!FF @00$20!2C 32/ @0444 $FF!FF @00$21!2C 33/ @0444 $FF!FF @00$22!2C 3@044/ 44 $FF!FF $23!2C @00 35/ @0444 $FF!FF @00$24!2C 36/ @0444 $FF!FF @00$25!2C 37/ @0444 $FF!FF @00$5A!2C 90/ @0444 $FF!FF @00$5B!2C 91/ @0444 $FF!FF @00$5C!2C 92/ @0444 $FF!FF @00$5D!2C 93/ @04$FF!FF>@00magenta :$1E!2D 30/ @0445 $FF!FF @00$1F!2D 31/ @0445 $FF!FF @00$20!2D 32/ @0445 $FF!FF @00$21!2D 33/ @0445 $FF!FF @00$22!2D 3@044/ 4@005 $FF!FF $23!2D 35/ @0445 $FF!FF @00$24!2D 36/ @0445 $FF!FF @00$25!2D 37/ @0445 $FF!FF @00$5A!2D 90/ @0445 $FF!FF @00$5B!2D 91/ @0445 $FF!FF @00$5C!2D 92/ @0445 $FF!FF @00$5D!2D 93/ @04$FF!FF>@00cyan :$1E!2E 30/ @0446 $FF!FF @00$1F!2E 31/ @0446 $FF!FF @00$20!2E 32/ @0446 $FF!FF @00$21!2E 33/ @0446 $FF!FF @00$22!2E 3@044/ 4@006 $FF!FF $23!2E 35/ @0446 $FF!FF @00$24!2E 36/ @0446 $FF!FF @00$25!2E 37/ @0446 $FF!FF @00$5A!2E 90/ @0446 $FF!FF @00$5B!2E 91/ @0446 $FF!FF @00$5C!2E 92/ @0446 $FF!FF @00$5D!2E 93/ @04$FF!FF>@00white :$1E!2F 30/ @0447 $FF!FF @00$1F!2F 31/ @0447 $FF!FF @00$20!2F 32/ @0447 $FF!FF @00$21!2F 33/ @0447 $FF!FF @00$22!2F 3@044/ 4@007 $FF!FF $23!2F 35/ @0447 $FF!FF @00$24!2F 36/ @0447 $FF!FF @00$25!2F 37/ @0447 $FF!FF @00$5A!2F 90/ @0447 $FF!FF @00$5B!2F 91/ @0447 $FF!FF @00$5C!2F 92/ @0447 $FF!FF @00$5D!2F 93/ @04$FF!FF>@00bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/10@000 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1@04$FF!FF>@00bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/10@001 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1@04$FF!FF>@00bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/10@002 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1@04$FF!FF>@00bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/10@003 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1@04$FF!FF>@00bright blue :$1E!68 30/10@044 $FF!FF $1F!68 @00 31/10@044 $FF!FF $20!68 @00 32/10@044 $FF!FF $21!68 @00 33/10@044 $FF!FF $22!68 @00 3@044/104 $FF!FF $23!68 @00 35/10@044 $FF!FF $24!68 @00 36/10@044 $FF!FF $25!68 @00 37/10@044 $FF!FF $5A!68 @00 90/10@044 $FF!FF $5B!68 @00 91/10@044 $FF!FF $5C!68 @00 92/10@044 $FF!FF $5D!68 @00 93/1@04$FF!FF>@00bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/10@005 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1@04$FF!FF>@00bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/10@006 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1@04$FF!FF>@00bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/10@007 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________/4..#___________________________________________________________________________________________________________________________________ +2e =this is bright blue fg :$5E 9@044 @00$FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ @0440 $FF!FF @00$1F!28 31/ @0440 $FF!FF @00$20!28 32/ @0440 $FF!FF @00$21!28 33/ @0440 $FF!FF @00$22!28 3@044/ 4@000 $FF!FF $23!28 35/ @0440 $FF!FF @00$24!28 36/ @0440 $FF!FF @00$25!28 37/ @0440 $FF!FF @00$5A!28 90/ @0440 $FF!FF @00$5B!28 91/ @0440 $FF!FF @00$5C!28 92/ @0440 $FF!FF @00$5D!28 93/ @04$FF!FF>@00red :$1E!29 30/ @0441 $FF!FF @00$1F!29 31/ @0441 $FF!FF @00$20!29 32/ @0441 $FF!FF @00$21!29 33/ @0441 $FF!FF @00$22!29 3@044/ 4@001 $FF!FF $23!29 35/ @0441 $FF!FF @00$24!29 36/ @0441 $FF!FF @00$25!29 37/ @0441 $FF!FF @00$5A!29 90/ @0441 $FF!FF @00$5B!29 91/ @0441 $FF!FF @00$5C!29 92/ @0441 $FF!FF @00$5D!29 93/ @04$FF!FF>@00green :$1E!2A 30/ @0442 $FF!FF @00$1F!2A 31/ @0442 $FF!FF @00$20!2A 32/ @0442 $FF!FF @00$21!2A 33/ @0442 $FF!FF @00$22!2A 3@044/ 4@002 $FF!FF $23!2A 35/ @0442 $FF!FF @00$24!2A 36/ @0442 $FF!FF @00$25!2A 37/ @0442 $FF!FF @00$5A!2A 90/ @0442 $FF!FF @00$5B!2A 91/ @0442 $FF!FF @00$5C!2A 92/ @0442 $FF!FF @00$5D!2A 93/ @04$FF!FF>@00yellow :$1E!2B 30/ @0443 $FF!FF @00$1F!2B 31/ @0443 $FF!FF @00$20!2B 32/ @0443 $FF!FF @00$21!2B 33/ @0443 $FF!FF @00$22!2B 3@044/ 4@003 $FF!FF $23!2B 35/ @0443 $FF!FF @00$24!2B 36/ @0443 $FF!FF @00$25!2B 37/ @0443 $FF!FF @00$5A!2B 90/ @0443 $FF!FF @00$5B!2B 91/ @0443 $FF!FF @00$5C!2B 92/ @0443 $FF!FF @00$5D!2B 93/ @04$FF!FF>@00blue :$1E!2C 30/ @0444 $FF!FF @00$1F!2C 31/ @0444 $FF!FF @00$20!2C 32/ @0444 $FF!FF @00$21!2C 33/ @0444 $FF!FF @00$22!2C 3@044/ 44 $FF!FF $23!2C @00 35/ @0444 $FF!FF @00$24!2C 36/ @0444 $FF!FF @00$25!2C 37/ @0444 $FF!FF @00$5A!2C 90/ @0444 $FF!FF @00$5B!2C 91/ @0444 $FF!FF @00$5C!2C 92/ @0444 $FF!FF @00$5D!2C 93/ @04$FF!FF>@00magenta :$1E!2D 30/ @0445 $FF!FF @00$1F!2D 31/ @0445 $FF!FF @00$20!2D 32/ @0445 $FF!FF @00$21!2D 33/ @0445 $FF!FF @00$22!2D 3@044/ 4@005 $FF!FF $23!2D 35/ @0445 $FF!FF @00$24!2D 36/ @0445 $FF!FF @00$25!2D 37/ @0445 $FF!FF @00$5A!2D 90/ @0445 $FF!FF @00$5B!2D 91/ @0445 $FF!FF @00$5C!2D 92/ @0445 $FF!FF @00$5D!2D 93/ @04$FF!FF>@00cyan :$1E!2E 30/ @0446 $FF!FF @00$1F!2E 31/ @0446 $FF!FF @00$20!2E 32/ @0446 $FF!FF @00$21!2E 33/ @0446 $FF!FF @00$22!2E 3@044/ 4@006 $FF!FF $23!2E 35/ @0446 $FF!FF @00$24!2E 36/ @0446 $FF!FF @00$25!2E 37/ @0446 $FF!FF @00$5A!2E 90/ @0446 $FF!FF @00$5B!2E 91/ @0446 $FF!FF @00$5C!2E 92/ @0446 $FF!FF @00$5D!2E 93/ @04$FF!FF>@00white :$1E!2F 30/ @0447 $FF!FF @00$1F!2F 31/ @0447 $FF!FF @00$20!2F 32/ @0447 $FF!FF @00$21!2F 33/ @0447 $FF!FF @00$22!2F 3@044/ 4@007 $FF!FF $23!2F 35/ @0447 $FF!FF @00$24!2F 36/ @0447 $FF!FF @00$25!2F 37/ @0447 $FF!FF @00$5A!2F 90/ @0447 $FF!FF @00$5B!2F 91/ @0447 $FF!FF @00$5C!2F 92/ @0447 $FF!FF @00$5D!2F 93/ @04$FF!FF>@00bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/10@000 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1@04$FF!FF>@00bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/10@001 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1@04$FF!FF>@00bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/10@002 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1@04$FF!FF>@00bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/10@003 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1@04$FF!FF>@00bright blue :$1E!68 30/10@044 $FF!FF $1F!68 @00 31/10@044 $FF!FF $20!68 @00 32/10@044 $FF!FF $21!68 @00 33/10@044 $FF!FF $22!68 @00 3@044/104 $FF!FF $23!68 @00 35/10@044 $FF!FF $24!68 @00 36/10@044 $FF!FF $25!68 @00 37/10@044 $FF!FF $5A!68 @00 90/10@044 $FF!FF $5B!68 @00 91/10@044 $FF!FF $5C!68 @00 92/10@044 $FF!FF $5D!68 @00 93/1@04$FF!FF>@00bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/10@005 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1@04$FF!FF>@00bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/10@006 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1@04$FF!FF>@00bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/10@007 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________/4...#__________________________________________________________________________________________________________________________________ +2e =this is bright blue fg :$5E 9@044 @00$FF;END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ @0440 $FF!FF @00$1F!28 31/ @0440 $FF!FF @00$20!28 32/ @0440 $FF!FF @00$21!28 33/ @0440 $FF!FF @00$22!28 3@044/ 4@000 $FF!FF $23!28 35/ @0440 $FF!FF @00$24!28 36/ @0440 $FF!FF @00$25!28 37/ @0440 $FF!FF @00$5A!28 90/ @0440 $FF!FF @00$5B!28 91/ @0440 $FF!FF @00$5C!28 92/ @0440 $FF!FF @00$5D!28 93/ @04$FF!FF>@00red :$1E!29 30/ @0441 $FF!FF @00$1F!29 31/ @0441 $FF!FF @00$20!29 32/ @0441 $FF!FF @00$21!29 33/ @0441 $FF!FF @00$22!29 3@044/ 4@001 $FF!FF $23!29 35/ @0441 $FF!FF @00$24!29 36/ @0441 $FF!FF @00$25!29 37/ @0441 $FF!FF @00$5A!29 90/ @0441 $FF!FF @00$5B!29 91/ @0441 $FF!FF @00$5C!29 92/ @0441 $FF!FF @00$5D!29 93/ @04$FF!FF>@00green :$1E!2A 30/ @0442 $FF!FF @00$1F!2A 31/ @0442 $FF!FF @00$20!2A 32/ @0442 $FF!FF @00$21!2A 33/ @0442 $FF!FF @00$22!2A 3@044/ 4@002 $FF!FF $23!2A 35/ @0442 $FF!FF @00$24!2A 36/ @0442 $FF!FF @00$25!2A 37/ @0442 $FF!FF @00$5A!2A 90/ @0442 $FF!FF @00$5B!2A 91/ @0442 $FF!FF @00$5C!2A 92/ @0442 $FF!FF @00$5D!2A 93/ @04$FF!FF>@00yellow :$1E!2B 30/ @0443 $FF!FF @00$1F!2B 31/ @0443 $FF!FF @00$20!2B 32/ @0443 $FF!FF @00$21!2B 33/ @0443 $FF!FF @00$22!2B 3@044/ 4@003 $FF!FF $23!2B 35/ @0443 $FF!FF @00$24!2B 36/ @0443 $FF!FF @00$25!2B 37/ @0443 $FF!FF @00$5A!2B 90/ @0443 $FF!FF @00$5B!2B 91/ @0443 $FF!FF @00$5C!2B 92/ @0443 $FF!FF @00$5D!2B 93/ @04$FF!FF>@00blue :$1E!2C 30/ @0444 $FF!FF @00$1F!2C 31/ @0444 $FF!FF @00$20!2C 32/ @0444 $FF!FF @00$21!2C 33/ @0444 $FF!FF @00$22!2C 3@044/ 44 $FF!FF $23!2C @00 35/ @0444 $FF!FF @00$24!2C 36/ @0444 $FF!FF @00$25!2C 37/ @0444 $FF!FF @00$5A!2C 90/ @0444 $FF!FF @00$5B!2C 91/ @0444 $FF!FF @00$5C!2C 92/ @0444 $FF!FF @00$5D!2C 93/ @04$FF!FF>@00magenta :$1E!2D 30/ @0445 $FF!FF @00$1F!2D 31/ @0445 $FF!FF @00$20!2D 32/ @0445 $FF!FF @00$21!2D 33/ @0445 $FF!FF @00$22!2D 3@044/ 4@005 $FF!FF $23!2D 35/ @0445 $FF!FF @00$24!2D 36/ @0445 $FF!FF @00$25!2D 37/ @0445 $FF!FF @00$5A!2D 90/ @0445 $FF!FF @00$5B!2D 91/ @0445 $FF!FF @00$5C!2D 92/ @0445 $FF!FF @00$5D!2D 93/ @04$FF!FF>@00cyan :$1E!2E 30/ @0446 $FF!FF @00$1F!2E 31/ @0446 $FF!FF @00$20!2E 32/ @0446 $FF!FF @00$21!2E 33/ @0446 $FF!FF @00$22!2E 3@044/ 4@006 $FF!FF $23!2E 35/ @0446 $FF!FF @00$24!2E 36/ @0446 $FF!FF @00$25!2E 37/ @0446 $FF!FF @00$5A!2E 90/ @0446 $FF!FF @00$5B!2E 91/ @0446 $FF!FF @00$5C!2E 92/ @0446 $FF!FF @00$5D!2E 93/ @04$FF!FF>@00white :$1E!2F 30/ @0447 $FF!FF @00$1F!2F 31/ @0447 $FF!FF @00$20!2F 32/ @0447 $FF!FF @00$21!2F 33/ @0447 $FF!FF @00$22!2F 3@044/ 4@007 $FF!FF $23!2F 35/ @0447 $FF!FF @00$24!2F 36/ @0447 $FF!FF @00$25!2F 37/ @0447 $FF!FF @00$5A!2F 90/ @0447 $FF!FF @00$5B!2F 91/ @0447 $FF!FF @00$5C!2F 92/ @0447 $FF!FF @00$5D!2F 93/ @04$FF!FF>@00bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/10@000 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1@04$FF!FF>@00bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/10@001 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1@04$FF!FF>@00bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/10@002 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1@04$FF!FF>@00bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/10@003 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1@04$FF!FF>@00bright blue :$1E!68 30/10@044 $FF!FF $1F!68 @00 31/10@044 $FF!FF $20!68 @00 32/10@044 $FF!FF $21!68 @00 33/10@044 $FF!FF $22!68 @00 3@044/104 $FF!FF $23!68 @00 35/10@044 $FF!FF $24!68 @00 36/10@044 $FF!FF $25!68 @00 37/10@044 $FF!FF $5A!68 @00 90/10@044 $FF!FF $5B!68 @00 91/10@044 $FF!FF $5C!68 @00 92/10@044 $FF!FF $5D!68 @00 93/1@04$FF!FF>@00bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/10@005 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1@04$FF!FF>@00bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/10@006 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1@04$FF!FF>@00bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/10@007 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________/4....#_________________________________________________________________________________________________________________________________ +a =this is bright blue fg :$5E 9@044 $FF;@00END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @04$FF!FF>@00red :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @04$FF!FF>@00green :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @04$FF!FF>@00yellow :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @04$FF!FF>@00blue :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @04$FF!FF>@00magenta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @04$FF!FF>@00cyan :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @04$FF!FF>@00white :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @04$FF!FF>@00bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1@04$FF!FF>@00bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1@04$FF!FF>@00bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1@04$FF!FF>@00bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1@04$FF!FF>@00bright blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/1@04$FF!FF>@00bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1@04$FF!FF>@00bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1@04$FF!FF>@00bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b =this is bright blue fg :$5E 9@044 $FF;@00END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @04$FF!FF>@00red :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @04$FF!FF>@00green :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @04$FF!FF>@00yellow :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @04$FF!FF>@00blue :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @04$FF!FF>@00magenta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @04$FF!FF>@00cyan :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @04$FF!FF>@00white :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @04$FF!FF>@00bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1@04$FF!FF>@00bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1@04$FF!FF>@00bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1@04$FF!FF>@00bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1@04$FF!FF>@00bright blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/1@04$FF!FF>@00bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1@04$FF!FF>@00bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1@04$FF!FF>@00bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =this is bright blue fg :$5E 9@044 $FF;@00END______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @04$FF!FF>@00red :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @04$FF!FF>@00green :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @04$FF!FF>@00yellow :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @04$FF!FF>@00blue :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @04$FF!FF>@00magenta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @04$FF!FF>@00cyan :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @04$FF!FF>@00white :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @04$FF!FF>@00bright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1@04$FF!FF>@00bright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1@04$FF!FF>@00bright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1@04$FF!FF>@00bright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1@04$FF!FF>@00bright blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/1@04$FF!FF>@00bright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1@04$FF!FF>@00bright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1@04$FF!FF>@00bright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/1@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =his is bright blue fg :$5E 9@044 $FF;@00END_______________________________________________________________________________his is bright magenta fg :$5F 95 $FF;END_______________________________________________________________________________his is bright cyan fg :$60 96 $FF;END_______________________________________________________________________________his is bright white fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________lack :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @044$FF!FF>@00ed :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @044$FF!FF>@00reen :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @044$FF!FF>@00ellow :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @044$FF!FF>@00lue :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @044$FF!FF>@00agenta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @044$FF!FF>@00yan :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @044$FF!FF>@00hite :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @044$FF!FF>@00right black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/10@04$FF!FF>@00right red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/10@04$FF!FF>@00right green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/10@04$FF!FF>@00right yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/10@04$FF!FF>@00right blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@04$FF!FF>@00right magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/10@04$FF!FF>@00right cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/10@04$FF!FF>@00right white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/10@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b =his is bright blue fg :$5E 9@044 $FF;@00END_______________________________________________________________________________his is bright magenta fg :$5F 95 $FF;END_______________________________________________________________________________his is bright cyan fg :$60 96 $FF;END_______________________________________________________________________________his is bright white fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________lack :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @044$FF!FF>@00ed :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @044$FF!FF>@00reen :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @044$FF!FF>@00ellow :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @044$FF!FF>@00lue :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @044$FF!FF>@00agenta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @044$FF!FF>@00yan :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @044$FF!FF>@00hite :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @044$FF!FF>@00right black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/10@04$FF!FF>@00right red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/10@04$FF!FF>@00right green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/10@04$FF!FF>@00right yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/10@04$FF!FF>@00right blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@04$FF!FF>@00right magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/10@04$FF!FF>@00right cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/10@04$FF!FF>@00right white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/10@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =his is bright blue fg :$5E 9@044 $FF;@00END_______________________________________________________________________________his is bright magenta fg :$5F 95 $FF;END_______________________________________________________________________________his is bright cyan fg :$60 96 $FF;END_______________________________________________________________________________his is bright white fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________lack :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @044$FF!FF>@00ed :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @044$FF!FF>@00reen :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @044$FF!FF>@00ellow :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @044$FF!FF>@00lue :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @044$FF!FF>@00agenta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @044$FF!FF>@00yan :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @044$FF!FF>@00hite :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @044$FF!FF>@00right black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/10@04$FF!FF>@00right red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/10@04$FF!FF>@00right green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/10@04$FF!FF>@00right yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/10@04$FF!FF>@00right blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@04$FF!FF>@00right magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/10@04$FF!FF>@00right cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/10@04$FF!FF>@00right white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/10@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =is is bright blue fg :$5E 9@044 $FF;@00END________________________________________________________________________________is is bright magenta fg :$5F 95 $FF;END________________________________________________________________________________is is bright cyan fg :$60 96 $FF;END________________________________________________________________________________is is bright white fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ack :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440$FF!FF>@00d :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441$FF!FF>@00een :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442$FF!FF>@00llow :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443$FF!FF>@00ue :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444$FF!FF>@00genta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445$FF!FF>@00an :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446$FF!FF>@00ite :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447$FF!FF>@00ight black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100@04$FF!FF>@00ight red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101@04$FF!FF>@00ight green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102@04$FF!FF>@00ight yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103@04$FF!FF>@00ight blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044$FF!FF>@00ight magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105@04$FF!FF>@00ight cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106@04$FF!FF>@00ight white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b =is is bright blue fg :$5E 9@044 $FF;@00END________________________________________________________________________________is is bright magenta fg :$5F 95 $FF;END________________________________________________________________________________is is bright cyan fg :$60 96 $FF;END________________________________________________________________________________is is bright white fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ack :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440$FF!FF>@00d :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441$FF!FF>@00een :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442$FF!FF>@00llow :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443$FF!FF>@00ue :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444$FF!FF>@00genta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445$FF!FF>@00an :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446$FF!FF>@00ite :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447$FF!FF>@00ight black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100@04$FF!FF>@00ight red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101@04$FF!FF>@00ight green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102@04$FF!FF>@00ight yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103@04$FF!FF>@00ight blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044$FF!FF>@00ight magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105@04$FF!FF>@00ight cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106@04$FF!FF>@00ight white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =is is bright blue fg :$5E 9@044 $FF;@00END________________________________________________________________________________is is bright magenta fg :$5F 95 $FF;END________________________________________________________________________________is is bright cyan fg :$60 96 $FF;END________________________________________________________________________________is is bright white fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ack :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440$FF!FF>@00d :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441$FF!FF>@00een :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442$FF!FF>@00llow :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443$FF!FF>@00ue :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444$FF!FF>@00genta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445$FF!FF>@00an :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446$FF!FF>@00ite :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447$FF!FF>@00ight black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100@04$FF!FF>@00ight red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101@04$FF!FF>@00ight green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102@04$FF!FF>@00ight yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103@04$FF!FF>@00ight blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044$FF!FF>@00ight magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105@04$FF!FF>@00ight cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106@04$FF!FF>@00ight white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =s is bright blue fg :$5E 9@044 $FF;@00END_________________________________________________________________________________s is bright magenta fg :$5F 95 $FF;END_________________________________________________________________________________s is bright cyan fg :$60 96 $FF;END_________________________________________________________________________________s is bright white fg :$61 97 $FF;END_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ck :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF>@00en :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF>@00low :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF>@00e :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF>@00enta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF>@00n :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF>@00te :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF>@00ght black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 @04$FF!FF>@00ght red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 @04$FF!FF>@00ght green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 @04$FF!FF>@00ght yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 @04$FF!FF>@00ght blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF>@00ght magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 @04$FF!FF>@00ght cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 @04$FF!FF>@00ght white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b =s is bright blue fg :$5E 9@044 $FF;@00END_________________________________________________________________________________s is bright magenta fg :$5F 95 $FF;END_________________________________________________________________________________s is bright cyan fg :$60 96 $FF;END_________________________________________________________________________________s is bright white fg :$61 97 $FF;END_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ck :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF>@00en :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF>@00low :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF>@00e :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF>@00enta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF>@00n :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF>@00te :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF>@00ght black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 @04$FF!FF>@00ght red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 @04$FF!FF>@00ght green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 @04$FF!FF>@00ght yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 @04$FF!FF>@00ght blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF>@00ght magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 @04$FF!FF>@00ght cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 @04$FF!FF>@00ght white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =s is bright blue fg :$5E 9@044 $FF;@00END_________________________________________________________________________________s is bright magenta fg :$5F 95 $FF;END_________________________________________________________________________________s is bright cyan fg :$60 96 $FF;END_________________________________________________________________________________s is bright white fg :$61 97 $FF;END_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ck :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF>@00en :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF>@00low :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF>@00e :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF>@00enta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF>@00n :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF>@00te :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF>@00ght black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 @04$FF!FF>@00ght red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 @04$FF!FF>@00ght green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 @04$FF!FF>@00ght yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 @04$FF!FF>@00ght blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF>@00ght magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 @04$FF!FF>@00ght cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 @04$FF!FF>@00ght white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = is bright blue fg :$5E 9@044 $FF;@00END__________________________________________________________________________________ is bright magenta fg :$5F 95 $FF;END__________________________________________________________________________________ is bright cyan fg :$60 96 $FF;END__________________________________________________________________________________ is bright white fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________k :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF >@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF >@00n :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF >@00ow :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF >@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF >@00nta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF >@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF >@00e :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF >@00ht black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF @04>@00ht red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF @04>@00ht green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF @04>@00ht yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF @04>@00ht blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF >@00ht magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF @04>@00ht cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF @04>@00ht white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF @04>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = is bright blue fg :$5E 9@044 $FF;@00END__________________________________________________________________________________ is bright magenta fg :$5F 95 $FF;END__________________________________________________________________________________ is bright cyan fg :$60 96 $FF;END__________________________________________________________________________________ is bright white fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________k :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF >@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF >@00n :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF >@00ow :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF >@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF >@00nta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF >@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF >@00e :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF >@00ht black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF @04>@00ht red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF @04>@00ht green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF @04>@00ht yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF @04>@00ht blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF >@00ht magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF @04>@00ht cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF @04>@00ht white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF @04>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = is bright blue fg :$5E 9@044 $FF;@00END__________________________________________________________________________________ is bright magenta fg :$5F 95 $FF;END__________________________________________________________________________________ is bright cyan fg :$60 96 $FF;END__________________________________________________________________________________ is bright white fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________k :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF >@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF >@00n :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF >@00ow :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF >@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF >@00nta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF >@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF >@00e :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF >@00ht black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF @04>@00ht red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF @04>@00ht green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF @04>@00ht yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF @04>@00ht blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF >@00ht magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF @04>@00ht cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF @04>@00ht white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF @04>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =is bright blue fg :$5E 9@044 $FF;@00END___________________________________________________________________________________is bright magenta fg :$5F 95 $FF;END___________________________________________________________________________________is bright cyan fg :$60 96 $FF;END___________________________________________________________________________________is bright white fg :$61 97 $FF;END_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 $FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 $FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A $FF!FF>@00w :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B $FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C $FF!FF>@00ta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D $FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E $FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F $FF!FF>@00t black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 @04$FF!FF>@00t red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 @04$FF!FF>@00t green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 @04$FF!FF>@00t yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 @04$FF!FF>@00t blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 $FF!FF>@00t magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 @04$FF!FF>@00t cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A @04$FF!FF>@00t white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b =is bright blue fg :$5E 9@044 $FF;@00END___________________________________________________________________________________is bright magenta fg :$5F 95 $FF;END___________________________________________________________________________________is bright cyan fg :$60 96 $FF;END___________________________________________________________________________________is bright white fg :$61 97 $FF;END_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 $FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 $FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A $FF!FF>@00w :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B $FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C $FF!FF>@00ta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D $FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E $FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F $FF!FF>@00t black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 @04$FF!FF>@00t red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 @04$FF!FF>@00t green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 @04$FF!FF>@00t yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 @04$FF!FF>@00t blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 $FF!FF>@00t magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 @04$FF!FF>@00t cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A @04$FF!FF>@00t white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =is bright blue fg :$5E 9@044 $FF;@00END___________________________________________________________________________________is bright magenta fg :$5F 95 $FF;END___________________________________________________________________________________is bright cyan fg :$60 96 $FF;END___________________________________________________________________________________is bright white fg :$61 97 $FF;END_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 $FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 $FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A $FF!FF>@00w :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B $FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C $FF!FF>@00ta :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D $FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E $FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F $FF!FF>@00t black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 @04$FF!FF>@00t red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 @04$FF!FF>@00t green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 @04$FF!FF>@00t yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 @04$FF!FF>@00t blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 $FF!FF>@00t magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 @04$FF!FF>@00t cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A @04$FF!FF>@00t white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =s bright blue fg :$5E 9@044 $FF;@00END____________________________________________________________________________________s bright magenta fg :$5F 95 $FF;END____________________________________________________________________________________s bright cyan fg :$60 96 $FF;END____________________________________________________________________________________s bright white fg :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 @04$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 @04$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 @04$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 @04$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 @04$FF!FF>@00a :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 @04$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 @04$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 @04$FF!FF>@00 black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 @04$FF!FF>@00 red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 @04$FF!FF>@00 green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 @04$FF!FF>@00 yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 @04$FF!FF>@00 blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 $FF!FF>@00 magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 @04$FF!FF>@00 cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A @04$FF!FF>@00 white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b =s bright blue fg :$5E 9@044 $FF;@00END____________________________________________________________________________________s bright magenta fg :$5F 95 $FF;END____________________________________________________________________________________s bright cyan fg :$60 96 $FF;END____________________________________________________________________________________s bright white fg :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 @04$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 @04$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 @04$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 @04$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 @04$FF!FF>@00a :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 @04$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 @04$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 @04$FF!FF>@00 black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 @04$FF!FF>@00 red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 @04$FF!FF>@00 green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 @04$FF!FF>@00 yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 @04$FF!FF>@00 blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 $FF!FF>@00 magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 @04$FF!FF>@00 cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A @04$FF!FF>@00 white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =s bright blue fg :$5E 9@044 $FF;@00END____________________________________________________________________________________s bright magenta fg :$5F 95 $FF;END____________________________________________________________________________________s bright cyan fg :$60 96 $FF;END____________________________________________________________________________________s bright white fg :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 @04$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 @04$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 @04$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 @04$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 @04$FF!FF>@00a :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 @04$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 @04$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 @04$FF!FF>@00 black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 @04$FF!FF>@00 red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 @04$FF!FF>@00 green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 @04$FF!FF>@00 yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 @04$FF!FF>@00 blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 $FF!FF>@00 magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 @04$FF!FF>@00 cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A @04$FF!FF>@00 white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B @04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = bright blue fg :$5E 9@044 $FF;@00END_____________________________________________________________________________________ bright magenta fg :$5F 95 $FF;END_____________________________________________________________________________________ bright cyan fg :$60 96 $FF;END_____________________________________________________________________________________ bright white fg :$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 9@04$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 9@04$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 9@04$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 9@04$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 9@04$FF!FF>@00 :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 9@04$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 9@04$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 9@04$FF!FF>@00black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9@04$FF!FF>@00red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9@04$FF!FF>@00green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9@04$FF!FF>@00yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9@04$FF!FF>@00blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 @009@04$FF!FF>@00magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9@04$FF!FF>@00cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9@04$FF!FF>@00white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b = bright blue fg :$5E 9@044 $FF;@00END_____________________________________________________________________________________ bright magenta fg :$5F 95 $FF;END_____________________________________________________________________________________ bright cyan fg :$60 96 $FF;END_____________________________________________________________________________________ bright white fg :$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 9@04$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 9@04$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 9@04$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 9@04$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 9@04$FF!FF>@00 :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 9@04$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 9@04$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 9@04$FF!FF>@00black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9@04$FF!FF>@00red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9@04$FF!FF>@00green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9@04$FF!FF>@00yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9@04$FF!FF>@00blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 @009@04$FF!FF>@00magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9@04$FF!FF>@00cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9@04$FF!FF>@00white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = bright blue fg :$5E 9@044 $FF;@00END_____________________________________________________________________________________ bright magenta fg :$5F 95 $FF;END_____________________________________________________________________________________ bright cyan fg :$60 96 $FF;END_____________________________________________________________________________________ bright white fg :$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 9@04$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 9@04$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 9@04$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 9@04$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 9@04$FF!FF>@00 :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 9@04$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 9@04$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 9@04$FF!FF>@00black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9@04$FF!FF>@00red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9@04$FF!FF>@00green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9@04$FF!FF>@00yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9@04$FF!FF>@00blue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 @009@04$FF!FF>@00magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9@04$FF!FF>@00cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9@04$FF!FF>@00white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9@04$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =bright blue fg :$5E 9@044 $FF;@00END______________________________________________________________________________________bright magenta fg :$5F 95 $FF;END______________________________________________________________________________________bright cyan fg :$60 96 $FF;END______________________________________________________________________________________bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 9@044$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 9@044$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 9@044$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 9@044$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 9@044$FF!FF>@00 :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 9@044$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 9@044$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 9@044$FF!FF>@00lack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9@044$FF!FF>@00ed :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9@044$FF!FF>@00reen :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9@044$FF!FF>@00ellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9@044$FF!FF>@00lue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 @009@044$FF!FF>@00agenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9@044$FF!FF>@00yan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9@044$FF!FF>@00hite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9@044$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +1b =bright blue fg :$5E 9@044 $FF;@00END______________________________________________________________________________________bright magenta fg :$5F 95 $FF;END______________________________________________________________________________________bright cyan fg :$60 96 $FF;END______________________________________________________________________________________bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 9@044$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 9@044$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 9@044$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 9@044$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 9@044$FF!FF>@00 :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 9@044$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 9@044$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 9@044$FF!FF>@00lack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9@044$FF!FF>@00ed :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9@044$FF!FF>@00reen :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9@044$FF!FF>@00ellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9@044$FF!FF>@00lue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 @009@044$FF!FF>@00agenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9@044$FF!FF>@00yan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9@044$FF!FF>@00hite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9@044$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =bright blue fg :$5E 9@044 $FF;@00END______________________________________________________________________________________bright magenta fg :$5F 95 $FF;END______________________________________________________________________________________bright cyan fg :$60 96 $FF;END______________________________________________________________________________________bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 9@044$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 9@044$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 9@044$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 9@044$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 9@044$FF!FF>@00 :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 9@044$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 9@044$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 9@044$FF!FF>@00lack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9@044$FF!FF>@00ed :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9@044$FF!FF>@00reen :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9@044$FF!FF>@00ellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9@044$FF!FF>@00lue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 @009@044$FF!FF>@00agenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9@044$FF!FF>@00yan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9@044$FF!FF>@00hite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9@044$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =right blue fg :$5E 9@044 $FF;@00END_______________________________________________________________________________________right magenta fg :$5F 95 $FF;END_______________________________________________________________________________________right cyan fg :$60 96 $FF;END_______________________________________________________________________________________right white fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 9@044/$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 9@044/$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 9@044/$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 9@044/$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 9@044/$FF!FF>@00 :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 9@044/$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 9@044/$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 9@044/$FF!FF>@00ack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9@044/$FF!FF>@00d :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9@044/$FF!FF>@00een :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9@044/$FF!FF>@00llow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9@044/$FF!FF>@00ue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 @009@044/$FF!FF>@00genta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9@044/$FF!FF>@00an :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9@044/$FF!FF>@00ite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9@044/$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________________________________________ +2d =right blue fg :$5E 9@044 $FF;@00END_______________________________________________________________________________________right magenta fg :$5F 95 $FF;END_______________________________________________________________________________________right cyan fg :$60 96 $FF;END_______________________________________________________________________________________right white fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 9@044/$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 9@044/$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 9@044/$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 9@044/$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 9@044/$FF!FF>@00 :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 9@044/$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 9@044/$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 9@044/$FF!FF>@00ack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9@044/$FF!FF>@00d :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9@044/$FF!FF>@00een :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9@044/$FF!FF>@00llow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9@044/$FF!FF>@00ue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 @009@044/$FF!FF>@00genta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9@044/$FF!FF>@00an :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9@044/$FF!FF>@00ite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9@044/$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________-#______________________________________________________________________________________________________________________________________ +2d =right blue fg :$5E 9@044 $FF;@00END_______________________________________________________________________________________right magenta fg :$5F 95 $FF;END_______________________________________________________________________________________right cyan fg :$60 96 $FF;END_______________________________________________________________________________________right white fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 9@044/$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 9@044/$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 9@044/$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 9@044/$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 9@044/$FF!FF>@00 :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 9@044/$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 9@044/$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 9@044/$FF!FF>@00ack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9@044/$FF!FF>@00d :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9@044/$FF!FF>@00een :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9@044/$FF!FF>@00llow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9@044/$FF!FF>@00ue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 @009@044/$FF!FF>@00genta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9@044/$FF!FF>@00an :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9@044/$FF!FF>@00ite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9@044/$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________--#_____________________________________________________________________________________________________________________________________ +75 =right blue fg :$5E 9@044 $FF;@00END_______________________________________________________________________________________right magenta fg :$5F 95 $FF;END_______________________________________________________________________________________right cyan fg :$60 96 $FF;END_______________________________________________________________________________________right white fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 9@044/$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 9@044/$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 9@044/$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 9@044/$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 9@044/$FF!FF>@00 :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 9@044/$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 9@044/$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 9@044/$FF!FF>@00ack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9@044/$FF!FF>@00d :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9@044/$FF!FF>@00een :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9@044/$FF!FF>@00llow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9@044/$FF!FF>@00ue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 @009@044/$FF!FF>@00genta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9@044/$FF!FF>@00an :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9@044/$FF!FF>@00ite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9@044/$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________--u#____________________________________________________________________________________________________________________________________ +73 =right blue fg :$5E 9@044 $FF;@00END_______________________________________________________________________________________right magenta fg :$5F 95 $FF;END_______________________________________________________________________________________right cyan fg :$60 96 $FF;END_______________________________________________________________________________________right white fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 9@044/$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 9@044/$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 9@044/$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 9@044/$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 9@044/$FF!FF>@00 :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 9@044/$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 9@044/$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 9@044/$FF!FF>@00ack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9@044/$FF!FF>@00d :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9@044/$FF!FF>@00een :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9@044/$FF!FF>@00llow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9@044/$FF!FF>@00ue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 @009@044/$FF!FF>@00genta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9@044/$FF!FF>@00an :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9@044/$FF!FF>@00ite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9@044/$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________--us#___________________________________________________________________________________________________________________________________ +65 =right blue fg :$5E 9@044 $FF;@00END_______________________________________________________________________________________right magenta fg :$5F 95 $FF;END_______________________________________________________________________________________right cyan fg :$60 96 $FF;END_______________________________________________________________________________________right white fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 9@044/$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 9@044/$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 9@044/$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 9@044/$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 9@044/$FF!FF>@00 :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 9@044/$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 9@044/$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 9@044/$FF!FF>@00ack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9@044/$FF!FF>@00d :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9@044/$FF!FF>@00een :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9@044/$FF!FF>@00llow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9@044/$FF!FF>@00ue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 @009@044/$FF!FF>@00genta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9@044/$FF!FF>@00an :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9@044/$FF!FF>@00ite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9@044/$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________--use#__________________________________________________________________________________________________________________________________ +2d =right blue fg :$5E 9@044 $FF;@00END_______________________________________________________________________________________right magenta fg :$5F 95 $FF;END_______________________________________________________________________________________right cyan fg :$60 96 $FF;END_______________________________________________________________________________________right white fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 9@044/$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 9@044/$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 9@044/$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 9@044/$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 9@044/$FF!FF>@00 :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 9@044/$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 9@044/$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 9@044/$FF!FF>@00ack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9@044/$FF!FF>@00d :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9@044/$FF!FF>@00een :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9@044/$FF!FF>@00llow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9@044/$FF!FF>@00ue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 @009@044/$FF!FF>@00genta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9@044/$FF!FF>@00an :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9@044/$FF!FF>@00ite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9@044/$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________--use-#_________________________________________________________________________________________________________________________________ +63 =right blue fg :$5E 9@044 $FF;@00END_______________________________________________________________________________________right magenta fg :$5F 95 $FF;END_______________________________________________________________________________________right cyan fg :$60 96 $FF;END_______________________________________________________________________________________right white fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 9@044/$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 9@044/$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 9@044/$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 9@044/$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 9@044/$FF!FF>@00 :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 9@044/$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 9@044/$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 9@044/$FF!FF>@00ack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9@044/$FF!FF>@00d :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9@044/$FF!FF>@00een :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9@044/$FF!FF>@00llow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9@044/$FF!FF>@00ue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 @009@044/$FF!FF>@00genta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9@044/$FF!FF>@00an :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9@044/$FF!FF>@00ite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9@044/$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________--use-color#____________________________________________________________________________________________________________________________ +a =right blue fg :$5E 9@044 $FF;@00END_______________________________________________________________________________________right magenta fg :$5F 95 $FF;END_______________________________________________________________________________________right cyan fg :$60 96 $FF;END_______________________________________________________________________________________right white fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ @0440 $FF!FF $1F!28 @00 31/ @0440 $FF!FF $20!28 @00 32/ @0440 $FF!FF $21!28 @00 33/ @0440 $FF!FF $22!28 @00 3@044/ 40@00 $FF!FF $23!28 35/ @0440 $FF!FF $24!28 @00 36/ @0440 $FF!FF $25!28 @00 37/ @0440 $FF!FF $5A!28 @00 90/ @0440 $FF!FF $5B!28 @00 91/ @0440 $FF!FF $5C!28 @00 92/ @0440 $FF!FF $5D!28 @00 93/ @0440 $FF!FF $5E!28 @00 9@044/$FF!FF>@00 :$1E!29 30/ @0441 $FF!FF $1F!29 @00 31/ @0441 $FF!FF $20!29 @00 32/ @0441 $FF!FF $21!29 @00 33/ @0441 $FF!FF $22!29 @00 3@044/ 41@00 $FF!FF $23!29 35/ @0441 $FF!FF $24!29 @00 36/ @0441 $FF!FF $25!29 @00 37/ @0441 $FF!FF $5A!29 @00 90/ @0441 $FF!FF $5B!29 @00 91/ @0441 $FF!FF $5C!29 @00 92/ @0441 $FF!FF $5D!29 @00 93/ @0441 $FF!FF $5E!29 @00 9@044/$FF!FF>@00 :$1E!2A 30/ @0442 $FF!FF $1F!2A @00 31/ @0442 $FF!FF $20!2A @00 32/ @0442 $FF!FF $21!2A @00 33/ @0442 $FF!FF $22!2A @00 3@044/ 42@00 $FF!FF $23!2A 35/ @0442 $FF!FF $24!2A @00 36/ @0442 $FF!FF $25!2A @00 37/ @0442 $FF!FF $5A!2A @00 90/ @0442 $FF!FF $5B!2A @00 91/ @0442 $FF!FF $5C!2A @00 92/ @0442 $FF!FF $5D!2A @00 93/ @0442 $FF!FF $5E!2A @00 9@044/$FF!FF>@00 :$1E!2B 30/ @0443 $FF!FF $1F!2B @00 31/ @0443 $FF!FF $20!2B @00 32/ @0443 $FF!FF $21!2B @00 33/ @0443 $FF!FF $22!2B @00 3@044/ 43@00 $FF!FF $23!2B 35/ @0443 $FF!FF $24!2B @00 36/ @0443 $FF!FF $25!2B @00 37/ @0443 $FF!FF $5A!2B @00 90/ @0443 $FF!FF $5B!2B @00 91/ @0443 $FF!FF $5C!2B @00 92/ @0443 $FF!FF $5D!2B @00 93/ @0443 $FF!FF $5E!2B @00 9@044/$FF!FF>@00 :$1E!2C 30/ @0444 $FF!FF $1F!2C @00 31/ @0444 $FF!FF $20!2C @00 32/ @0444 $FF!FF $21!2C @00 33/ @0444 $FF!FF $22!2C @00 3@044/ 44@00 $FF!FF $23!2C 35/ @0444 $FF!FF $24!2C @00 36/ @0444 $FF!FF $25!2C @00 37/ @0444 $FF!FF $5A!2C @00 90/ @0444 $FF!FF $5B!2C @00 91/ @0444 $FF!FF $5C!2C @00 92/ @0444 $FF!FF $5D!2C @00 93/ @0444 $FF!FF $5E!2C @00 9@044/$FF!FF>@00 :$1E!2D 30/ @0445 $FF!FF $1F!2D @00 31/ @0445 $FF!FF $20!2D @00 32/ @0445 $FF!FF $21!2D @00 33/ @0445 $FF!FF $22!2D @00 3@044/ 45@00 $FF!FF $23!2D 35/ @0445 $FF!FF $24!2D @00 36/ @0445 $FF!FF $25!2D @00 37/ @0445 $FF!FF $5A!2D @00 90/ @0445 $FF!FF $5B!2D @00 91/ @0445 $FF!FF $5C!2D @00 92/ @0445 $FF!FF $5D!2D @00 93/ @0445 $FF!FF $5E!2D @00 9@044/$FF!FF>@00 :$1E!2E 30/ @0446 $FF!FF $1F!2E @00 31/ @0446 $FF!FF $20!2E @00 32/ @0446 $FF!FF $21!2E @00 33/ @0446 $FF!FF $22!2E @00 3@044/ 46@00 $FF!FF $23!2E 35/ @0446 $FF!FF $24!2E @00 36/ @0446 $FF!FF $25!2E @00 37/ @0446 $FF!FF $5A!2E @00 90/ @0446 $FF!FF $5B!2E @00 91/ @0446 $FF!FF $5C!2E @00 92/ @0446 $FF!FF $5D!2E @00 93/ @0446 $FF!FF $5E!2E @00 9@044/$FF!FF>@00 :$1E!2F 30/ @0447 $FF!FF $1F!2F @00 31/ @0447 $FF!FF $20!2F @00 32/ @0447 $FF!FF $21!2F @00 33/ @0447 $FF!FF $22!2F @00 3@044/ 47@00 $FF!FF $23!2F 35/ @0447 $FF!FF $24!2F @00 36/ @0447 $FF!FF $25!2F @00 37/ @0447 $FF!FF $5A!2F @00 90/ @0447 $FF!FF $5B!2F @00 91/ @0447 $FF!FF $5C!2F @00 92/ @0447 $FF!FF $5D!2F @00 93/ @0447 $FF!FF $5E!2F @00 9@044/$FF!FF>@00ack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3@044/100@00 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9@044/$FF!FF>@00d :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3@044/101@00 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9@044/$FF!FF>@00een :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3@044/102@00 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9@044/$FF!FF>@00llow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3@044/103@00 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9@044/$FF!FF>@00ue :$1E!68 30/10@044 $FF!FF $1F!68 @0031/10@044 $FF!FF $20!68 @0032/10@044 $FF!FF $21!68 @0033/10@044 $FF!FF $22!68 @003@044/104@00 $FF!FF $23!68 35/10@044 $FF!FF $24!68 @0036/10@044 $FF!FF $25!68 @0037/10@044 $FF!FF $5A!68 @0090/10@044 $FF!FF $5B!68 @0091/10@044 $FF!FF $5C!68 @0092/10@044 $FF!FF $5D!68 @0093/10@044 $FF!FF $5E!68 @009@044/$FF!FF>@00genta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3@044/105@00 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9@044/$FF!FF>@00an :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3@044/106@00 $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9@044/$FF!FF>@00ite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3@044/107@00 $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9@044/$FF!FF>@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!67Use color (press RETURN)$FF!FF#______________________________________________________________________________________________________________ +a =right blue fg :$5E 9$1E!664 ;$FF!FFEND_______________________________________________________________________________________right magenta fg :$5F 95 $FF;END_______________________________________________________________________________________right cyan fg :$60 96 $FF;END_______________________________________________________________________________________right white fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/!2E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/!2E>$FF!FFack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/!2E>$FF!FFd :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/!2E>$FF!FFeen :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/!2E>$FF!FFllow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/!2E>$FF!FFue :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/!2E>$FF!FFgenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/!2E>$FF!FFan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/!2E>$FF!FFite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b =right blue fg :$5E 9$1E!664 ;$FF!FFEND_______________________________________________________________________________________right magenta fg :$5F 95 $FF;END_______________________________________________________________________________________right cyan fg :$60 96 $FF;END_______________________________________________________________________________________right white fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/!2E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/!2E>$FF!FFack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/!2E>$FF!FFd :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/!2E>$FF!FFeen :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/!2E>$FF!FFllow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/!2E>$FF!FFue :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/!2E>$FF!FFgenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/!2E>$FF!FFan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/!2E>$FF!FFite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =right blue fg :$5E 9$1E!664 ;$FF!FFEND_______________________________________________________________________________________right magenta fg :$5F 95 $FF;END_______________________________________________________________________________________right cyan fg :$60 96 $FF;END_______________________________________________________________________________________right white fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/!2E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/!2E>$FF!FFack :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/!2E>$FF!FFd :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/!2E>$FF!FFeen :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/!2E>$FF!FFllow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/!2E>$FF!FFue :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/!2E>$FF!FFgenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/!2E>$FF!FFan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/!2E>$FF!FFite :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =ight blue fg :$5E 9$1E!664 ;$FF!FFEND________________________________________________________________________________________ight magenta fg :$5F 95 $FF;END________________________________________________________________________________________ight cyan fg :$60 96 $FF;END________________________________________________________________________________________ight white fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ !2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ !2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ !2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ !2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ !2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ !2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ !2E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ !2E>$FF!FFck :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/1!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/1!2E>$FF!FFen :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/1!2E>$FF!FFlow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/1!2E>$FF!FFe :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/1!2E>$FF!FFenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/1!2E>$FF!FFn :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/1!2E>$FF!FFte :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/1!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b =ight blue fg :$5E 9$1E!664 ;$FF!FFEND________________________________________________________________________________________ight magenta fg :$5F 95 $FF;END________________________________________________________________________________________ight cyan fg :$60 96 $FF;END________________________________________________________________________________________ight white fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ !2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ !2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ !2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ !2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ !2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ !2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ !2E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ !2E>$FF!FFck :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/1!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/1!2E>$FF!FFen :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/1!2E>$FF!FFlow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/1!2E>$FF!FFe :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/1!2E>$FF!FFenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/1!2E>$FF!FFn :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/1!2E>$FF!FFte :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/1!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =ight blue fg :$5E 9$1E!664 ;$FF!FFEND________________________________________________________________________________________ight magenta fg :$5F 95 $FF;END________________________________________________________________________________________ight cyan fg :$60 96 $FF;END________________________________________________________________________________________ight white fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ !2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ !2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ !2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ !2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ !2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ !2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ !2E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ !2E>$FF!FFck :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/1!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/1!2E>$FF!FFen :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/1!2E>$FF!FFlow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/1!2E>$FF!FFe :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/1!2E>$FF!FFenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/1!2E>$FF!FFn :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/1!2E>$FF!FFte :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/1!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =ght blue fg :$5E 9$1E!664 ;$FF!FFEND_________________________________________________________________________________________ght magenta fg :$5F 95 $FF;END_________________________________________________________________________________________ght cyan fg :$60 96 $FF;END_________________________________________________________________________________________ght white fg :$61 97 $FF;END_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 4!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 4!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 4!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 4!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 4!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 4!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 4!2E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 4!2E>$FF!FFk :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/10!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/10!2E>$FF!FFn :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/10!2E>$FF!FFow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/10!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/10!2E>$FF!FFnta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/10!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/10!2E>$FF!FFe :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/10!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b =ght blue fg :$5E 9$1E!664 ;$FF!FFEND_________________________________________________________________________________________ght magenta fg :$5F 95 $FF;END_________________________________________________________________________________________ght cyan fg :$60 96 $FF;END_________________________________________________________________________________________ght white fg :$61 97 $FF;END_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 4!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 4!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 4!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 4!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 4!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 4!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 4!2E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 4!2E>$FF!FFk :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/10!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/10!2E>$FF!FFn :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/10!2E>$FF!FFow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/10!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/10!2E>$FF!FFnta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/10!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/10!2E>$FF!FFe :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/10!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =ght blue fg :$5E 9$1E!664 ;$FF!FFEND_________________________________________________________________________________________ght magenta fg :$5F 95 $FF;END_________________________________________________________________________________________ght cyan fg :$60 96 $FF;END_________________________________________________________________________________________ght white fg :$61 97 $FF;END_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 4!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 4!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 4!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 4!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 4!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 4!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 4!2E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 4!2E>$FF!FFk :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/10!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/10!2E>$FF!FFn :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/10!2E>$FF!FFow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/10!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/10!2E>$FF!FFnta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/10!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/10!2E>$FF!FFe :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/10!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =ht blue fg :$5E 9$1E!664 ;$FF!FFEND__________________________________________________________________________________________ht magenta fg :$5F 95 $FF;END__________________________________________________________________________________________ht cyan fg :$60 96 $FF;END__________________________________________________________________________________________ht white fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46!2E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47!2E>$FF!FF :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101!2E>$FF!FF :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102!2E>$FF!FFw :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104!2E>$FF!FFta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106!2E>$FF!FF :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b =ht blue fg :$5E 9$1E!664 ;$FF!FFEND__________________________________________________________________________________________ht magenta fg :$5F 95 $FF;END__________________________________________________________________________________________ht cyan fg :$60 96 $FF;END__________________________________________________________________________________________ht white fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46!2E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47!2E>$FF!FF :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101!2E>$FF!FF :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102!2E>$FF!FFw :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104!2E>$FF!FFta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106!2E>$FF!FF :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =ht blue fg :$5E 9$1E!664 ;$FF!FFEND__________________________________________________________________________________________ht magenta fg :$5F 95 $FF;END__________________________________________________________________________________________ht cyan fg :$60 96 $FF;END__________________________________________________________________________________________ht white fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46!2E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47!2E>$FF!FF :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101!2E>$FF!FF :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102!2E>$FF!FFw :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104!2E>$FF!FFta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106!2E>$FF!FF :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =t blue fg :$5E 9$1E!664 ;$FF!FFEND___________________________________________________________________________________________t magenta fg :$5F 95 $FF;END___________________________________________________________________________________________t cyan fg :$60 96 $FF;END___________________________________________________________________________________________t white fg :$61 97 $FF;END_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $1E!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $1E!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $1E!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $1E!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $1E!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $1E!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $1E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $1E!2E>$FF!FF :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $1E!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $1E!2E>$FF!FF :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $1E!2E>$FF!FF :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $1E!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $1E!2E>$FF!FFa :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $1E!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $1E!2E>$FF!FF :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b =t blue fg :$5E 9$1E!664 ;$FF!FFEND___________________________________________________________________________________________t magenta fg :$5F 95 $FF;END___________________________________________________________________________________________t cyan fg :$60 96 $FF;END___________________________________________________________________________________________t white fg :$61 97 $FF;END_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $1E!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $1E!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $1E!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $1E!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $1E!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $1E!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $1E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $1E!2E>$FF!FF :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $1E!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $1E!2E>$FF!FF :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $1E!2E>$FF!FF :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $1E!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $1E!2E>$FF!FFa :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $1E!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $1E!2E>$FF!FF :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =t blue fg :$5E 9$1E!664 ;$FF!FFEND___________________________________________________________________________________________t magenta fg :$5F 95 $FF;END___________________________________________________________________________________________t cyan fg :$60 96 $FF;END___________________________________________________________________________________________t white fg :$61 97 $FF;END_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $1E!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $1E!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $1E!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $1E!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $1E!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $1E!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $1E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $1E!2E>$FF!FF :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $1E!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $1E!2E>$FF!FF :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $1E!2E>$FF!FF :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $1E!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $1E!2E>$FF!FFa :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $1E!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $1E!2E>$FF!FF :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = blue fg :$5E 9$1E!664 ;$FF!FFEND____________________________________________________________________________________________ magenta fg :$5F 95 $FF;END____________________________________________________________________________________________ cyan fg :$60 96 $FF;END____________________________________________________________________________________________ white fg :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $1E!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $1E!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $1E!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $1E!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $1E!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $1E!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $1E!2E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $1E!2E>$FF!FF :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $1E!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $1E!2E>$FF!FF :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $1E!2E>$FF!FF :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $1E!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $1E!2E>$FF!FF :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $1E!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $1E!2E>$FF!FF :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b = blue fg :$5E 9$1E!664 ;$FF!FFEND____________________________________________________________________________________________ magenta fg :$5F 95 $FF;END____________________________________________________________________________________________ cyan fg :$60 96 $FF;END____________________________________________________________________________________________ white fg :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $1E!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $1E!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $1E!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $1E!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $1E!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $1E!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $1E!2E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $1E!2E>$FF!FF :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $1E!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $1E!2E>$FF!FF :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $1E!2E>$FF!FF :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $1E!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $1E!2E>$FF!FF :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $1E!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $1E!2E>$FF!FF :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = blue fg :$5E 9$1E!664 ;$FF!FFEND____________________________________________________________________________________________ magenta fg :$5F 95 $FF;END____________________________________________________________________________________________ cyan fg :$60 96 $FF;END____________________________________________________________________________________________ white fg :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $1E!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $1E!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $1E!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $1E!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $1E!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $1E!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $1E!2E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $1E!2E>$FF!FF :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $1E!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $1E!2E>$FF!FF :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $1E!2E>$FF!FF :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $1E!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $1E!2E>$FF!FF :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $1E!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $1E!2E>$FF!FF :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =blue fg :$5E 9$1E!664 ;$FF!FFEND_____________________________________________________________________________________________magenta fg :$5F 95 $FF;END_____________________________________________________________________________________________cyan fg :$60 96 $FF;END_____________________________________________________________________________________________white fg :$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 $1E!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 $1E!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A $1E!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B $1E!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C $1E!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D $1E!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E $1E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F $1E!2E>$FF!FF :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 $1E!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 $1E!2E>$FF!FF :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 $1E!2E>$FF!FF :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 $1E!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 $1E!2E>$FF!FF :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 $1E!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A $1E!2E>$FF!FF :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b =blue fg :$5E 9$1E!664 ;$FF!FFEND_____________________________________________________________________________________________magenta fg :$5F 95 $FF;END_____________________________________________________________________________________________cyan fg :$60 96 $FF;END_____________________________________________________________________________________________white fg :$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 $1E!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 $1E!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A $1E!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B $1E!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C $1E!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D $1E!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E $1E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F $1E!2E>$FF!FF :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 $1E!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 $1E!2E>$FF!FF :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 $1E!2E>$FF!FF :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 $1E!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 $1E!2E>$FF!FF :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 $1E!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A $1E!2E>$FF!FF :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =blue fg :$5E 9$1E!664 ;$FF!FFEND_____________________________________________________________________________________________magenta fg :$5F 95 $FF;END_____________________________________________________________________________________________cyan fg :$60 96 $FF;END_____________________________________________________________________________________________white fg :$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 $1E!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 $1E!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A $1E!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B $1E!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C $1E!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D $1E!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E $1E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F $1E!2E>$FF!FF :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 $1E!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 $1E!2E>$FF!FF :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 $1E!2E>$FF!FF :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 $1E!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 $1E!2E>$FF!FF :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 $1E!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A $1E!2E>$FF!FF :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =lue fg :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________________________agenta fg :$5F 95 $FF;END______________________________________________________________________________________________yan fg :$60 96 $FF;END______________________________________________________________________________________________hite fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 $1E!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 $1E!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A $1E!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B $1E!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C $1E!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D $1E!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E $1E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F $1E!2E>$FF!FF :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 $1E!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 $1E!2E>$FF!FF :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 $1E!2E>$FF!FF :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 $1E!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 $1E!2E>$FF!FF :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 $1E!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A $1E!2E>$FF!FF :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b =lue fg :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________________________agenta fg :$5F 95 $FF;END______________________________________________________________________________________________yan fg :$60 96 $FF;END______________________________________________________________________________________________hite fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 $1E!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 $1E!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A $1E!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B $1E!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C $1E!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D $1E!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E $1E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F $1E!2E>$FF!FF :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 $1E!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 $1E!2E>$FF!FF :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 $1E!2E>$FF!FF :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 $1E!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 $1E!2E>$FF!FF :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 $1E!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A $1E!2E>$FF!FF :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =lue fg :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________________________agenta fg :$5F 95 $FF;END______________________________________________________________________________________________yan fg :$60 96 $FF;END______________________________________________________________________________________________hite fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 $1E!2E>$FF!FF :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 $1E!2E>$FF!FF :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A $1E!2E>$FF!FF :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B $1E!2E>$FF!FF :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C $1E!2E>$FF!FF :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D $1E!2E>$FF!FF :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E $1E>$FF!FF :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F $1E!2E>$FF!FF :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 $1E!2E>$FF!FF :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 $1E!2E>$FF!FF :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 $1E!2E>$FF!FF :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 $1E!2E>$FF!FF :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 $1E!2E>$FF!FF :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 $1E!2E>$FF!FF :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A $1E!2E>$FF!FF :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =ue fg :$5E 9$1E!664 ;$FF!FFEND_______________________________________________________________________________________________genta fg :$5F 95 $FF;END_______________________________________________________________________________________________an fg :$60 96 $FF;END_______________________________________________________________________________________________ite fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________:$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 9$1E!2E>$FF!FF:$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 9$1E!2E>$FF!FF:$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 9$1E!2E>$FF!FF:$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 9$1E!2E>$FF!FF:$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 9$1E!2E>$FF!FF:$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 9$1E!2E>$FF!FF:$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 9$1E>$FF!FF:$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 9$1E!2E>$FF!FF:$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 9$1E!2E>$FF!FF:$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 9$1E!2E>$FF!FF:$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 9$1E!2E>$FF!FF:$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 9$1E!2E>$FF!FF:$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 9$1E!2E>$FF!FF:$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 9$1E!2E>$FF!FF:$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 9$1E!2E>$FF!FF:$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 9$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b =ue fg :$5E 9$1E!664 ;$FF!FFEND_______________________________________________________________________________________________genta fg :$5F 95 $FF;END_______________________________________________________________________________________________an fg :$60 96 $FF;END_______________________________________________________________________________________________ite fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________:$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 9$1E!2E>$FF!FF:$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 9$1E!2E>$FF!FF:$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 9$1E!2E>$FF!FF:$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 9$1E!2E>$FF!FF:$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 9$1E!2E>$FF!FF:$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 9$1E!2E>$FF!FF:$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 9$1E>$FF!FF:$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 9$1E!2E>$FF!FF:$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 9$1E!2E>$FF!FF:$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 9$1E!2E>$FF!FF:$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 9$1E!2E>$FF!FF:$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 9$1E!2E>$FF!FF:$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 9$1E!2E>$FF!FF:$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 9$1E!2E>$FF!FF:$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 9$1E!2E>$FF!FF:$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 9$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =ue fg :$5E 9$1E!664 ;$FF!FFEND_______________________________________________________________________________________________genta fg :$5F 95 $FF;END_______________________________________________________________________________________________an fg :$60 96 $FF;END_______________________________________________________________________________________________ite fg :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________:$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 9$1E!2E>$FF!FF:$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 9$1E!2E>$FF!FF:$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 9$1E!2E>$FF!FF:$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 9$1E!2E>$FF!FF:$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 9$1E!2E>$FF!FF:$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 9$1E!2E>$FF!FF:$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 9$1E>$FF!FF:$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 9$1E!2E>$FF!FF:$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 9$1E!2E>$FF!FF:$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 9$1E!2E>$FF!FF:$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 9$1E!2E>$FF!FF:$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 9$1E!2E>$FF!FF:$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 9$1E!2E>$FF!FF:$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 9$1E!2E>$FF!FF:$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 9$1E!2E>$FF!FF:$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 9$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =e fg :$5E 9$1E!664 ;$FF!FFEND________________________________________________________________________________________________enta fg :$5F 95 $FF;END________________________________________________________________________________________________n fg :$60 96 $FF;END________________________________________________________________________________________________te fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95$1E!2E>!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95$1E!2E>!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95$1E!2E>!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95$1E!2E>!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95$1E!2E>!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95$1E!2E> 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95$1E>!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95$1E!2E>!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95$1E!2E>!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95$1E!2E>!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95$1E!2E>!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95$1E!2E>!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95$1E!2E>!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95$1E!2E>!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95$1E!2E>!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b =e fg :$5E 9$1E!664 ;$FF!FFEND________________________________________________________________________________________________enta fg :$5F 95 $FF;END________________________________________________________________________________________________n fg :$60 96 $FF;END________________________________________________________________________________________________te fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95$1E!2E>!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95$1E!2E>!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95$1E!2E>!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95$1E!2E>!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95$1E!2E>!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95$1E!2E> 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95$1E>!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95$1E!2E>!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95$1E!2E>!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95$1E!2E>!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95$1E!2E>!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95$1E!2E>!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95$1E!2E>!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95$1E!2E>!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95$1E!2E>!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =e fg :$5E 9$1E!664 ;$FF!FFEND________________________________________________________________________________________________enta fg :$5F 95 $FF;END________________________________________________________________________________________________n fg :$60 96 $FF;END________________________________________________________________________________________________te fg :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95$1E!2E>!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95$1E!2E>!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95$1E!2E>!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95$1E!2E>!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95$1E!2E>!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95$1E!2E> 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95$1E>!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95$1E!2E>!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95$1E!2E>!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95$1E!2E>!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95$1E!2E>!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95$1E!2E>!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95$1E!2E>!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95$1E!2E>!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95$1E!2E>!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = fg :$5E 9$1E!664 ;$FF!FFEND_________________________________________________________________________________________________nta fg :$5F 95 $FF;END_________________________________________________________________________________________________ fg :$60 96 $FF;END_________________________________________________________________________________________________e fg :$61 97 $FF;END_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/$1E!2E>!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/$1E!2E>!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/$1E!2E>!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/$1E!2E>!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/$1E!2E>!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/$1E!2E> 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/$1E>!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/$1E!2E>!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/$1E!2E>!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/$1E!2E>!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/$1E!2E>!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/$1E!2E>!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/$1E!2E>!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/$1E!2E>!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/$1E!2E>!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b = fg :$5E 9$1E!664 ;$FF!FFEND_________________________________________________________________________________________________nta fg :$5F 95 $FF;END_________________________________________________________________________________________________ fg :$60 96 $FF;END_________________________________________________________________________________________________e fg :$61 97 $FF;END_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/$1E!2E>!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/$1E!2E>!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/$1E!2E>!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/$1E!2E>!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/$1E!2E>!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/$1E!2E> 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/$1E>!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/$1E!2E>!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/$1E!2E>!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/$1E!2E>!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/$1E!2E>!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/$1E!2E>!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/$1E!2E>!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/$1E!2E>!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/$1E!2E>!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = fg :$5E 9$1E!664 ;$FF!FFEND_________________________________________________________________________________________________nta fg :$5F 95 $FF;END_________________________________________________________________________________________________ fg :$60 96 $FF;END_________________________________________________________________________________________________e fg :$61 97 $FF;END_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/$1E!2E>!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/$1E!2E>!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/$1E!2E>!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/$1E!2E>!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/$1E!2E>!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/$1E!2E> 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/$1E>!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/$1E!2E>!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/$1E!2E>!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/$1E!2E>!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/$1E!2E>!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/$1E!2E>!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/$1E!2E>!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/$1E!2E>!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/$1E!2E>!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =fg :$5E 9$1E!664 ;$FF!FFEND__________________________________________________________________________________________________ta fg :$5F 95 $FF;END__________________________________________________________________________________________________fg :$60 96 $FF;END__________________________________________________________________________________________________ fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!2830/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!2E>!2930/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!2E>!2A30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!2E>!2B30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!2E>!2C30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!2E>!2D30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!2E>30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E>!2F30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!2E>!6430/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/1$1E!2E>!6530/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/1$1E!2E>!6630/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/1$1E!2E>!6730/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/1$1E!2E>!6830/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/1$1E!2E>!6930/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/1$1E!2E>!6A30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/1$1E!2E>!6B30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/1$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b =fg :$5E 9$1E!664 ;$FF!FFEND__________________________________________________________________________________________________ta fg :$5F 95 $FF;END__________________________________________________________________________________________________fg :$60 96 $FF;END__________________________________________________________________________________________________ fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!2830/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!2E>!2930/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!2E>!2A30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!2E>!2B30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!2E>!2C30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!2E>!2D30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!2E>30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E>!2F30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!2E>!6430/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/1$1E!2E>!6530/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/1$1E!2E>!6630/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/1$1E!2E>!6730/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/1$1E!2E>!6830/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/1$1E!2E>!6930/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/1$1E!2E>!6A30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/1$1E!2E>!6B30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/1$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =fg :$5E 9$1E!664 ;$FF!FFEND__________________________________________________________________________________________________ta fg :$5F 95 $FF;END__________________________________________________________________________________________________fg :$60 96 $FF;END__________________________________________________________________________________________________ fg :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!2830/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!2E>!2930/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!2E>!2A30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!2E>!2B30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!2E>!2C30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!2E>!2D30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!2E>30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E>!2F30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!2E>!6430/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/1$1E!2E>!6530/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/1$1E!2E>!6630/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/1$1E!2E>!6730/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/1$1E!2E>!6830/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/1$1E!2E>!6930/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/1$1E!2E>!6A30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/1$1E!2E>!6B30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/1$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 =g :$5E 9$1E!664 ;$FF!FFEND___________________________________________________________________________________________________a fg :$5F 95 $FF;END___________________________________________________________________________________________________g :$60 96 $FF;END___________________________________________________________________________________________________fg :$61 97 $FF;END_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!280/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!664!2E>!290/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!664!2E>!2A0/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!664!2E>!2B0/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!664!2E>!2C0/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!664!2E>!2D0/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!664!2E>0/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!664!2E>!2F0/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!664!2E>!640/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/10$1E!2E>!650/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/10$1E!2E>!660/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/10$1E!2E>!670/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/10$1E!2E>!680/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!2E>!690/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/10$1E!2E>!6A0/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/10$1E!2E>!6B0/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/10$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b =g :$5E 9$1E!664 ;$FF!FFEND___________________________________________________________________________________________________a fg :$5F 95 $FF;END___________________________________________________________________________________________________g :$60 96 $FF;END___________________________________________________________________________________________________fg :$61 97 $FF;END_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!280/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!664!2E>!290/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!664!2E>!2A0/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!664!2E>!2B0/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!664!2E>!2C0/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!664!2E>!2D0/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!664!2E>0/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!664!2E>!2F0/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!664!2E>!640/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/10$1E!2E>!650/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/10$1E!2E>!660/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/10$1E!2E>!670/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/10$1E!2E>!680/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!2E>!690/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/10$1E!2E>!6A0/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/10$1E!2E>!6B0/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/10$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f =g :$5E 9$1E!664 ;$FF!FFEND___________________________________________________________________________________________________a fg :$5F 95 $FF;END___________________________________________________________________________________________________g :$60 96 $FF;END___________________________________________________________________________________________________fg :$61 97 $FF;END_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!280/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!664!2E>!290/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!664!2E>!2A0/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!664!2E>!2B0/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!664!2E>!2C0/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!664!2E>!2D0/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!664!2E>0/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!664!2E>!2F0/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!664!2E>!640/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/10$1E!2E>!650/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/10$1E!2E>!660/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/10$1E!2E>!670/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/10$1E!2E>!680/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!2E>!690/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/10$1E!2E>!6A0/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/10$1E!2E>!6B0/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/10$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$5E 9$1E!664 ;$FF!FFEND____________________________________________________________________________________________________ fg :$5F 95 $FF;END____________________________________________________________________________________________________ :$60 96 $FF;END____________________________________________________________________________________________________g :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640!2E>!29/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641!2E>!2A/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642!2E>!2B/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643!2E>!2C/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644!2E>!2D/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645!2E>/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646!2E>!2F/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647!2E>!64/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100$1E!2E>!65/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101$1E!2E>!66/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102$1E!2E>!67/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103$1E!2E>!68/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664!2E>!69/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105$1E!2E>!6A/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106$1E!2E>!6B/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b = :$5E 9$1E!664 ;$FF!FFEND____________________________________________________________________________________________________ fg :$5F 95 $FF;END____________________________________________________________________________________________________ :$60 96 $FF;END____________________________________________________________________________________________________g :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640!2E>!29/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641!2E>!2A/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642!2E>!2B/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643!2E>!2C/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644!2E>!2D/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645!2E>/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646!2E>!2F/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647!2E>!64/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100$1E!2E>!65/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101$1E!2E>!66/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102$1E!2E>!67/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103$1E!2E>!68/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664!2E>!69/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105$1E!2E>!6A/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106$1E!2E>!6B/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$5E 9$1E!664 ;$FF!FFEND____________________________________________________________________________________________________ fg :$5F 95 $FF;END____________________________________________________________________________________________________ :$60 96 $FF;END____________________________________________________________________________________________________g :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640!2E>!29/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641!2E>!2A/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642!2E>!2B/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643!2E>!2C/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644!2E>!2D/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645!2E>/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646!2E>!2F/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647!2E>!64/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100$1E!2E>!65/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101$1E!2E>!66/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102$1E!2E>!67/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103$1E!2E>!68/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664!2E>!69/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105$1E!2E>!6A/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106$1E!2E>!6B/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$5E 9$1E!664 ;$FF!FFEND_____________________________________________________________________________________________________fg :$5F 95 $FF;END_____________________________________________________________________________________________________ :$60 96 $FF;END_____________________________________________________________________________________________________ :$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28 !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 !2E>!29 !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 !2E>!2A !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 !2E>!2B !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 !2E>!2C !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 !2E>!2D !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 !2E> !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 !2E>!2F !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 !2E>!64100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $1E!2E>!65101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $1E!2E>!66102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $1E!2E>!67103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $1E!2E>!6810!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 !2E>!69105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $1E!2E>!6A106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $1E!2E>!6B107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b = :$5E 9$1E!664 ;$FF!FFEND_____________________________________________________________________________________________________fg :$5F 95 $FF;END_____________________________________________________________________________________________________ :$60 96 $FF;END_____________________________________________________________________________________________________ :$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28 !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 !2E>!29 !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 !2E>!2A !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 !2E>!2B !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 !2E>!2C !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 !2E>!2D !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 !2E> !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 !2E>!2F !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 !2E>!64100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $1E!2E>!65101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $1E!2E>!66102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $1E!2E>!67103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $1E!2E>!6810!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 !2E>!69105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $1E!2E>!6A106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $1E!2E>!6B107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$5E 9$1E!664 ;$FF!FFEND_____________________________________________________________________________________________________fg :$5F 95 $FF;END_____________________________________________________________________________________________________ :$60 96 $FF;END_____________________________________________________________________________________________________ :$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!28 !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 !2E>!29 !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 !2E>!2A !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 !2E>!2B !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 !2E>!2C !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 !2E>!2D !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 !2E> !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 !2E>!2F !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 !2E>!64100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $1E!2E>!65101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $1E!2E>!66102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $1E!2E>!67103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $1E!2E>!6810!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 !2E>!69105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $1E!2E>!6A106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $1E!2E>!6B107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________________________________g :$5F 95 $FF;END______________________________________________________________________________________________________ :$60 96 $FF;END______________________________________________________________________________________________________ :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 !2E>!6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 !2E>!6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 !2E>!6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 !2E>!6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 !2E>!6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 !2E>!6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 !2E>!6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 !2E>!6400 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $1E!2E>!6501 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $1E!2E>!6602 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $1E!2E>!6703 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $1E!2E>!680!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 !2E>!6905 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $1E!2E>!6A06 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $1E!2E>!6B07 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b = :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________________________________g :$5F 95 $FF;END______________________________________________________________________________________________________ :$60 96 $FF;END______________________________________________________________________________________________________ :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 !2E>!6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 !2E>!6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 !2E>!6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 !2E>!6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 !2E>!6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 !2E>!6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 !2E>!6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 !2E>!6400 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $1E!2E>!6501 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $1E!2E>!6602 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $1E!2E>!6703 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $1E!2E>!680!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 !2E>!6905 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $1E!2E>!6A06 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $1E!2E>!6B07 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________________________________g :$5F 95 $FF;END______________________________________________________________________________________________________ :$60 96 $FF;END______________________________________________________________________________________________________ :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 !2E>!6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 !2E>!6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 !2E>!6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 !2E>!6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 !2E>!6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 !2E>!6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 !2E>!6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 !2E>!6400 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $1E!2E>!6501 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $1E!2E>!6602 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $1E!2E>!6703 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $1E!2E>!680!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 !2E>!6905 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $1E!2E>!6A06 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $1E!2E>!6B07 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$5E 9$1E!664 ;$FF!FFEND_______________________________________________________________________________________________________ :$5F 95 $FF;END_______________________________________________________________________________________________________ :$60 96 $FF;END_______________________________________________________________________________________________________ :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!660 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 !2E>!661 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 !2E>!662 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 !2E>!663 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 !2E>!664 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 !2E>!665 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 !2E>!666 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 !2E>!667 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 !2E>!640 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 $1E!2E>!651 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 $1E!2E>!662 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 $1E!2E>!673 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 $1E!2E>!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 !2E>!695 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 $1E!2E>!6A6 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A $1E!2E>!6B7 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b = :$5E 9$1E!664 ;$FF!FFEND_______________________________________________________________________________________________________ :$5F 95 $FF;END_______________________________________________________________________________________________________ :$60 96 $FF;END_______________________________________________________________________________________________________ :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!660 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 !2E>!661 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 !2E>!662 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 !2E>!663 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 !2E>!664 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 !2E>!665 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 !2E>!666 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 !2E>!667 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 !2E>!640 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 $1E!2E>!651 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 $1E!2E>!662 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 $1E!2E>!673 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 $1E!2E>!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 !2E>!695 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 $1E!2E>!6A6 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A $1E!2E>!6B7 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$5E 9$1E!664 ;$FF!FFEND_______________________________________________________________________________________________________ :$5F 95 $FF;END_______________________________________________________________________________________________________ :$60 96 $FF;END_______________________________________________________________________________________________________ :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!660 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 !2E>!661 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 !2E>!662 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 !2E>!663 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 !2E>!664 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 !2E>!665 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 !2E>!666 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 !2E>!667 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 !2E>!640 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 $1E!2E>!651 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 $1E!2E>!662 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 $1E!2E>!673 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 $1E!2E>!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 !2E>!695 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 $1E!2E>!6A6 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A $1E!2E>!6B7 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$5E 9$1E!664 ;$FF!FFEND________________________________________________________________________________________________________ :$5F 95 $FF;END________________________________________________________________________________________________________ :$60 96 $FF;END________________________________________________________________________________________________________ :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!66 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 $1E!2E>!66 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 $1E!2E>!66 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A $1E!2E>!66 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B $1E!2E>!66 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C $1E!2E>!66 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D $1E!2E>!66 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E $1E>!66 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F $1E!2E>!64 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 $1E!2E>!65 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 $1E!2E>!66 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 $1E!2E>!67 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 $1E!2E>!66 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 !2E>!69 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 $1E!2E>!6A $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A $1E!2E>!6B $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b = :$5E 9$1E!664 ;$FF!FFEND________________________________________________________________________________________________________ :$5F 95 $FF;END________________________________________________________________________________________________________ :$60 96 $FF;END________________________________________________________________________________________________________ :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!66 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 $1E!2E>!66 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 $1E!2E>!66 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A $1E!2E>!66 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B $1E!2E>!66 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C $1E!2E>!66 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D $1E!2E>!66 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E $1E>!66 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F $1E!2E>!64 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 $1E!2E>!65 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 $1E!2E>!66 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 $1E!2E>!67 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 $1E!2E>!66 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 !2E>!69 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 $1E!2E>!6A $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A $1E!2E>!6B $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$5E 9$1E!664 ;$FF!FFEND________________________________________________________________________________________________________ :$5F 95 $FF;END________________________________________________________________________________________________________ :$60 96 $FF;END________________________________________________________________________________________________________ :$61 97 $FF;END______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!66 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 $1E!2E>!66 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 $1E!2E>!66 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A $1E!2E>!66 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B $1E!2E>!66 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C $1E!2E>!66 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D $1E!2E>!66 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E $1E>!66 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F $1E!2E>!64 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 $1E!2E>!65 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 $1E!2E>!66 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 $1E!2E>!67 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 $1E!2E>!66 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 !2E>!69 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 $1E!2E>!6A $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A $1E!2E>!6B $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$5E 9$1E!664 ;$FF!FFEND_________________________________________________________________________________________________________ :$5F 95 $FF;END_________________________________________________________________________________________________________ :$60 96 $FF;END_________________________________________________________________________________________________________ :$61 97 $FF;END_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!66 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 9$1E!2E>!66 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 9$1E!2E>!66 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 9$1E!2E>!66 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 9$1E!2E>!66 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 9$1E!2E>!66 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 9$1E!2E>!66 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 9$1E>!66 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 9$1E!2E>$FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 9$1E!2E>$FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 9$1E!2E>$FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 9$1E!2E>$FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 9$1E!2E>!66 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!689$1E!2E>$FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 9$1E!2E>$FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 9$1E!2E>$FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 9$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b = :$5E 9$1E!664 ;$FF!FFEND_________________________________________________________________________________________________________ :$5F 95 $FF;END_________________________________________________________________________________________________________ :$60 96 $FF;END_________________________________________________________________________________________________________ :$61 97 $FF;END_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!66 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 9$1E!2E>!66 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 9$1E!2E>!66 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 9$1E!2E>!66 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 9$1E!2E>!66 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 9$1E!2E>!66 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 9$1E!2E>!66 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 9$1E>!66 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 9$1E!2E>$FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 9$1E!2E>$FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 9$1E!2E>$FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 9$1E!2E>$FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 9$1E!2E>!66 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!689$1E!2E>$FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 9$1E!2E>$FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 9$1E!2E>$FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 9$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$5E 9$1E!664 ;$FF!FFEND_________________________________________________________________________________________________________ :$5F 95 $FF;END_________________________________________________________________________________________________________ :$60 96 $FF;END_________________________________________________________________________________________________________ :$61 97 $FF;END_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!66 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 9$1E!2E>!66 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 9$1E!2E>!66 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 9$1E!2E>!66 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 9$1E!2E>!66 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 9$1E!2E>!66 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 9$1E!2E>!66 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 9$1E>!66 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 9$1E!2E>$FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 9$1E!2E>$FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 9$1E!2E>$FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 9$1E!2E>$FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 9$1E!2E>!66 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!689$1E!2E>$FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 9$1E!2E>$FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 9$1E!2E>$FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 9$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$5E 9$1E!664 ;$FF!FFEND__________________________________________________________________________________________________________ :$5F 95 $FF;END__________________________________________________________________________________________________________ :$60 96 $FF;END__________________________________________________________________________________________________________ :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!66 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96$1E!2E>!66 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96$1E!2E>!66 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96$1E!2E>!66 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96$1E!2E>!66 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96$1E!2E>!66 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96$1E!2E>!66 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96$1E>!66 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96$1E!2E>$1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96$1E!2E>$1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96$1E!2E>$1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96$1E!2E>$1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96$1E!2E>!66 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896$1E!2E>$1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96$1E!2E>$1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96$1E!2E>$1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b = :$5E 9$1E!664 ;$FF!FFEND__________________________________________________________________________________________________________ :$5F 95 $FF;END__________________________________________________________________________________________________________ :$60 96 $FF;END__________________________________________________________________________________________________________ :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!66 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96$1E!2E>!66 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96$1E!2E>!66 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96$1E!2E>!66 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96$1E!2E>!66 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96$1E!2E>!66 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96$1E!2E>!66 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96$1E>!66 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96$1E!2E>$1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96$1E!2E>$1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96$1E!2E>$1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96$1E!2E>$1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96$1E!2E>!66 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896$1E!2E>$1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96$1E!2E>$1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96$1E!2E>$1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$5E 9$1E!664 ;$FF!FFEND__________________________________________________________________________________________________________ :$5F 95 $FF;END__________________________________________________________________________________________________________ :$60 96 $FF;END__________________________________________________________________________________________________________ :$61 97 $FF;END________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1E!66 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96$1E!2E>!66 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96$1E!2E>!66 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96$1E!2E>!66 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96$1E!2E>!66 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96$1E!2E>!66 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96$1E!2E>!66 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96$1E>!66 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96$1E!2E>$1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96$1E!2E>$1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96$1E!2E>$1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96$1E!2E>$1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96$1E!2E>!66 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896$1E!2E>$1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96$1E!2E>$1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96$1E!2E>$1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$5E 9$1E!664 ;$FF!FFEND___________________________________________________________________________________________________________ :$5F 95 $FF;END___________________________________________________________________________________________________________ :$60 96 $FF;END___________________________________________________________________________________________________________ :$61 97 $FF;END_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96/$1E!2E>$1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96/$1E!2E>$1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96/$1E!2E>$1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96/$1E!2E>$1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96/$1E!2E>$1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96/$1E!2E>$1F 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96/$1E>$1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96/$1E!2E>$1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/$1E!2E>$1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/$1E!2E>$1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96/$1E!2E>$1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/$1E!2E>!66 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896/$1E!2E>$1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/$1E!2E>$1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/$1E!2E>$1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b = :$5E 9$1E!664 ;$FF!FFEND___________________________________________________________________________________________________________ :$5F 95 $FF;END___________________________________________________________________________________________________________ :$60 96 $FF;END___________________________________________________________________________________________________________ :$61 97 $FF;END_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96/$1E!2E>$1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96/$1E!2E>$1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96/$1E!2E>$1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96/$1E!2E>$1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96/$1E!2E>$1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96/$1E!2E>$1F 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96/$1E>$1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96/$1E!2E>$1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/$1E!2E>$1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/$1E!2E>$1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96/$1E!2E>$1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/$1E!2E>!66 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896/$1E!2E>$1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/$1E!2E>$1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/$1E!2E>$1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$5E 9$1E!664 ;$FF!FFEND___________________________________________________________________________________________________________ :$5F 95 $FF;END___________________________________________________________________________________________________________ :$60 96 $FF;END___________________________________________________________________________________________________________ :$61 97 $FF;END_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96/$1E!2E>$1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96/$1E!2E>$1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96/$1E!2E>$1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96/$1E!2E>$1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96/$1E!2E>$1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96/$1E!2E>$1F 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96/$1E>$1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96/$1E!2E>$1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/$1E!2E>$1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/$1E!2E>$1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96/$1E!2E>$1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/$1E!2E>!66 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896/$1E!2E>$1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/$1E!2E>$1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/$1E!2E>$1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$5E 9$1E!664 ;$FF!FFEND____________________________________________________________________________________________________________ :$5F 95 $FF;END____________________________________________________________________________________________________________ :$60 96 $FF;END____________________________________________________________________________________________________________ :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!2831/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96/ $1E!2E>$1F!2931/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96/ $1E!2E>$1F!2A31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96/ $1E!2E>$1F!2B31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96/ $1E!2E>$1F!2C31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96/ $1E!2E>$1F!2D31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96/ $1E!2E>$1F31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96/ $1E>$1F!2F31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96/ $1E!2E>$1F!6431/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/1$1E!2E>$1F!6531/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/1$1E!2E>$1F!6631/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96/1$1E!2E>$1F!6731/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/1$1E!2E>$1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896/1$1E!2E>$1F!6931/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/1$1E!2E>$1F!6A31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/1$1E!2E>$1F!6B31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/1$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b = :$5E 9$1E!664 ;$FF!FFEND____________________________________________________________________________________________________________ :$5F 95 $FF;END____________________________________________________________________________________________________________ :$60 96 $FF;END____________________________________________________________________________________________________________ :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!2831/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96/ $1E!2E>$1F!2931/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96/ $1E!2E>$1F!2A31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96/ $1E!2E>$1F!2B31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96/ $1E!2E>$1F!2C31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96/ $1E!2E>$1F!2D31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96/ $1E!2E>$1F31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96/ $1E>$1F!2F31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96/ $1E!2E>$1F!6431/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/1$1E!2E>$1F!6531/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/1$1E!2E>$1F!6631/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96/1$1E!2E>$1F!6731/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/1$1E!2E>$1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896/1$1E!2E>$1F!6931/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/1$1E!2E>$1F!6A31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/1$1E!2E>$1F!6B31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/1$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$5E 9$1E!664 ;$FF!FFEND____________________________________________________________________________________________________________ :$5F 95 $FF;END____________________________________________________________________________________________________________ :$60 96 $FF;END____________________________________________________________________________________________________________ :$61 97 $FF;END__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!2831/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96/ $1E!2E>$1F!2931/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96/ $1E!2E>$1F!2A31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96/ $1E!2E>$1F!2B31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96/ $1E!2E>$1F!2C31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96/ $1E!2E>$1F!2D31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96/ $1E!2E>$1F31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96/ $1E>$1F!2F31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96/ $1E!2E>$1F!6431/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/1$1E!2E>$1F!6531/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/1$1E!2E>$1F!6631/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96/1$1E!2E>$1F!6731/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/1$1E!2E>$1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896/1$1E!2E>$1F!6931/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/1$1E!2E>$1F!6A31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/1$1E!2E>$1F!6B31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/1$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$5E 9$1E!664 ;$FF!FFEND_____________________________________________________________________________________________________________ :$5F 95 $FF;END_____________________________________________________________________________________________________________ :$60 96 $FF;END_____________________________________________________________________________________________________________ :$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!281/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96/ $1E!664!2E>$1F!291/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96/ $1E!664!2E>$1F!2A1/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96/ $1E!664!2E>$1F!2B1/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96/ $1E!664!2E>$1F!2C1/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96/ $1E!664!2E>$1F!2D1/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96/ $1E!664!2E>$1F1/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96/ $1E!664!2E>$1F!2F1/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96/ $1E!664!2E>$1F!641/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/10$1E!2E>$1F!651/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/10$1E!2E>$1F!661/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96/10$1E!2E>$1F!671/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/10$1E!2E>$1F!681/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896/10$1E!2E>$1F!691/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/10$1E!2E>$1F!6A1/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/10$1E!2E>$1F!6B1/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/10$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b = :$5E 9$1E!664 ;$FF!FFEND_____________________________________________________________________________________________________________ :$5F 95 $FF;END_____________________________________________________________________________________________________________ :$60 96 $FF;END_____________________________________________________________________________________________________________ :$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!281/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96/ $1E!664!2E>$1F!291/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96/ $1E!664!2E>$1F!2A1/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96/ $1E!664!2E>$1F!2B1/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96/ $1E!664!2E>$1F!2C1/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96/ $1E!664!2E>$1F!2D1/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96/ $1E!664!2E>$1F1/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96/ $1E!664!2E>$1F!2F1/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96/ $1E!664!2E>$1F!641/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/10$1E!2E>$1F!651/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/10$1E!2E>$1F!661/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96/10$1E!2E>$1F!671/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/10$1E!2E>$1F!681/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896/10$1E!2E>$1F!691/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/10$1E!2E>$1F!6A1/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/10$1E!2E>$1F!6B1/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/10$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$5E 9$1E!664 ;$FF!FFEND_____________________________________________________________________________________________________________ :$5F 95 $FF;END_____________________________________________________________________________________________________________ :$60 96 $FF;END_____________________________________________________________________________________________________________ :$61 97 $FF;END___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!281/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96/ $1E!664!2E>$1F!291/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96/ $1E!664!2E>$1F!2A1/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96/ $1E!664!2E>$1F!2B1/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96/ $1E!664!2E>$1F!2C1/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96/ $1E!664!2E>$1F!2D1/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96/ $1E!664!2E>$1F1/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96/ $1E!664!2E>$1F!2F1/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96/ $1E!664!2E>$1F!641/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/10$1E!2E>$1F!651/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/10$1E!2E>$1F!661/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96/10$1E!2E>$1F!671/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/10$1E!2E>$1F!681/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896/10$1E!2E>$1F!691/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/10$1E!2E>$1F!6A1/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/10$1E!2E>$1F!6B1/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/10$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________________________________________ :$5F 95 $FF;END______________________________________________________________________________________________________________ :$60 96 $FF;END______________________________________________________________________________________________________________ :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96/ $1E!6640!2E>$1F!29/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96/ $1E!6641!2E>$1F!2A/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96/ $1E!6642!2E>$1F!2B/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96/ $1E!6643!2E>$1F!2C/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96/ $1E!6644!2E>$1F!2D/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96/ $1E!6645!2E>$1F/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96/ $1E!6646!2E>$1F!2F/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96/ $1E!6647!2E>$1F!64/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100$1E!2E>$1F!65/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101$1E!2E>$1F!66/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102$1E!2E>$1F!67/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103$1E!2E>$1F!68/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896/10$1E!664!2E>$1F!69/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105$1E!2E>$1F!6A/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106$1E!2E>$1F!6B/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b = :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________________________________________ :$5F 95 $FF;END______________________________________________________________________________________________________________ :$60 96 $FF;END______________________________________________________________________________________________________________ :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96/ $1E!6640!2E>$1F!29/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96/ $1E!6641!2E>$1F!2A/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96/ $1E!6642!2E>$1F!2B/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96/ $1E!6643!2E>$1F!2C/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96/ $1E!6644!2E>$1F!2D/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96/ $1E!6645!2E>$1F/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96/ $1E!6646!2E>$1F!2F/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96/ $1E!6647!2E>$1F!64/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100$1E!2E>$1F!65/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101$1E!2E>$1F!66/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102$1E!2E>$1F!67/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103$1E!2E>$1F!68/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896/10$1E!664!2E>$1F!69/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105$1E!2E>$1F!6A/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106$1E!2E>$1F!6B/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +4f = :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________________________________________ :$5F 95 $FF;END______________________________________________________________________________________________________________ :$60 96 $FF;END______________________________________________________________________________________________________________ :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96/ $1E!6640!2E>$1F!29/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96/ $1E!6641!2E>$1F!2A/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96/ $1E!6642!2E>$1F!2B/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96/ $1E!6643!2E>$1F!2C/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96/ $1E!6644!2E>$1F!2D/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96/ $1E!6645!2E>$1F/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96/ $1E!6646!2E>$1F!2F/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96/ $1E!6647!2E>$1F!64/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100$1E!2E>$1F!65/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101$1E!2E>$1F!66/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102$1E!2E>$1F!67/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103$1E!2E>$1F!68/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896/10$1E!664!2E>$1F!69/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105$1E!2E>$1F!6A/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106$1E!2E>$1F!6B/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESCO#__________________________________________________________________________________________________________________________________ +43 = :$5E 9$1E!664 ;$FF!FFEND_______________________________________________________________________________________________________________ :$5F 95 $FF;END_______________________________________________________________________________________________________________ :$60 96 $FF;END_______________________________________________________________________________________________________________ :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28 $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96/ $1E!6640 !2E>$1F!29 $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96/ $1E!6641 !2E>$1F!2A $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96/ $1E!6642 !2E>$1F!2B $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96/ $1E!6643 !2E>$1F!2C $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96/ $1E!6644 !2E>$1F!2D $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96/ $1E!6645 !2E>$1F $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96/ $1E!6646 !2E>$1F!2F $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96/ $1E!6647 !2E>$1F!64100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $1E!2E>$1F!65101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $1E!2E>$1F!66102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $1E!2E>$1F!67103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $1E!2E>$1F!6810$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896/10$1E!664 !2E>$1F!69105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $1E!2E>$1F!6A106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $1E!2E>$1F!6B107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +1b = :$5E 9$1E!664 ;$FF!FFEND_______________________________________________________________________________________________________________ :$5F 95 $FF;END_______________________________________________________________________________________________________________ :$60 96 $FF;END_______________________________________________________________________________________________________________ :$61 97 $FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________$1F!28 $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!6640 $5E!28 9$1E!664/ 40$5E!28 $FF!FF $5F!28 95/ $1E!6640 $60!28 96/ $1E!6640 !2E>$1F!29 $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!6641 $5E!29 9$1E!664/ 41$5E!29 $FF!FF $5F!29 95/ $1E!6641 $60!29 96/ $1E!6641 !2E>$1F!2A $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!6642 $5E!2A 9$1E!664/ 42$5E!2A $FF!FF $5F!2A 95/ $1E!6642 $60!2A 96/ $1E!6642 !2E>$1F!2B $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!6643 $5E!2B 9$1E!664/ 43$5E!2B $FF!FF $5F!2B 95/ $1E!6643 $60!2B 96/ $1E!6643 !2E>$1F!2C $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!6644 $5E!2C 9$1E!664/ 44$5E!2C $FF!FF $5F!2C 95/ $1E!6644 $60!2C 96/ $1E!6644 !2E>$1F!2D $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!6645 $5E!2D 9$1E!664/ 45$5E!2D $FF!FF $5F!2D 95/ $1E!6645 $60!2D 96/ $1E!6645 !2E>$1F $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E!6646 $5E!2E 9$1E!664/ 46$5E!2E $FF!FF $5F!2E 95/ $1E!6646 $60!2E 96/ $1E!6646 !2E>$1F!2F $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!6647 $5E!2F 9$1E!664/ 47$5E!2F $FF!FF $5F!2F 95/ $1E!6647 $60!2F 96/ $1E!6647 !2E>$1F!64100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/100 $FF!FF $5E!64 9$1E!664/100$5E!64 $FF!FF $5F!64 95/100 $FF!FF $60!64 96/100 $1E!2E>$1F!65101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/101 $FF!FF $5E!65 9$1E!664/101$5E!65 $FF!FF $5F!65 95/101 $FF!FF $60!65 96/101 $1E!2E>$1F!66102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/102 $FF!FF $5E!66 9$1E4/102$5E $FF!FF $5F!66 95/102 $FF!FF $60!66 96/102 $1E!2E>$1F!67103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/103 $FF!FF $5E!67 9$1E!664/103$5E!67 $FF!FF $5F!67 95/103 $FF!FF $60!67 96/103 $1E!2E>$1F!6810$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/10$1E!664 $5E!689$1E!664/104$5E!68 $FF!FF $5F!68 95/10$1E!664 $60!6896/10$1E!664 !2E>$1F!69105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/105 $FF!FF $5E!69 9$1E!664/105$5E!69 $FF!FF $5F!69 95/105 $FF!FF $60!69 96/105 $1E!2E>$1F!6A106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/106 $FF!FF $5E!6A 9$1E!664/106$5E!6A $FF!FF $5F!6A 95/106 $FF!FF $60!6A 96/106 $1E!2E>$1F!6B107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/107 $FF!FF $5E!6B 9$1E!664/107$5E!6B $FF!FF $5F!6B 95/107 $FF!FF $60!6B 96/107 $1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________ ESC#___________________________________________________________________________________________________________________________________ +7b =this is bright blue fg :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!2E>$FF!FFred :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!2E>$FF!FFgreen :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!2E>$FF!FFyellow :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!2E>$FF!FFblue :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!2E>$FF!FFmagenta :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!2E>$FF!FFcyan :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E>$FF!FFwhite :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!2E>$FF!FFbright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1$1E!2E>$FF!FFbright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1$1E!2E>$FF!FFbright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1$1E!2E>$FF!FFbright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1$1E!2E>$FF!FFbright blue :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/1$1E!2E>$FF!FFbright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1$1E!2E>$FF!FFbright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1$1E!2E>$FF!FFbright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/1$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +a =this is bright blue fg :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!2E>$FF!FFred :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!2E>$FF!FFgreen :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!2E>$FF!FFyellow :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!2E>$FF!FFblue :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!2E>$FF!FFmagenta :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!2E>$FF!FFcyan :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E>$FF!FFwhite :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!2E>$FF!FFbright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1$1E!2E>$FF!FFbright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1$1E!2E>$FF!FFbright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1$1E!2E>$FF!FFbright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1$1E!2E>$FF!FFbright blue :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/1$1E!2E>$FF!FFbright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1$1E!2E>$FF!FFbright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1$1E!2E>$FF!FFbright white :$1E!6B 30/107 $FF!FF $1F!6B 31/107 $FF!FF $20!6B 32/107 $FF!FF $21!6B 33/107 $FF!FF $22!6B 3$1E!664/107$22!6B $FF!FF $23!6B 35/107 $FF!FF $24!6B 36/107 $FF!FF $25!6B 37/107 $FF!FF $5A!6B 90/107 $FF!FF $5B!6B 91/107 $FF!FF $5C!6B 92/107 $FF!FF $5D!6B 93/1$1E!2E>@01$FF!FF~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________________________________________________________________ +75 =this is cyan bg :!2E $1E!6646 $FF!FF;END______________________________________________________________________________this is white bg :!2F $1E!6647 $FF!FF;END______________________________________________________________________________this is bright black bg :!64 100 !FF;END______________________________________________________________________________this is bright red bg :!65 101 !FF;END______________________________________________________________________________this is bright green bg :!66 102 !FF;END______________________________________________________________________________this is bright yellow bg :!67 103 !FF;END______________________________________________________________________________this is bright blue bg :!68 10$1E!664 ;$FF!FFEND______________________________________________________________________________this is bright magenta bg :!69 105 !FF;END______________________________________________________________________________this is bright cyan bg :!6A 106 !FF;END______________________________________________________________________________this is bright white bg :!6B 107 !FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________this is black fg :$1E 30 $FF;END______________________________________________________________________________this is red fg :$1F 31 $FF;END______________________________________________________________________________this is green fg :$20 32 $FF;END______________________________________________________________________________this is yellow fg :$21 33 $FF;END______________________________________________________________________________this is blue fg :$22 3$1E!664 ;$FF!FFEND______________________________________________________________________________this is magenta fg :$23 35 $FF;END______________________________________________________________________________this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!2E>$FF!FFred :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!2E>$FF!FFgreen :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!2E>$FF!FFyellow :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!2E>$FF!FFblue :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!2E>$FF!FFmagenta :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!2E>$FF!FFcyan :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E>$FF!FFwhite :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!2E>$FF!FFbright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1$1E!2E>$FF!FFbright red :$1E!65 30/101 $FF!FF $1F!65 31/101 $FF!FF $20!65 32/101 $FF!FF $21!65 33/101 $FF!FF $22!65 3$1E!664/101$22!65 $FF!FF $23!65 35/101 $FF!FF $24!65 36/101 $FF!FF $25!65 37/101 $FF!FF $5A!65 90/101 $FF!FF $5B!65 91/101 $FF!FF $5C!65 92/101 $FF!FF $5D!65 93/1$1E!2E>$FF!FFbright green :$1E!66 30/102 $FF!FF $1F!66 31/102 $FF!FF $20!66 32/102 $FF!FF $21!66 33/102 $FF!FF $22!66 3$1E4/102$22 $FF!FF $23!66 35/102 $FF!FF $24!66 36/102 $FF!FF $25!66 37/102 $FF!FF $5A!66 90/102 $FF!FF $5B!66 91/102 $FF!FF $5C!66 92/102 $FF!FF $5D!66 93/1$1E!2E>$FF!FFbright yellow :$1E!67 30/103 $FF!FF $1F!67 31/103 $FF!FF $20!67 32/103 $FF!FF $21!67 33/103 $FF!FF $22!67 3$1E!664/103$22!67 $FF!FF $23!67 35/103 $FF!FF $24!67 36/103 $FF!FF $25!67 37/103 $FF!FF $5A!67 90/103 $FF!FF $5B!67 91/103 $FF!FF $5C!67 92/103 $FF!FF $5D!67 93/1$1E!2E>$FF!FFbright blue :$1E!68 30/10!664 $1F!6831/10$1E!664 $20!6832/10$1E!664 $21!6833/10$1E!664 $22!683$1E!664/104$22!68 $FF!FF $23!68 35/10$1E!664 $24!6836/10$1E!664 $25!6837/10$1E!664 $5A!6890/10$1E!664 $5B!6891/10$1E!664 $5C!6892/10$1E!664 $5D!6893/1$1E!2E>$FF!FFbright magenta :$1E!69 30/105 $FF!FF $1F!69 31/105 $FF!FF $20!69 32/105 $FF!FF $21!69 33/105 $FF!FF $22!69 3$1E!664/105$22!69 $FF!FF $23!69 35/105 $FF!FF $24!69 36/105 $FF!FF $25!69 37/105 $FF!FF $5A!69 90/105 $FF!FF $5B!69 91/105 $FF!FF $5C!69 92/105 $FF!FF $5D!69 93/1$1E!2E>$FF!FFbright cyan :$1E!6A 30/106 $FF!FF $1F!6A 31/106 $FF!FF $20!6A 32/106 $FF!FF $21!6A 33/106 $FF!FF $22!6A 3$1E!664/106$22!6A $FF!FF $23!6A 35/106 $FF!FF $24!6A 36/106 $FF!FF $25!6A 37/106 $FF!FF $5A!6A 90/106 $FF!FF $5B!6A 91/106 $FF!FF $5C!6A 92/106 $FF!FF $5D!6A 93/1$1E!2E>!6A:$FF!FF#______________________________________________________________________________________________________________________________________ +75 =this is black bg :!28 $1E!6640 $FF!FF;END______________________________________________________________________________this is red bg :!29 $1E!6641 $FF!FF;END______________________________________________________________________________this is green bg :!2A $1E!6642 $FF!FF;END______________________________________________________________________________this is yellow bg :!2B $1E!6643 $FF!FF;END______________________________________________________________________________this is blue bg :!2C $1E!6644 $FF!FF;END______________________________________________________________________________this is magenta bg :!2D $1E!6645 $FF!FF;END______________________________________________________________________________this is cyan bg :!2E $1E!6646 $FF!FF;END______________________________________________________________________________this is white bg :!2F $1E!6647 $FF!FF;END______________________________________________________________________________this is bright black bg :!64 100 !FF;END______________________________________________________________________________this is bright red bg :!65 101 !FF;END______________________________________________________________________________this is bright green bg :!66 102 !FF;END______________________________________________________________________________this is bright yellow bg :!67 103 !FF;END______________________________________________________________________________this is bright blue bg :!68 10$1E!664 ;$FF!FFEND______________________________________________________________________________this is bright magenta bg :!69 105 !FF;END______________________________________________________________________________this is bright cyan bg :!6A 106 !FF;END______________________________________________________________________________this is bright white bg :!6B 107 !FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________this is black fg :$1E 30 $FF;END______________________________________________________________________________this is red fg :$1F 31 $FF;END______________________________________________________________________________this is green fg :$20 32 $FF;END______________________________________________________________________________this is yellow fg :$21 33 $FF;END______________________________________________________________________________this is blue fg :$22 3$1E!664 ;$FF!FFEND______________________________________________________________________________this is magenta fg :$23 35 $FF;END______________________________________________________________________________this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!2E>$FF!FFred :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!2E>$FF!FFgreen :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!2E>$FF!FFyellow :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!2E>$FF!FFblue :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!2E>$FF!FFmagenta :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!2E>$FF!FFcyan :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E>$FF!FFwhite :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!2E>$FF!FFbright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1$1E!2E>!6A:$FF!FF#______________________________________________________________________________________________________________________________________ +6b =this is black bg :!28 $1E!6640 $FF!FF;END______________________________________________________________________________this is red bg :!29 $1E!6641 $FF!FF;END______________________________________________________________________________this is green bg :!2A $1E!6642 $FF!FF;END______________________________________________________________________________this is yellow bg :!2B $1E!6643 $FF!FF;END______________________________________________________________________________this is blue bg :!2C $1E!6644 $FF!FF;END______________________________________________________________________________this is magenta bg :!2D $1E!6645 $FF!FF;END______________________________________________________________________________this is cyan bg :!2E $1E!6646 $FF!FF;END______________________________________________________________________________this is white bg :!2F $1E!6647 $FF!FF;END______________________________________________________________________________this is bright black bg :!64 100 !FF;END______________________________________________________________________________this is bright red bg :!65 101 !FF;END______________________________________________________________________________this is bright green bg :!66 102 !FF;END______________________________________________________________________________this is bright yellow bg :!67 103 !FF;END______________________________________________________________________________this is bright blue bg :!68 10$1E!664 ;$FF!FFEND______________________________________________________________________________this is bright magenta bg :!69 105 !FF;END______________________________________________________________________________this is bright cyan bg :!6A 106 !FF;END______________________________________________________________________________this is bright white bg :!6B 107 !FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________this is black fg :$1E 30 $FF;END______________________________________________________________________________this is red fg :$1F 31 $FF;END______________________________________________________________________________this is green fg :$20 32 $FF;END______________________________________________________________________________this is yellow fg :$21 33 $FF;END______________________________________________________________________________this is blue fg :$22 3$1E!664 ;$FF!FFEND______________________________________________________________________________this is magenta fg :$23 35 $FF;END______________________________________________________________________________this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!2E>$FF!FFred :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!2E>$FF!FFgreen :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!2E>$FF!FFyellow :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!2E>$FF!FFblue :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!2E>$FF!FFmagenta :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!2E>$FF!FFcyan :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E>$FF!FFwhite :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!2E>$FF!FFbright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1$1E!2E>!6A:$FF!FF#______________________________________________________________________________________________________________________________________ +6b =this is black bg :!28 $1E!6640 $FF!FF;END______________________________________________________________________________this is red bg :!29 $1E!6641 $FF!FF;END______________________________________________________________________________this is green bg :!2A $1E!6642 $FF!FF;END______________________________________________________________________________this is yellow bg :!2B $1E!6643 $FF!FF;END______________________________________________________________________________this is blue bg :!2C $1E!6644 $FF!FF;END______________________________________________________________________________this is magenta bg :!2D $1E!6645 $FF!FF;END______________________________________________________________________________this is cyan bg :!2E $1E!6646 $FF!FF;END______________________________________________________________________________this is white bg :!2F $1E!6647 $FF!FF;END______________________________________________________________________________this is bright black bg :!64 100 !FF;END______________________________________________________________________________this is bright red bg :!65 101 !FF;END______________________________________________________________________________this is bright green bg :!66 102 !FF;END______________________________________________________________________________this is bright yellow bg :!67 103 !FF;END______________________________________________________________________________this is bright blue bg :!68 10$1E!664 ;$FF!FFEND______________________________________________________________________________this is bright magenta bg :!69 105 !FF;END______________________________________________________________________________this is bright cyan bg :!6A 106 !FF;END______________________________________________________________________________this is bright white bg :!6B 107 !FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________this is black fg :$1E 30 $FF;END______________________________________________________________________________this is red fg :$1F 31 $FF;END______________________________________________________________________________this is green fg :$20 32 $FF;END______________________________________________________________________________this is yellow fg :$21 33 $FF;END______________________________________________________________________________this is blue fg :$22 3$1E!664 ;$FF!FFEND______________________________________________________________________________this is magenta fg :$23 35 $FF;END______________________________________________________________________________this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!2E>$FF!FFred :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!2E>$FF!FFgreen :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!2E>$FF!FFyellow :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!2E>$FF!FFblue :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!2E>$FF!FFmagenta :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!2E>$FF!FFcyan :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E>$FF!FFwhite :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!2E>$FF!FFbright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1$1E!2E>!6A:$FF!FF#______________________________________________________________________________________________________________________________________ +75 =this is black bg :!28 $1E!6640 $FF!FF;END______________________________________________________________________________this is red bg :!29 $1E!6641 $FF!FF;END______________________________________________________________________________this is green bg :!2A $1E!6642 $FF!FF;END______________________________________________________________________________this is yellow bg :!2B $1E!6643 $FF!FF;END______________________________________________________________________________this is blue bg :!2C $1E!6644 $FF!FF;END______________________________________________________________________________this is magenta bg :!2D $1E!6645 $FF!FF;END______________________________________________________________________________this is cyan bg :!2E $1E!6646 $FF!FF;END______________________________________________________________________________this is white bg :!2F $1E!6647 $FF!FF;END______________________________________________________________________________this is bright black bg :!64 100 !FF;END______________________________________________________________________________this is bright red bg :!65 101 !FF;END______________________________________________________________________________this is bright green bg :!66 102 !FF;END______________________________________________________________________________this is bright yellow bg :!67 103 !FF;END______________________________________________________________________________this is bright blue bg :!68 10$1E!664 ;$FF!FFEND______________________________________________________________________________this is bright magenta bg :!69 105 !FF;END______________________________________________________________________________this is bright cyan bg :!6A 106 !FF;END______________________________________________________________________________this is bright white bg :!6B 107 !FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________this is black fg :$1E 30 $FF;END______________________________________________________________________________this is red fg :$1F 31 $FF;END______________________________________________________________________________this is green fg :$20 32 $FF;END______________________________________________________________________________this is yellow fg :$21 33 $FF;END______________________________________________________________________________this is blue fg :$22 3$1E!664 ;$FF!FFEND______________________________________________________________________________this is magenta fg :$23 35 $FF;END______________________________________________________________________________this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!2E>$FF!FFred :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!2E>$FF!FFgreen :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!2E>$FF!FFyellow :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!2E>$FF!FFblue :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!2E>$FF!FFmagenta :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!2E>$FF!FFcyan :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E>$FF!FFwhite :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!2E>$FF!FFbright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1$1E!2E>!6A:$FF!FF#______________________________________________________________________________________________________________________________________ +3d =this is black bg :!28 $1E!6640 $FF!FF;END______________________________________________________________________________this is red bg :!29 $1E!6641 $FF!FF;END______________________________________________________________________________this is green bg :!2A $1E!6642 $FF!FF;END______________________________________________________________________________this is yellow bg :!2B $1E!6643 $FF!FF;END______________________________________________________________________________this is blue bg :!2C $1E!6644 $FF!FF;END______________________________________________________________________________this is magenta bg :!2D $1E!6645 $FF!FF;END______________________________________________________________________________this is cyan bg :!2E $1E!6646 $FF!FF;END______________________________________________________________________________this is white bg :!2F $1E!6647 $FF!FF;END______________________________________________________________________________this is bright black bg :!64 100 !FF;END______________________________________________________________________________this is bright red bg :!65 101 !FF;END______________________________________________________________________________this is bright green bg :!66 102 !FF;END______________________________________________________________________________this is bright yellow bg :!67 103 !FF;END______________________________________________________________________________this is bright blue bg :!68 10$1E!664 ;$FF!FFEND______________________________________________________________________________this is bright magenta bg :!69 105 !FF;END______________________________________________________________________________this is bright cyan bg :!6A 106 !FF;END______________________________________________________________________________this is bright white bg :!6B 107 !FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________this is black fg :$1E 30 $FF;END______________________________________________________________________________this is red fg :$1F 31 $FF;END______________________________________________________________________________this is green fg :$20 32 $FF;END______________________________________________________________________________this is yellow fg :$21 33 $FF;END______________________________________________________________________________this is blue fg :$22 3$1E!664 ;$FF!FFEND______________________________________________________________________________this is magenta fg :$23 35 $FF;END______________________________________________________________________________this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!2E>$FF!FFred :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!2E>$FF!FFgreen :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!2E>$FF!FFyellow :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!2E>$FF!FFblue :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!2E>$FF!FFmagenta :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!2E>$FF!FFcyan :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E>$FF!FFwhite :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!2E>$FF!FFbright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1$1E!2E>!67colorbars lines 1-44/51 byte 5334/7931 67% (press RETURN)$FF!FF#_____________________________________________________________________________ +a =this is black bg :!28 $1E!6640 $FF!FF;END______________________________________________________________________________this is red bg :!29 $1E!6641 $FF!FF;END______________________________________________________________________________this is green bg :!2A $1E!6642 $FF!FF;END______________________________________________________________________________this is yellow bg :!2B $1E!6643 $FF!FF;END______________________________________________________________________________this is blue bg :!2C $1E!6644 $FF!FF;END______________________________________________________________________________this is magenta bg :!2D $1E!6645 $FF!FF;END______________________________________________________________________________this is cyan bg :!2E $1E!6646 $FF!FF;END______________________________________________________________________________this is white bg :!2F $1E!6647 $FF!FF;END______________________________________________________________________________this is bright black bg :!64 100 !FF;END______________________________________________________________________________this is bright red bg :!65 101 !FF;END______________________________________________________________________________this is bright green bg :!66 102 !FF;END______________________________________________________________________________this is bright yellow bg :!67 103 !FF;END______________________________________________________________________________this is bright blue bg :!68 10$1E!664 ;$FF!FFEND______________________________________________________________________________this is bright magenta bg :!69 105 !FF;END______________________________________________________________________________this is bright cyan bg :!6A 106 !FF;END______________________________________________________________________________this is bright white bg :!6B 107 !FF;END_____________________________________________________________________________________________________________________________________________________________________________________________________________________this is black fg :$1E 30 $FF;END______________________________________________________________________________this is red fg :$1F 31 $FF;END______________________________________________________________________________this is green fg :$20 32 $FF;END______________________________________________________________________________this is yellow fg :$21 33 $FF;END______________________________________________________________________________this is blue fg :$22 3$1E!664 ;$FF!FFEND______________________________________________________________________________this is magenta fg :$23 35 $FF;END______________________________________________________________________________this is cyan fg :$24 36 $FF;END______________________________________________________________________________this is white fg :$25 37 $FF;END______________________________________________________________________________this is bright black fg :$5A 90 $FF;END______________________________________________________________________________this is bright red fg :$5B 91 $FF;END______________________________________________________________________________this is bright green fg :$5C 92 $FF;END______________________________________________________________________________this is bright yellow fg :$5D 93 $FF;END______________________________________________________________________________this is bright blue fg :$5E 9$1E!664 ;$FF!FFEND______________________________________________________________________________this is bright magenta fg :$5F 95 $FF;END______________________________________________________________________________this is bright cyan fg :$60 96 $FF;END______________________________________________________________________________this is bright white fg :$61 97 $FF;END____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________black :$1E!28 30/ !6640 $1F!28 31/ $1E!6640 $20!28 32/ $1E!6640 $21!28 33/ $1E!6640 $22!28 3$1E!664/ 40$22!28 $FF!FF $23!28 35/ $1E!6640 $24!28 36/ $1E!6640 $25!28 37/ $1E!6640 $5A!28 90/ $1E!6640 $5B!28 91/ $1E!6640 $5C!28 92/ $1E!6640 $5D!28 93/ $1E!2E>$FF!FFred :$1E!29 30/ !6641 $1F!29 31/ $1E!6641 $20!29 32/ $1E!6641 $21!29 33/ $1E!6641 $22!29 3$1E!664/ 41$22!29 $FF!FF $23!29 35/ $1E!6641 $24!29 36/ $1E!6641 $25!29 37/ $1E!6641 $5A!29 90/ $1E!6641 $5B!29 91/ $1E!6641 $5C!29 92/ $1E!6641 $5D!29 93/ $1E!2E>$FF!FFgreen :$1E!2A 30/ !6642 $1F!2A 31/ $1E!6642 $20!2A 32/ $1E!6642 $21!2A 33/ $1E!6642 $22!2A 3$1E!664/ 42$22!2A $FF!FF $23!2A 35/ $1E!6642 $24!2A 36/ $1E!6642 $25!2A 37/ $1E!6642 $5A!2A 90/ $1E!6642 $5B!2A 91/ $1E!6642 $5C!2A 92/ $1E!6642 $5D!2A 93/ $1E!2E>$FF!FFyellow :$1E!2B 30/ !6643 $1F!2B 31/ $1E!6643 $20!2B 32/ $1E!6643 $21!2B 33/ $1E!6643 $22!2B 3$1E!664/ 43$22!2B $FF!FF $23!2B 35/ $1E!6643 $24!2B 36/ $1E!6643 $25!2B 37/ $1E!6643 $5A!2B 90/ $1E!6643 $5B!2B 91/ $1E!6643 $5C!2B 92/ $1E!6643 $5D!2B 93/ $1E!2E>$FF!FFblue :$1E!2C 30/ !6644 $1F!2C 31/ $1E!6644 $20!2C 32/ $1E!6644 $21!2C 33/ $1E!6644 $22!2C 3$1E!664/ 44$22!2C $FF!FF $23!2C 35/ $1E!6644 $24!2C 36/ $1E!6644 $25!2C 37/ $1E!6644 $5A!2C 90/ $1E!6644 $5B!2C 91/ $1E!6644 $5C!2C 92/ $1E!6644 $5D!2C 93/ $1E!2E>$FF!FFmagenta :$1E!2D 30/ !6645 $1F!2D 31/ $1E!6645 $20!2D 32/ $1E!6645 $21!2D 33/ $1E!6645 $22!2D 3$1E!664/ 45$22!2D $FF!FF $23!2D 35/ $1E!6645 $24!2D 36/ $1E!6645 $25!2D 37/ $1E!6645 $5A!2D 90/ $1E!6645 $5B!2D 91/ $1E!6645 $5C!2D 92/ $1E!6645 $5D!2D 93/ $1E!2E>$FF!FFcyan :$1E!2E 30/ !6646 $1F!2E 31/ $1E!6646 $20!2E 32/ $1E!6646 $21!2E 33/ $1E!6646 $22!2E 3$1E!664/ 46$22!2E $FF!FF $23!2E 35/ $1E!6646 $24!2E 36/ $1E!6646 $25!2E 37/ $1E!6646 $5A!2E 90/ $1E!6646 $5B!2E 91/ $1E!6646 $5C!2E 92/ $1E!6646 $5D!2E 93/ $1E>$FF!FFwhite :$1E!2F 30/ !6647 $1F!2F 31/ $1E!6647 $20!2F 32/ $1E!6647 $21!2F 33/ $1E!6647 $22!2F 3$1E!664/ 47$22!2F $FF!FF $23!2F 35/ $1E!6647 $24!2F 36/ $1E!6647 $25!2F 37/ $1E!6647 $5A!2F 90/ $1E!6647 $5B!2F 91/ $1E!6647 $5C!2F 92/ $1E!6647 $5D!2F 93/ $1E!2E>$FF!FFbright black :$1E!64 30/100 $FF!FF $1F!64 31/100 $FF!FF $20!64 32/100 $FF!FF $21!64 33/100 $FF!FF $22!64 3$1E!664/100$22!64 $FF!FF $23!64 35/100 $FF!FF $24!64 36/100 $FF!FF $25!64 37/100 $FF!FF $5A!64 90/100 $FF!FF $5B!64 91/100 $FF!FF $5C!64 92/100 $FF!FF $5D!64 93/1$1E!2E>!6A:$FF!FF#______________________________________________________________________________________________________________________________________ +71 Q less-668/lesstest/lt/github216.lt0000644060175306017530000152250714700607702015751 0ustar marknmarkn!lesstest! !version 1 !created 2022-10-20 20:18:17 E "LESS_TERMCAP_am" "1" E "LESS_TERMCAP_cd" "S" E "LESS_TERMCAP_ce" "L" E "LESS_TERMCAP_cl" "A" E "LESS_TERMCAP_cr" "<" E "LESS_TERMCAP_cm" "%p2%d;%p1%dj" E "LESS_TERMCAP_ho" "h" E "LESS_TERMCAP_ll" "l" E "LESS_TERMCAP_mb" "b" E "LESS_TERMCAP_md" "" E "LESS_TERMCAP_me" "" E "LESS_TERMCAP_se" "" E "LESS_TERMCAP_so" "" E "LESS_TERMCAP_sr" "r" E "LESS_TERMCAP_ue" "" E "LESS_TERMCAP_us" "" E "LESS_TERMCAP_vb" "g" E "LESS_TERMCAP_kr" "OC" E "LESS_TERMCAP_kl" "OD" E "LESS_TERMCAP_ku" "OA" E "LESS_TERMCAP_kd" "OB" E "LESS_TERMCAP_kh" "OH" E "LESS_TERMCAP_@7" "OF" E "COLUMNS" "102" E "LINES" "28" E "LESS" "R" E "LESSCHARSET" "utf8" E "LANG" "C" E "LC_CTYPE" "en_US.UTF-8" T "github216" A "github216" F "github216" 49 694:#ifdef USE_SMT3 R =@01$21694@00$FF:\#ifdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@04github216 (END)@00#___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +2f =@01$21694@00$FF:\#ifdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________/#_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +66 =@01$21694@00$FF:\#ifdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________/f#________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +a =@01$21694@00$FF:\#i@04f@00de@04f@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@04(END)@00#_________________________________________________________________________________________________ +2f =@01$21694@00$FF:\#i@04f@00de@04f@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/#_____________________________________________________________________________________________________ +34 =@01$21694@00$FF:\#i@04f@00de@04f@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/4#____________________________________________________________________________________________________ +2e =@01$21694@00$FF:\#i@04f@00de@04f@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/4.#___________________________________________________________________________________________________ +2e =@01$21694@00$FF:\#i@04f@00de@04f@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/4..#__________________________________________________________________________________________________ +2e =@01$21694@00$FF:\#i@04f@00de@04f@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/4...#_________________________________________________________________________________________________ +a =@01$2169@054@04$FF:\#i@00fdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@04(END)@00#_________________________________________________________________________________________________ +2f =@01$2169@054@04$FF:\#i@00fdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/#_____________________________________________________________________________________________________ +66 =@01$2169@054@04$FF:\#i@00fdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f#____________________________________________________________________________________________________ +2e =@01$2169@054@04$FF:\#i@00fdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f.#___________________________________________________________________________________________________ +2e =@01$2169@054@04$FF:\#i@00fdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f..#__________________________________________________________________________________________________ +2e =@01$2169@054@04$FF:\#i@00fdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f...#_________________________________________________________________________________________________ +a =@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@04(END)@00#_________________________________________________________________________________________________ +2f =@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/#_____________________________________________________________________________________________________ +66 =@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f#____________________________________________________________________________________________________ +20 =@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f #___________________________________________________________________________________________________ +2f =@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f /#__________________________________________________________________________________________________ +8 =@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f #___________________________________________________________________________________________________ +2e =@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f .#__________________________________________________________________________________________________ +2e =@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f ..#_________________________________________________________________________________________________ +2e =@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f ...#________________________________________________________________________________________________ +a =@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@04(END)@00#_________________________________________________________________________________________________ +2d =@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________-#_____________________________________________________________________________________________________ +2d =@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________--#____________________________________________________________________________________________________ +75 =@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________--u#___________________________________________________________________________________________________ +73 =@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________--us#__________________________________________________________________________________________________ +65 =@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________--use#_________________________________________________________________________________________________ +2d =@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________--use-#________________________________________________________________________________________________ +63 =@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________--use-color#___________________________________________________________________________________________ +a =@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!67Use color (press RETURN)$FF!FF#_____________________________________________________________________________ +a =@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +31 =@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________:1#____________________________________________________________________________________________________ +1b =@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________:1#____________________________________________________________________________________________________ +4f =@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________:1#____________________________________________________________________________________________________ +43 =@01$2194@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =@01$2194@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@01$2194@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =@01$214@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF_____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =@01$214@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF_____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@01$214@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF_____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =:\#ifde$1E!66f USE!2B_SMT3$FF!FF______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =:\#ifde$1E!66f USE!2B_SMT3$FF!FF______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =:\#ifde$1E!66f USE!2B_SMT3$FF!FF______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =\#ifde$1E!66f USE!2B_SMT3$FF!FF_______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =\#ifde$1E!66f USE!2B_SMT3$FF!FF_______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =\#ifde$1E!66f USE!2B_SMT3$FF!FF_______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =ifde$1E!66f USE!2B_SMT3$FF!FF________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =ifde$1E!66f USE!2B_SMT3$FF!FF________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =ifde$1E!66f USE!2B_SMT3$FF!FF________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =fde$1E!66f USE!2B_SMT3$FF!FF_________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =fde$1E!66f USE!2B_SMT3$FF!FF_________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =fde$1E!66f USE!2B_SMT3$FF!FF_________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =de$1E!66f USE!2B_SMT3$FF!FF__________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =de$1E!66f USE!2B_SMT3$FF!FF__________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =de$1E!66f USE!2B_SMT3$FF!FF__________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =e$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =e$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =e$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =$1E!66 USE!2B_SMT3$FF!FF_____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!66 USE!2B_SMT3$FF!FF_____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!66 USE!2B_SMT3$FF!FF_____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =$1E!66USE!2B_SMT3$FF!FF______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!66USE!2B_SMT3$FF!FF______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!66USE!2B_SMT3$FF!FF______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =$1E!66SE!2B_SMT3$FF!FF_______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!66SE!2B_SMT3$FF!FF_______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!66SE!2B_SMT3$FF!FF_______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =$1E!66E!2B_SMT3$FF!FF________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!66E!2B_SMT3$FF!FF________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!66E!2B_SMT3$FF!FF________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =$1E!2B_SMT3$FF!FF_________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!2B_SMT3$FF!FF_________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!2B_SMT3$FF!FF_________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =$1E!2BSMT3$FF!FF__________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!2BSMT3$FF!FF__________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!2BSMT3$FF!FF__________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =$1E!2BMT3$FF!FF___________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!2BMT3$FF!FF___________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!2BMT3$FF!FF___________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =$1E!2BT3$FF!FF____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!2BT3$FF!FF____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!2BT3$FF!FF____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =$1E!2BMT3$FF!FF___________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!2BMT3$FF!FF___________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!2BMT3$FF!FF___________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =$1E!2BSMT3$FF!FF__________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!2BSMT3$FF!FF__________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!2BSMT3$FF!FF__________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =$1E!2B_SMT3$FF!FF_________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!2B_SMT3$FF!FF_________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!2B_SMT3$FF!FF_________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =$1E!66E!2B_SMT3$FF!FF________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!66E!2B_SMT3$FF!FF________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!66E!2B_SMT3$FF!FF________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =$1E!66SE!2B_SMT3$FF!FF_______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!66SE!2B_SMT3$FF!FF_______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!66SE!2B_SMT3$FF!FF_______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =$1E!66USE!2B_SMT3$FF!FF______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!66USE!2B_SMT3$FF!FF______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!66USE!2B_SMT3$FF!FF______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =$1E!66 USE!2B_SMT3$FF!FF_____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!66 USE!2B_SMT3$FF!FF_____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!66 USE!2B_SMT3$FF!FF_____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =e$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =e$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =e$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =de$1E!66f USE!2B_SMT3$FF!FF__________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =de$1E!66f USE!2B_SMT3$FF!FF__________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =de$1E!66f USE!2B_SMT3$FF!FF__________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =fde$1E!66f USE!2B_SMT3$FF!FF_________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =fde$1E!66f USE!2B_SMT3$FF!FF_________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =fde$1E!66f USE!2B_SMT3$FF!FF_________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =ifde$1E!66f USE!2B_SMT3$FF!FF________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =ifde$1E!66f USE!2B_SMT3$FF!FF________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =ifde$1E!66f USE!2B_SMT3$FF!FF________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =\#ifde$1E!66f USE!2B_SMT3$FF!FF_______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =\#ifde$1E!66f USE!2B_SMT3$FF!FF_______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =\#ifde$1E!66f USE!2B_SMT3$FF!FF_______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =:\#ifde$1E!66f USE!2B_SMT3$FF!FF______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =:\#ifde$1E!66f USE!2B_SMT3$FF!FF______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =:\#ifde$1E!66f USE!2B_SMT3$FF!FF______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =@01$214@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF_____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =@01$214@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF_____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@01$214@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF_____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =@01$2194@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =@01$2194@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@01$2194@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +1b =@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________ +71 Q less-668/lesstest/lt/github265.lt0000644060175306017530000027165414700607703015761 0ustar marknmarkn!lesstest! !version 1 !created 2022-10-22 21:01:27 E "LESS_TERMCAP_am" "1" E "LESS_TERMCAP_cd" "S" E "LESS_TERMCAP_ce" "L" E "LESS_TERMCAP_cl" "A" E "LESS_TERMCAP_cr" "<" E "LESS_TERMCAP_cm" "%p2%d;%p1%dj" E "LESS_TERMCAP_ho" "h" E "LESS_TERMCAP_ll" "l" E "LESS_TERMCAP_mb" "b" E "LESS_TERMCAP_md" "" E "LESS_TERMCAP_me" "" E "LESS_TERMCAP_se" "" E "LESS_TERMCAP_so" "" E "LESS_TERMCAP_sr" "r" E "LESS_TERMCAP_ue" "" E "LESS_TERMCAP_us" "" E "LESS_TERMCAP_vb" "g" E "LESS_TERMCAP_kr" "OC" E "LESS_TERMCAP_kl" "OD" E "LESS_TERMCAP_ku" "OA" E "LESS_TERMCAP_kd" "OB" E "LESS_TERMCAP_kh" "OH" E "LESS_TERMCAP_@7" "OF" E "COLUMNS" "109" E "LINES" "49" E "LESS" "R" E "LESSCHARSET" "utf8" E "LANG" "C" E "LC_CTYPE" "en_US.UTF-8" T "github265" A "github265" F "github265" 33 Why hello there R =Why @01$1Fhello@00$FF there______________________________________________________________________________________________@04github265 (END)@00#_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +2f =Why @01$1Fhello@00$FF there______________________________________________________________________________________________/#_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +79 =Why @01$1Fhello@00$FF there______________________________________________________________________________________________/y#______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +20 =Why @01$1Fhello@00$FF there______________________________________________________________________________________________/y #_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +68 =Why @01$1Fhello@00$FF there______________________________________________________________________________________________/y h#____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +65 =Why @01$1Fhello@00$FF there______________________________________________________________________________________________/y he#___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +a =Wh@04y @05$1Fhe@01llo@00$FF there______________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________________________ +2f =Wh@04y @05$1Fhe@01llo@00$FF there______________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________/#____________________________________________________________________________________________________________ +6c =Wh@04y @05$1Fhe@01llo@00$FF there______________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________/l#___________________________________________________________________________________________________________ +6c =Wh@04y @05$1Fhe@01llo@00$FF there______________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________/ll#__________________________________________________________________________________________________________ +6f =Wh@04y @05$1Fhe@01llo@00$FF there______________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________/llo#_________________________________________________________________________________________________________ +20 =Wh@04y @05$1Fhe@01llo@00$FF there______________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________/llo #________________________________________________________________________________________________________ +74 =Wh@04y @05$1Fhe@01llo@00$FF there______________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________/llo t#_______________________________________________________________________________________________________ +68 =Wh@04y @05$1Fhe@01llo@00$FF there______________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________/llo th#______________________________________________________________________________________________________ +a =Why @01$1Fhe@05llo@04$FF th@00ere______________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________________________ +1b =Why @01$1Fhe@05llo@04$FF th@00ere______________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________ ESC#_________________________________________________________________________________________________________ +75 =Why @01$1Fhello@00$FF there______________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@01~@00____________________________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________________________ +71 Q less-668/lesstest/lt/github329.lt0000644060175306017530000023741014700607703015752 0ustar marknmarkn!lesstest! !version 1 !created 2023-01-31 03:09:47 E "LESS_TERMCAP_am" "1" E "LESS_TERMCAP_cd" "S" E "LESS_TERMCAP_ce" "L" E "LESS_TERMCAP_cl" "A" E "LESS_TERMCAP_cr" "<" E "LESS_TERMCAP_cm" "%p2%d;%p1%dj" E "LESS_TERMCAP_ho" "h" E "LESS_TERMCAP_ll" "l" E "LESS_TERMCAP_mb" "b" E "LESS_TERMCAP_md" "" E "LESS_TERMCAP_me" "" E "LESS_TERMCAP_se" "" E "LESS_TERMCAP_so" "" E "LESS_TERMCAP_sr" "r" E "LESS_TERMCAP_ue" "" E "LESS_TERMCAP_us" "" E "LESS_TERMCAP_vb" "g" E "LESS_TERMCAP_kr" "OC" E "LESS_TERMCAP_kl" "OD" E "LESS_TERMCAP_ku" "OA" E "LESS_TERMCAP_kd" "OB" E "LESS_TERMCAP_kh" "OH" E "LESS_TERMCAP_@7" "OF" E "COLUMNS" "79" E "LINES" "34" E "LESSCHARSET" "utf8" E "LANG" "C" T "github329" A "github329" F "github329" 26 a]8;;link\text]8;;\ok R =a@04ESC@00]8;;link@04ESC@00\\text@04ESC@00]8;;@04ESC@00\\ok______________________________________________@04github329 (END)@00#________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +2d =a@04ESC@00]8;;link@04ESC@00\\text@04ESC@00]8;;@04ESC@00\\ok______________________________________________-#______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +52 =@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@04Display ANSI sequences directly, other control characters as ^X (press RETURN)@00#_______________________________________________________________________________ +a =atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@04(END)@00#__________________________________________________________________________ +2d =atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________-#______________________________________________________________________________ +52 =atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@04Display control characters as ^X (press RETURN)@00#_______________________________ +a =a@04ESC@00]8;;link@04ESC@00\\text@04ESC@00]8;;@04ESC@00\\ok______________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@04(END)@00#__________________________________________________________________________ +2f =a@04ESC@00]8;;link@04ESC@00\\text@04ESC@00]8;;@04ESC@00\\ok______________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________/#______________________________________________________________________________ +b =a@04ESC@00]8;;link@04ESC@00\\text@04ESC@00]8;;@04ESC@00\\ok______________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________Keep-pos /#_____________________________________________________________________ +38 =a@04ESC@00]8;;link@04ESC@00\\text@04ESC@00]8;;@04ESC@00\\ok______________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________Keep-pos /8#____________________________________________________________________ +a =a@04ESC@00]@048@00;;link@04ESC@00\\text@04ESC@00]@048@00;;@04ESC@00\\ok______________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@04(END)@00#__________________________________________________________________________ +2d =a@04ESC@00]@048@00;;link@04ESC@00\\text@04ESC@00]@048@00;;@04ESC@00\\ok______________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________-#______________________________________________________________________________ +52 =@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@04Display ANSI sequences directly, other control characters as ^X (press RETURN)@00#_______________________________________________________________________________ +a =atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@04(END)@00#__________________________________________________________________________ +2d =atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________-#______________________________________________________________________________ +2d =atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________--#_____________________________________________________________________________ +75 =atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________--u#____________________________________________________________________________ +73 =atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________--us#___________________________________________________________________________ +65 =atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________--use#__________________________________________________________________________ +2d =atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________--use-#_________________________________________________________________________ +63 =atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________--use-color#____________________________________________________________________ +a =atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________$1E!67Use color (press RETURN)$FF!FF#______________________________________________________ +2d =atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________-#______________________________________________________________________________ +52 =atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________$1E!67Display control characters as ^X (press RETURN)$FF!FF#_______________________________ +a =a$1E!65ESC$FF!FF]$1E!668$FF!FF;;link$1E!65ESC$FF!FF\\text$1E!65ESC$FF!FF]$1E!668$FF!FF;;$1E!65ESC$FF!FF\\ok______________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________ +2d =a$1E!65ESC$FF!FF]$1E!668$FF!FF;;link$1E!65ESC$FF!FF\\text$1E!65ESC$FF!FF]$1E!668$FF!FF;;$1E!65ESC$FF!FF\\ok______________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________-#______________________________________________________________________________ +52 =@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________$1E!67Display ANSI sequences directly, other control characters as ^X (press RETURN)$FF!FF#_______________________________________________________________________________ +a =atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________ +71 Q less-668/lesstest/lt/hdr-unicode.lt0000644060175306017530000266707214700607704016451 0ustar marknmarkn!lesstest! !version 1 !created 2023-12-09 20:44:46 E "LESS_TERMCAP_am" "1" E "LESS_TERMCAP_cd" "S" E "LESS_TERMCAP_ce" "L" E "LESS_TERMCAP_cl" "A" E "LESS_TERMCAP_cr" "<" E "LESS_TERMCAP_cm" "%p2%d;%p1%dj" E "LESS_TERMCAP_ho" "h" E "LESS_TERMCAP_ll" "l" E "LESS_TERMCAP_mb" "b" E "LESS_TERMCAP_md" "" E "LESS_TERMCAP_me" "" E "LESS_TERMCAP_se" "" E "LESS_TERMCAP_so" "" E "LESS_TERMCAP_sr" "r" E "LESS_TERMCAP_ue" "" E "LESS_TERMCAP_us" "" E "LESS_TERMCAP_vb" "g" E "LESS_TERMCAP_kr" "OC" E "LESS_TERMCAP_kl" "OD" E "LESS_TERMCAP_ku" "OA" E "LESS_TERMCAP_kd" "OB" E "LESS_TERMCAP_kh" "OH" E "LESS_TERMCAP_@7" "OF" E "COLUMNS" "106" E "LINES" "42" E "LESSCHARSET" "utf8" E "LANG" "C" E "LC_CTYPE" "en.UTF-8" T "hdr-unicode" A "hdr-unicode" F "hdr-unicode" 878 ABa.!a.uvwxyz AB★.!a.uvwxyz AB🐋!a.uvwxyz ABa.!★.uvwxyz AB★.!★.uvwxyz AB🐋!★.uvwxyz ABa.!🐋uvwxyz AB★.!🐋uvwxyz AB🐋!🐋uvwxyz AB.a!a.uvwxyz AB.★!a.uvwxyz AB.🐋a.uvwxyz AB.a!★.uvwxyz AB.★!★.uvwxyz AB.🐋★.uvwxyz AB.a!🐋uvwxyz AB.★!🐋uvwxyz AB.🐋🐋uvwxyz ABa.!.auvwxyz AB★.!.auvwxyz AB🐋!.auvwxyz ABa.!.★uvwxyz AB★.!.★uvwxyz AB🐋!.★uvwxyz ABa.!.🐋.wxyz AB★.!.🐋.wxyz AB🐋!.🐋.wxyz ABa.!ca.uvwxyz AB★.!ca.uvwxyz AB🐋!ca.uvwxyz ABa.!c★.uvwxyz AB★.!c★.uvwxyz AB🐋!c★.uvwxyz ABa.!c🐋uvwxyz AB★.!c🐋uvwxyz AB🐋!c🐋uvwxyz AB.a!ca.uvwxyz AB.★!ca.uvwxyz AB.a!c★.uvwxyz AB.★!c★.uvwxyz AB.a!c🐋uvwxyz AB.★!c🐋uvwxyz ABa.!c.auvwxyz AB★.!c.auvwxyz AB🐋!c.auvwxyz ABa.!c.★uvwxyz AB★.!c.★uvwxyz AB🐋!c.★uvwxyz ABa.!c.🐋.wxyz AB★.!c.🐋.wxyz AB🐋!c.🐋.wxyz R =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________@04hdr-unicode@00#_______________________________________________________________________________________________ +20 =AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!ca.uvwxyz____________________________________________________________________________________________AB.★\!ca.uvwxyz____________________________________________________________________________________________AB.a\!c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.a\!c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c.auvwxyz____________________________________________________________________________________________AB★.\!c.auvwxyz____________________________________________________________________________________________AB🐋\!c.auvwxyz____________________________________________________________________________________________ABa.\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________ABa.\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +67 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +31 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:1#________________________________________________________________________________________________________ +1b =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:1#________________________________________________________________________________________________________ +4f =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:1#________________________________________________________________________________________________________ +43 =Ba.\!a.uvwxyz______________________________________________________________________________________________B★.\!a.uvwxyz______________________________________________________________________________________________B🐋\!a.uvwxyz______________________________________________________________________________________________Ba.\!★.uvwxyz______________________________________________________________________________________________B★.\!★.uvwxyz______________________________________________________________________________________________B🐋\!★.uvwxyz______________________________________________________________________________________________Ba.\!🐋uvwxyz______________________________________________________________________________________________B★.\!🐋uvwxyz______________________________________________________________________________________________B🐋\!🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________B.a\!a.uvwxyz______________________________________________________________________________________________B.★\!a.uvwxyz______________________________________________________________________________________________B.🐋a.uvwxyz______________________________________________________________________________________________B.a\!★.uvwxyz______________________________________________________________________________________________B.★\!★.uvwxyz______________________________________________________________________________________________B.🐋★.uvwxyz______________________________________________________________________________________________B.a\!🐋uvwxyz______________________________________________________________________________________________B.★\!🐋uvwxyz______________________________________________________________________________________________B.🐋🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________Ba.\!.auvwxyz______________________________________________________________________________________________B★.\!.auvwxyz______________________________________________________________________________________________B🐋\!.auvwxyz______________________________________________________________________________________________Ba.\!.★uvwxyz______________________________________________________________________________________________B★.\!.★uvwxyz______________________________________________________________________________________________B🐋\!.★uvwxyz______________________________________________________________________________________________Ba.\!.🐋.wxyz______________________________________________________________________________________________B★.\!.🐋.wxyz______________________________________________________________________________________________B🐋\!.🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________Ba.\!ca.uvwxyz_____________________________________________________________________________________________B★.\!ca.uvwxyz_____________________________________________________________________________________________B🐋\!ca.uvwxyz_____________________________________________________________________________________________Ba.\!c★.uvwxyz_____________________________________________________________________________________________B★.\!c★.uvwxyz_____________________________________________________________________________________________B🐋\!c★.uvwxyz_____________________________________________________________________________________________Ba.\!c🐋uvwxyz_____________________________________________________________________________________________B★.\!c🐋uvwxyz_____________________________________________________________________________________________B🐋\!c🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =Ba.\!a.uvwxyz______________________________________________________________________________________________B★.\!a.uvwxyz______________________________________________________________________________________________B🐋\!a.uvwxyz______________________________________________________________________________________________Ba.\!★.uvwxyz______________________________________________________________________________________________B★.\!★.uvwxyz______________________________________________________________________________________________B🐋\!★.uvwxyz______________________________________________________________________________________________Ba.\!🐋uvwxyz______________________________________________________________________________________________B★.\!🐋uvwxyz______________________________________________________________________________________________B🐋\!🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________B.a\!a.uvwxyz______________________________________________________________________________________________B.★\!a.uvwxyz______________________________________________________________________________________________B.🐋a.uvwxyz______________________________________________________________________________________________B.a\!★.uvwxyz______________________________________________________________________________________________B.★\!★.uvwxyz______________________________________________________________________________________________B.🐋★.uvwxyz______________________________________________________________________________________________B.a\!🐋uvwxyz______________________________________________________________________________________________B.★\!🐋uvwxyz______________________________________________________________________________________________B.🐋🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________Ba.\!.auvwxyz______________________________________________________________________________________________B★.\!.auvwxyz______________________________________________________________________________________________B🐋\!.auvwxyz______________________________________________________________________________________________Ba.\!.★uvwxyz______________________________________________________________________________________________B★.\!.★uvwxyz______________________________________________________________________________________________B🐋\!.★uvwxyz______________________________________________________________________________________________Ba.\!.🐋.wxyz______________________________________________________________________________________________B★.\!.🐋.wxyz______________________________________________________________________________________________B🐋\!.🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________Ba.\!ca.uvwxyz_____________________________________________________________________________________________B★.\!ca.uvwxyz_____________________________________________________________________________________________B🐋\!ca.uvwxyz_____________________________________________________________________________________________Ba.\!c★.uvwxyz_____________________________________________________________________________________________B★.\!c★.uvwxyz_____________________________________________________________________________________________B🐋\!c★.uvwxyz_____________________________________________________________________________________________Ba.\!c🐋uvwxyz_____________________________________________________________________________________________B★.\!c🐋uvwxyz_____________________________________________________________________________________________B🐋\!c🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =Ba.\!a.uvwxyz______________________________________________________________________________________________B★.\!a.uvwxyz______________________________________________________________________________________________B🐋\!a.uvwxyz______________________________________________________________________________________________Ba.\!★.uvwxyz______________________________________________________________________________________________B★.\!★.uvwxyz______________________________________________________________________________________________B🐋\!★.uvwxyz______________________________________________________________________________________________Ba.\!🐋uvwxyz______________________________________________________________________________________________B★.\!🐋uvwxyz______________________________________________________________________________________________B🐋\!🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________B.a\!a.uvwxyz______________________________________________________________________________________________B.★\!a.uvwxyz______________________________________________________________________________________________B.🐋a.uvwxyz______________________________________________________________________________________________B.a\!★.uvwxyz______________________________________________________________________________________________B.★\!★.uvwxyz______________________________________________________________________________________________B.🐋★.uvwxyz______________________________________________________________________________________________B.a\!🐋uvwxyz______________________________________________________________________________________________B.★\!🐋uvwxyz______________________________________________________________________________________________B.🐋🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________Ba.\!.auvwxyz______________________________________________________________________________________________B★.\!.auvwxyz______________________________________________________________________________________________B🐋\!.auvwxyz______________________________________________________________________________________________Ba.\!.★uvwxyz______________________________________________________________________________________________B★.\!.★uvwxyz______________________________________________________________________________________________B🐋\!.★uvwxyz______________________________________________________________________________________________Ba.\!.🐋.wxyz______________________________________________________________________________________________B★.\!.🐋.wxyz______________________________________________________________________________________________B🐋\!.🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________Ba.\!ca.uvwxyz_____________________________________________________________________________________________B★.\!ca.uvwxyz_____________________________________________________________________________________________B🐋\!ca.uvwxyz_____________________________________________________________________________________________Ba.\!c★.uvwxyz_____________________________________________________________________________________________B★.\!c★.uvwxyz_____________________________________________________________________________________________B🐋\!c★.uvwxyz_____________________________________________________________________________________________Ba.\!c🐋uvwxyz_____________________________________________________________________________________________B★.\!c🐋uvwxyz_____________________________________________________________________________________________B🐋\!c🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =a.\!a.uvwxyz_______________________________________________________________________________________________★.\!a.uvwxyz_______________________________________________________________________________________________🐋\!a.uvwxyz_______________________________________________________________________________________________a.\!★.uvwxyz_______________________________________________________________________________________________★.\!★.uvwxyz_______________________________________________________________________________________________🐋\!★.uvwxyz_______________________________________________________________________________________________a.\!🐋uvwxyz_______________________________________________________________________________________________★.\!🐋uvwxyz_______________________________________________________________________________________________🐋\!🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________.a\!a.uvwxyz_______________________________________________________________________________________________.★\!a.uvwxyz_______________________________________________________________________________________________.🐋a.uvwxyz_______________________________________________________________________________________________.a\!★.uvwxyz_______________________________________________________________________________________________.★\!★.uvwxyz_______________________________________________________________________________________________.🐋★.uvwxyz_______________________________________________________________________________________________.a\!🐋uvwxyz_______________________________________________________________________________________________.★\!🐋uvwxyz_______________________________________________________________________________________________.🐋🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________a.\!.auvwxyz_______________________________________________________________________________________________★.\!.auvwxyz_______________________________________________________________________________________________🐋\!.auvwxyz_______________________________________________________________________________________________a.\!.★uvwxyz_______________________________________________________________________________________________★.\!.★uvwxyz_______________________________________________________________________________________________🐋\!.★uvwxyz_______________________________________________________________________________________________a.\!.🐋.wxyz_______________________________________________________________________________________________★.\!.🐋.wxyz_______________________________________________________________________________________________🐋\!.🐋.wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________a.\!ca.uvwxyz______________________________________________________________________________________________★.\!ca.uvwxyz______________________________________________________________________________________________🐋\!ca.uvwxyz______________________________________________________________________________________________a.\!c★.uvwxyz______________________________________________________________________________________________★.\!c★.uvwxyz______________________________________________________________________________________________🐋\!c★.uvwxyz______________________________________________________________________________________________a.\!c🐋uvwxyz______________________________________________________________________________________________★.\!c🐋uvwxyz______________________________________________________________________________________________🐋\!c🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =a.\!a.uvwxyz_______________________________________________________________________________________________★.\!a.uvwxyz_______________________________________________________________________________________________🐋\!a.uvwxyz_______________________________________________________________________________________________a.\!★.uvwxyz_______________________________________________________________________________________________★.\!★.uvwxyz_______________________________________________________________________________________________🐋\!★.uvwxyz_______________________________________________________________________________________________a.\!🐋uvwxyz_______________________________________________________________________________________________★.\!🐋uvwxyz_______________________________________________________________________________________________🐋\!🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________.a\!a.uvwxyz_______________________________________________________________________________________________.★\!a.uvwxyz_______________________________________________________________________________________________.🐋a.uvwxyz_______________________________________________________________________________________________.a\!★.uvwxyz_______________________________________________________________________________________________.★\!★.uvwxyz_______________________________________________________________________________________________.🐋★.uvwxyz_______________________________________________________________________________________________.a\!🐋uvwxyz_______________________________________________________________________________________________.★\!🐋uvwxyz_______________________________________________________________________________________________.🐋🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________a.\!.auvwxyz_______________________________________________________________________________________________★.\!.auvwxyz_______________________________________________________________________________________________🐋\!.auvwxyz_______________________________________________________________________________________________a.\!.★uvwxyz_______________________________________________________________________________________________★.\!.★uvwxyz_______________________________________________________________________________________________🐋\!.★uvwxyz_______________________________________________________________________________________________a.\!.🐋.wxyz_______________________________________________________________________________________________★.\!.🐋.wxyz_______________________________________________________________________________________________🐋\!.🐋.wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________a.\!ca.uvwxyz______________________________________________________________________________________________★.\!ca.uvwxyz______________________________________________________________________________________________🐋\!ca.uvwxyz______________________________________________________________________________________________a.\!c★.uvwxyz______________________________________________________________________________________________★.\!c★.uvwxyz______________________________________________________________________________________________🐋\!c★.uvwxyz______________________________________________________________________________________________a.\!c🐋uvwxyz______________________________________________________________________________________________★.\!c🐋uvwxyz______________________________________________________________________________________________🐋\!c🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =a.\!a.uvwxyz_______________________________________________________________________________________________★.\!a.uvwxyz_______________________________________________________________________________________________🐋\!a.uvwxyz_______________________________________________________________________________________________a.\!★.uvwxyz_______________________________________________________________________________________________★.\!★.uvwxyz_______________________________________________________________________________________________🐋\!★.uvwxyz_______________________________________________________________________________________________a.\!🐋uvwxyz_______________________________________________________________________________________________★.\!🐋uvwxyz_______________________________________________________________________________________________🐋\!🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________.a\!a.uvwxyz_______________________________________________________________________________________________.★\!a.uvwxyz_______________________________________________________________________________________________.🐋a.uvwxyz_______________________________________________________________________________________________.a\!★.uvwxyz_______________________________________________________________________________________________.★\!★.uvwxyz_______________________________________________________________________________________________.🐋★.uvwxyz_______________________________________________________________________________________________.a\!🐋uvwxyz_______________________________________________________________________________________________.★\!🐋uvwxyz_______________________________________________________________________________________________.🐋🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________a.\!.auvwxyz_______________________________________________________________________________________________★.\!.auvwxyz_______________________________________________________________________________________________🐋\!.auvwxyz_______________________________________________________________________________________________a.\!.★uvwxyz_______________________________________________________________________________________________★.\!.★uvwxyz_______________________________________________________________________________________________🐋\!.★uvwxyz_______________________________________________________________________________________________a.\!.🐋.wxyz_______________________________________________________________________________________________★.\!.🐋.wxyz_______________________________________________________________________________________________🐋\!.🐋.wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________a.\!ca.uvwxyz______________________________________________________________________________________________★.\!ca.uvwxyz______________________________________________________________________________________________🐋\!ca.uvwxyz______________________________________________________________________________________________a.\!c★.uvwxyz______________________________________________________________________________________________★.\!c★.uvwxyz______________________________________________________________________________________________🐋\!c★.uvwxyz______________________________________________________________________________________________a.\!c🐋uvwxyz______________________________________________________________________________________________★.\!c🐋uvwxyz______________________________________________________________________________________________🐋\!c🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =.\!a.uvwxyz________________________________________________________________________________________________.\!a.uvwxyz________________________________________________________________________________________________@04 @00\!a.uvwxyz________________________________________________________________________________________________.\!★.uvwxyz________________________________________________________________________________________________.\!★.uvwxyz________________________________________________________________________________________________@04 @00\!★.uvwxyz________________________________________________________________________________________________.\!🐋uvwxyz________________________________________________________________________________________________.\!🐋uvwxyz________________________________________________________________________________________________@04 @00\!🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________a\!a.uvwxyz________________________________________________________________________________________________★\!a.uvwxyz________________________________________________________________________________________________🐋a.uvwxyz________________________________________________________________________________________________a\!★.uvwxyz________________________________________________________________________________________________★\!★.uvwxyz________________________________________________________________________________________________🐋★.uvwxyz________________________________________________________________________________________________a\!🐋uvwxyz________________________________________________________________________________________________★\!🐋uvwxyz________________________________________________________________________________________________🐋🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________.\!.auvwxyz________________________________________________________________________________________________.\!.auvwxyz________________________________________________________________________________________________@04 @00\!.auvwxyz________________________________________________________________________________________________.\!.★uvwxyz________________________________________________________________________________________________.\!.★uvwxyz________________________________________________________________________________________________@04 @00\!.★uvwxyz________________________________________________________________________________________________.\!.🐋.wxyz________________________________________________________________________________________________.\!.🐋.wxyz________________________________________________________________________________________________@04 @00\!.🐋.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________.\!ca.uvwxyz_______________________________________________________________________________________________.\!ca.uvwxyz_______________________________________________________________________________________________@04 @00\!ca.uvwxyz_______________________________________________________________________________________________.\!c★.uvwxyz_______________________________________________________________________________________________.\!c★.uvwxyz_______________________________________________________________________________________________@04 @00\!c★.uvwxyz_______________________________________________________________________________________________.\!c🐋uvwxyz_______________________________________________________________________________________________.\!c🐋uvwxyz_______________________________________________________________________________________________@04 @00\!c🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =.\!a.uvwxyz________________________________________________________________________________________________.\!a.uvwxyz________________________________________________________________________________________________@04 @00\!a.uvwxyz________________________________________________________________________________________________.\!★.uvwxyz________________________________________________________________________________________________.\!★.uvwxyz________________________________________________________________________________________________@04 @00\!★.uvwxyz________________________________________________________________________________________________.\!🐋uvwxyz________________________________________________________________________________________________.\!🐋uvwxyz________________________________________________________________________________________________@04 @00\!🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________a\!a.uvwxyz________________________________________________________________________________________________★\!a.uvwxyz________________________________________________________________________________________________🐋a.uvwxyz________________________________________________________________________________________________a\!★.uvwxyz________________________________________________________________________________________________★\!★.uvwxyz________________________________________________________________________________________________🐋★.uvwxyz________________________________________________________________________________________________a\!🐋uvwxyz________________________________________________________________________________________________★\!🐋uvwxyz________________________________________________________________________________________________🐋🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________.\!.auvwxyz________________________________________________________________________________________________.\!.auvwxyz________________________________________________________________________________________________@04 @00\!.auvwxyz________________________________________________________________________________________________.\!.★uvwxyz________________________________________________________________________________________________.\!.★uvwxyz________________________________________________________________________________________________@04 @00\!.★uvwxyz________________________________________________________________________________________________.\!.🐋.wxyz________________________________________________________________________________________________.\!.🐋.wxyz________________________________________________________________________________________________@04 @00\!.🐋.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________.\!ca.uvwxyz_______________________________________________________________________________________________.\!ca.uvwxyz_______________________________________________________________________________________________@04 @00\!ca.uvwxyz_______________________________________________________________________________________________.\!c★.uvwxyz_______________________________________________________________________________________________.\!c★.uvwxyz_______________________________________________________________________________________________@04 @00\!c★.uvwxyz_______________________________________________________________________________________________.\!c🐋uvwxyz_______________________________________________________________________________________________.\!c🐋uvwxyz_______________________________________________________________________________________________@04 @00\!c🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =.\!a.uvwxyz________________________________________________________________________________________________.\!a.uvwxyz________________________________________________________________________________________________@04 @00\!a.uvwxyz________________________________________________________________________________________________.\!★.uvwxyz________________________________________________________________________________________________.\!★.uvwxyz________________________________________________________________________________________________@04 @00\!★.uvwxyz________________________________________________________________________________________________.\!🐋uvwxyz________________________________________________________________________________________________.\!🐋uvwxyz________________________________________________________________________________________________@04 @00\!🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________a\!a.uvwxyz________________________________________________________________________________________________★\!a.uvwxyz________________________________________________________________________________________________🐋a.uvwxyz________________________________________________________________________________________________a\!★.uvwxyz________________________________________________________________________________________________★\!★.uvwxyz________________________________________________________________________________________________🐋★.uvwxyz________________________________________________________________________________________________a\!🐋uvwxyz________________________________________________________________________________________________★\!🐋uvwxyz________________________________________________________________________________________________🐋🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________.\!.auvwxyz________________________________________________________________________________________________.\!.auvwxyz________________________________________________________________________________________________@04 @00\!.auvwxyz________________________________________________________________________________________________.\!.★uvwxyz________________________________________________________________________________________________.\!.★uvwxyz________________________________________________________________________________________________@04 @00\!.★uvwxyz________________________________________________________________________________________________.\!.🐋.wxyz________________________________________________________________________________________________.\!.🐋.wxyz________________________________________________________________________________________________@04 @00\!.🐋.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________.\!ca.uvwxyz_______________________________________________________________________________________________.\!ca.uvwxyz_______________________________________________________________________________________________@04 @00\!ca.uvwxyz_______________________________________________________________________________________________.\!c★.uvwxyz_______________________________________________________________________________________________.\!c★.uvwxyz_______________________________________________________________________________________________@04 @00\!c★.uvwxyz_______________________________________________________________________________________________.\!c🐋uvwxyz_______________________________________________________________________________________________.\!c🐋uvwxyz_______________________________________________________________________________________________@04 @00\!c🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =\!a.uvwxyz_________________________________________________________________________________________________\!a.uvwxyz_________________________________________________________________________________________________\!a.uvwxyz_________________________________________________________________________________________________\!★.uvwxyz_________________________________________________________________________________________________\!★.uvwxyz_________________________________________________________________________________________________\!★.uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________\!a.uvwxyz_________________________________________________________________________________________________\!a.uvwxyz_________________________________________________________________________________________________@04 @00a.uvwxyz_________________________________________________________________________________________________\!★.uvwxyz_________________________________________________________________________________________________\!★.uvwxyz_________________________________________________________________________________________________@04 @00★.uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz_________________________________________________________________________________________________@04 @00🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.🐋.wxyz_________________________________________________________________________________________________\!.🐋.wxyz_________________________________________________________________________________________________\!.🐋.wxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =\!a.uvwxyz_________________________________________________________________________________________________\!a.uvwxyz_________________________________________________________________________________________________\!a.uvwxyz_________________________________________________________________________________________________\!★.uvwxyz_________________________________________________________________________________________________\!★.uvwxyz_________________________________________________________________________________________________\!★.uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________\!a.uvwxyz_________________________________________________________________________________________________\!a.uvwxyz_________________________________________________________________________________________________@04 @00a.uvwxyz_________________________________________________________________________________________________\!★.uvwxyz_________________________________________________________________________________________________\!★.uvwxyz_________________________________________________________________________________________________@04 @00★.uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz_________________________________________________________________________________________________@04 @00🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.🐋.wxyz_________________________________________________________________________________________________\!.🐋.wxyz_________________________________________________________________________________________________\!.🐋.wxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =\!a.uvwxyz_________________________________________________________________________________________________\!a.uvwxyz_________________________________________________________________________________________________\!a.uvwxyz_________________________________________________________________________________________________\!★.uvwxyz_________________________________________________________________________________________________\!★.uvwxyz_________________________________________________________________________________________________\!★.uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________\!a.uvwxyz_________________________________________________________________________________________________\!a.uvwxyz_________________________________________________________________________________________________@04 @00a.uvwxyz_________________________________________________________________________________________________\!★.uvwxyz_________________________________________________________________________________________________\!★.uvwxyz_________________________________________________________________________________________________@04 @00★.uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz_________________________________________________________________________________________________@04 @00🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.🐋.wxyz_________________________________________________________________________________________________\!.🐋.wxyz_________________________________________________________________________________________________\!.🐋.wxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c🐋uvwxyz_________________________________________________________________________________________________c🐋uvwxyz_________________________________________________________________________________________________c🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c🐋uvwxyz_________________________________________________________________________________________________c🐋uvwxyz_________________________________________________________________________________________________c🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c🐋uvwxyz_________________________________________________________________________________________________c🐋uvwxyz_________________________________________________________________________________________________c🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz__________________________________________________________________________________________________________________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz__________________________________________________________________________________________________________________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz__________________________________________________________________________________________________________________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz__________________________________________________________________________________________________________________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +7b =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +20 =AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!ca.uvwxyz____________________________________________________________________________________________AB.★\!ca.uvwxyz____________________________________________________________________________________________AB.a\!c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.a\!c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c.auvwxyz____________________________________________________________________________________________AB★.\!c.auvwxyz____________________________________________________________________________________________AB🐋\!c.auvwxyz____________________________________________________________________________________________ABa.\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________ABa.\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!ca.uvwxyz____________________________________________________________________________________________AB.★\!ca.uvwxyz____________________________________________________________________________________________AB.a\!c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.a\!c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c.auvwxyz____________________________________________________________________________________________AB★.\!c.auvwxyz____________________________________________________________________________________________AB🐋\!c.auvwxyz____________________________________________________________________________________________ABa.\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________ABa.\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!ca.uvwxyz____________________________________________________________________________________________AB.★\!ca.uvwxyz____________________________________________________________________________________________AB.a\!c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.a\!c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c.auvwxyz____________________________________________________________________________________________AB★.\!c.auvwxyz____________________________________________________________________________________________AB🐋\!c.auvwxyz____________________________________________________________________________________________ABa.\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________ABa.\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =B.a\!🐋uvwxyz______________________________________________________________________________________________B.★\!🐋uvwxyz______________________________________________________________________________________________B.🐋🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________Ba.\!.auvwxyz______________________________________________________________________________________________B★.\!.auvwxyz______________________________________________________________________________________________B🐋\!.auvwxyz______________________________________________________________________________________________Ba.\!.★uvwxyz______________________________________________________________________________________________B★.\!.★uvwxyz______________________________________________________________________________________________B🐋\!.★uvwxyz______________________________________________________________________________________________Ba.\!.🐋.wxyz______________________________________________________________________________________________B★.\!.🐋.wxyz______________________________________________________________________________________________B🐋\!.🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________Ba.\!ca.uvwxyz_____________________________________________________________________________________________B★.\!ca.uvwxyz_____________________________________________________________________________________________B🐋\!ca.uvwxyz_____________________________________________________________________________________________Ba.\!c★.uvwxyz_____________________________________________________________________________________________B★.\!c★.uvwxyz_____________________________________________________________________________________________B🐋\!c★.uvwxyz_____________________________________________________________________________________________Ba.\!c🐋uvwxyz_____________________________________________________________________________________________B★.\!c🐋uvwxyz_____________________________________________________________________________________________B🐋\!c🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________B.a\!ca.uvwxyz_____________________________________________________________________________________________B.★\!ca.uvwxyz_____________________________________________________________________________________________B.a\!c★.uvwxyz_____________________________________________________________________________________________B.★\!c★.uvwxyz_____________________________________________________________________________________________B.a\!c🐋uvwxyz_____________________________________________________________________________________________B.★\!c🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________Ba.\!c.auvwxyz_____________________________________________________________________________________________B★.\!c.auvwxyz_____________________________________________________________________________________________B🐋\!c.auvwxyz_____________________________________________________________________________________________Ba.\!c.★uvwxyz_____________________________________________________________________________________________B★.\!c.★uvwxyz_____________________________________________________________________________________________B🐋\!c.★uvwxyz_____________________________________________________________________________________________Ba.\!c.🐋.wxyz_____________________________________________________________________________________________B★.\!c.🐋.wxyz_____________________________________________________________________________________________B🐋\!c.🐋.wxyz_____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =B.a\!🐋uvwxyz______________________________________________________________________________________________B.★\!🐋uvwxyz______________________________________________________________________________________________B.🐋🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________Ba.\!.auvwxyz______________________________________________________________________________________________B★.\!.auvwxyz______________________________________________________________________________________________B🐋\!.auvwxyz______________________________________________________________________________________________Ba.\!.★uvwxyz______________________________________________________________________________________________B★.\!.★uvwxyz______________________________________________________________________________________________B🐋\!.★uvwxyz______________________________________________________________________________________________Ba.\!.🐋.wxyz______________________________________________________________________________________________B★.\!.🐋.wxyz______________________________________________________________________________________________B🐋\!.🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________Ba.\!ca.uvwxyz_____________________________________________________________________________________________B★.\!ca.uvwxyz_____________________________________________________________________________________________B🐋\!ca.uvwxyz_____________________________________________________________________________________________Ba.\!c★.uvwxyz_____________________________________________________________________________________________B★.\!c★.uvwxyz_____________________________________________________________________________________________B🐋\!c★.uvwxyz_____________________________________________________________________________________________Ba.\!c🐋uvwxyz_____________________________________________________________________________________________B★.\!c🐋uvwxyz_____________________________________________________________________________________________B🐋\!c🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________B.a\!ca.uvwxyz_____________________________________________________________________________________________B.★\!ca.uvwxyz_____________________________________________________________________________________________B.a\!c★.uvwxyz_____________________________________________________________________________________________B.★\!c★.uvwxyz_____________________________________________________________________________________________B.a\!c🐋uvwxyz_____________________________________________________________________________________________B.★\!c🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________Ba.\!c.auvwxyz_____________________________________________________________________________________________B★.\!c.auvwxyz_____________________________________________________________________________________________B🐋\!c.auvwxyz_____________________________________________________________________________________________Ba.\!c.★uvwxyz_____________________________________________________________________________________________B★.\!c.★uvwxyz_____________________________________________________________________________________________B🐋\!c.★uvwxyz_____________________________________________________________________________________________Ba.\!c.🐋.wxyz_____________________________________________________________________________________________B★.\!c.🐋.wxyz_____________________________________________________________________________________________B🐋\!c.🐋.wxyz_____________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =B.a\!🐋uvwxyz______________________________________________________________________________________________B.★\!🐋uvwxyz______________________________________________________________________________________________B.🐋🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________Ba.\!.auvwxyz______________________________________________________________________________________________B★.\!.auvwxyz______________________________________________________________________________________________B🐋\!.auvwxyz______________________________________________________________________________________________Ba.\!.★uvwxyz______________________________________________________________________________________________B★.\!.★uvwxyz______________________________________________________________________________________________B🐋\!.★uvwxyz______________________________________________________________________________________________Ba.\!.🐋.wxyz______________________________________________________________________________________________B★.\!.🐋.wxyz______________________________________________________________________________________________B🐋\!.🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________Ba.\!ca.uvwxyz_____________________________________________________________________________________________B★.\!ca.uvwxyz_____________________________________________________________________________________________B🐋\!ca.uvwxyz_____________________________________________________________________________________________Ba.\!c★.uvwxyz_____________________________________________________________________________________________B★.\!c★.uvwxyz_____________________________________________________________________________________________B🐋\!c★.uvwxyz_____________________________________________________________________________________________Ba.\!c🐋uvwxyz_____________________________________________________________________________________________B★.\!c🐋uvwxyz_____________________________________________________________________________________________B🐋\!c🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________B.a\!ca.uvwxyz_____________________________________________________________________________________________B.★\!ca.uvwxyz_____________________________________________________________________________________________B.a\!c★.uvwxyz_____________________________________________________________________________________________B.★\!c★.uvwxyz_____________________________________________________________________________________________B.a\!c🐋uvwxyz_____________________________________________________________________________________________B.★\!c🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________Ba.\!c.auvwxyz_____________________________________________________________________________________________B★.\!c.auvwxyz_____________________________________________________________________________________________B🐋\!c.auvwxyz_____________________________________________________________________________________________Ba.\!c.★uvwxyz_____________________________________________________________________________________________B★.\!c.★uvwxyz_____________________________________________________________________________________________B🐋\!c.★uvwxyz_____________________________________________________________________________________________Ba.\!c.🐋.wxyz_____________________________________________________________________________________________B★.\!c.🐋.wxyz_____________________________________________________________________________________________B🐋\!c.🐋.wxyz_____________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =.a\!🐋uvwxyz_______________________________________________________________________________________________.★\!🐋uvwxyz_______________________________________________________________________________________________.🐋🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________a.\!.auvwxyz_______________________________________________________________________________________________★.\!.auvwxyz_______________________________________________________________________________________________🐋\!.auvwxyz_______________________________________________________________________________________________a.\!.★uvwxyz_______________________________________________________________________________________________★.\!.★uvwxyz_______________________________________________________________________________________________🐋\!.★uvwxyz_______________________________________________________________________________________________a.\!.🐋.wxyz_______________________________________________________________________________________________★.\!.🐋.wxyz_______________________________________________________________________________________________🐋\!.🐋.wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________a.\!ca.uvwxyz______________________________________________________________________________________________★.\!ca.uvwxyz______________________________________________________________________________________________🐋\!ca.uvwxyz______________________________________________________________________________________________a.\!c★.uvwxyz______________________________________________________________________________________________★.\!c★.uvwxyz______________________________________________________________________________________________🐋\!c★.uvwxyz______________________________________________________________________________________________a.\!c🐋uvwxyz______________________________________________________________________________________________★.\!c🐋uvwxyz______________________________________________________________________________________________🐋\!c🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________.a\!ca.uvwxyz______________________________________________________________________________________________.★\!ca.uvwxyz______________________________________________________________________________________________.a\!c★.uvwxyz______________________________________________________________________________________________.★\!c★.uvwxyz______________________________________________________________________________________________.a\!c🐋uvwxyz______________________________________________________________________________________________.★\!c🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________a.\!c.auvwxyz______________________________________________________________________________________________★.\!c.auvwxyz______________________________________________________________________________________________🐋\!c.auvwxyz______________________________________________________________________________________________a.\!c.★uvwxyz______________________________________________________________________________________________★.\!c.★uvwxyz______________________________________________________________________________________________🐋\!c.★uvwxyz______________________________________________________________________________________________a.\!c.🐋.wxyz______________________________________________________________________________________________★.\!c.🐋.wxyz______________________________________________________________________________________________🐋\!c.🐋.wxyz______________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =.a\!🐋uvwxyz_______________________________________________________________________________________________.★\!🐋uvwxyz_______________________________________________________________________________________________.🐋🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________a.\!.auvwxyz_______________________________________________________________________________________________★.\!.auvwxyz_______________________________________________________________________________________________🐋\!.auvwxyz_______________________________________________________________________________________________a.\!.★uvwxyz_______________________________________________________________________________________________★.\!.★uvwxyz_______________________________________________________________________________________________🐋\!.★uvwxyz_______________________________________________________________________________________________a.\!.🐋.wxyz_______________________________________________________________________________________________★.\!.🐋.wxyz_______________________________________________________________________________________________🐋\!.🐋.wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________a.\!ca.uvwxyz______________________________________________________________________________________________★.\!ca.uvwxyz______________________________________________________________________________________________🐋\!ca.uvwxyz______________________________________________________________________________________________a.\!c★.uvwxyz______________________________________________________________________________________________★.\!c★.uvwxyz______________________________________________________________________________________________🐋\!c★.uvwxyz______________________________________________________________________________________________a.\!c🐋uvwxyz______________________________________________________________________________________________★.\!c🐋uvwxyz______________________________________________________________________________________________🐋\!c🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________.a\!ca.uvwxyz______________________________________________________________________________________________.★\!ca.uvwxyz______________________________________________________________________________________________.a\!c★.uvwxyz______________________________________________________________________________________________.★\!c★.uvwxyz______________________________________________________________________________________________.a\!c🐋uvwxyz______________________________________________________________________________________________.★\!c🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________a.\!c.auvwxyz______________________________________________________________________________________________★.\!c.auvwxyz______________________________________________________________________________________________🐋\!c.auvwxyz______________________________________________________________________________________________a.\!c.★uvwxyz______________________________________________________________________________________________★.\!c.★uvwxyz______________________________________________________________________________________________🐋\!c.★uvwxyz______________________________________________________________________________________________a.\!c.🐋.wxyz______________________________________________________________________________________________★.\!c.🐋.wxyz______________________________________________________________________________________________🐋\!c.🐋.wxyz______________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =.a\!🐋uvwxyz_______________________________________________________________________________________________.★\!🐋uvwxyz_______________________________________________________________________________________________.🐋🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________a.\!.auvwxyz_______________________________________________________________________________________________★.\!.auvwxyz_______________________________________________________________________________________________🐋\!.auvwxyz_______________________________________________________________________________________________a.\!.★uvwxyz_______________________________________________________________________________________________★.\!.★uvwxyz_______________________________________________________________________________________________🐋\!.★uvwxyz_______________________________________________________________________________________________a.\!.🐋.wxyz_______________________________________________________________________________________________★.\!.🐋.wxyz_______________________________________________________________________________________________🐋\!.🐋.wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________a.\!ca.uvwxyz______________________________________________________________________________________________★.\!ca.uvwxyz______________________________________________________________________________________________🐋\!ca.uvwxyz______________________________________________________________________________________________a.\!c★.uvwxyz______________________________________________________________________________________________★.\!c★.uvwxyz______________________________________________________________________________________________🐋\!c★.uvwxyz______________________________________________________________________________________________a.\!c🐋uvwxyz______________________________________________________________________________________________★.\!c🐋uvwxyz______________________________________________________________________________________________🐋\!c🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________.a\!ca.uvwxyz______________________________________________________________________________________________.★\!ca.uvwxyz______________________________________________________________________________________________.a\!c★.uvwxyz______________________________________________________________________________________________.★\!c★.uvwxyz______________________________________________________________________________________________.a\!c🐋uvwxyz______________________________________________________________________________________________.★\!c🐋uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________a.\!c.auvwxyz______________________________________________________________________________________________★.\!c.auvwxyz______________________________________________________________________________________________🐋\!c.auvwxyz______________________________________________________________________________________________a.\!c.★uvwxyz______________________________________________________________________________________________★.\!c.★uvwxyz______________________________________________________________________________________________🐋\!c.★uvwxyz______________________________________________________________________________________________a.\!c.🐋.wxyz______________________________________________________________________________________________★.\!c.🐋.wxyz______________________________________________________________________________________________🐋\!c.🐋.wxyz______________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =a\!🐋uvwxyz________________________________________________________________________________________________★\!🐋uvwxyz________________________________________________________________________________________________🐋🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________.\!.auvwxyz________________________________________________________________________________________________.\!.auvwxyz________________________________________________________________________________________________@04 @00\!.auvwxyz________________________________________________________________________________________________.\!.★uvwxyz________________________________________________________________________________________________.\!.★uvwxyz________________________________________________________________________________________________@04 @00\!.★uvwxyz________________________________________________________________________________________________.\!.🐋.wxyz________________________________________________________________________________________________.\!.🐋.wxyz________________________________________________________________________________________________@04 @00\!.🐋.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________.\!ca.uvwxyz_______________________________________________________________________________________________.\!ca.uvwxyz_______________________________________________________________________________________________@04 @00\!ca.uvwxyz_______________________________________________________________________________________________.\!c★.uvwxyz_______________________________________________________________________________________________.\!c★.uvwxyz_______________________________________________________________________________________________@04 @00\!c★.uvwxyz_______________________________________________________________________________________________.\!c🐋uvwxyz_______________________________________________________________________________________________.\!c🐋uvwxyz_______________________________________________________________________________________________@04 @00\!c🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________a\!ca.uvwxyz_______________________________________________________________________________________________★\!ca.uvwxyz_______________________________________________________________________________________________a\!c★.uvwxyz_______________________________________________________________________________________________★\!c★.uvwxyz_______________________________________________________________________________________________a\!c🐋uvwxyz_______________________________________________________________________________________________★\!c🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________.\!c.auvwxyz_______________________________________________________________________________________________.\!c.auvwxyz_______________________________________________________________________________________________@04 @00\!c.auvwxyz_______________________________________________________________________________________________.\!c.★uvwxyz_______________________________________________________________________________________________.\!c.★uvwxyz_______________________________________________________________________________________________@04 @00\!c.★uvwxyz_______________________________________________________________________________________________.\!c.🐋.wxyz_______________________________________________________________________________________________.\!c.🐋.wxyz_______________________________________________________________________________________________@04 @00\!c.🐋.wxyz_______________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =a\!🐋uvwxyz________________________________________________________________________________________________★\!🐋uvwxyz________________________________________________________________________________________________🐋🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________.\!.auvwxyz________________________________________________________________________________________________.\!.auvwxyz________________________________________________________________________________________________@04 @00\!.auvwxyz________________________________________________________________________________________________.\!.★uvwxyz________________________________________________________________________________________________.\!.★uvwxyz________________________________________________________________________________________________@04 @00\!.★uvwxyz________________________________________________________________________________________________.\!.🐋.wxyz________________________________________________________________________________________________.\!.🐋.wxyz________________________________________________________________________________________________@04 @00\!.🐋.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________.\!ca.uvwxyz_______________________________________________________________________________________________.\!ca.uvwxyz_______________________________________________________________________________________________@04 @00\!ca.uvwxyz_______________________________________________________________________________________________.\!c★.uvwxyz_______________________________________________________________________________________________.\!c★.uvwxyz_______________________________________________________________________________________________@04 @00\!c★.uvwxyz_______________________________________________________________________________________________.\!c🐋uvwxyz_______________________________________________________________________________________________.\!c🐋uvwxyz_______________________________________________________________________________________________@04 @00\!c🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________a\!ca.uvwxyz_______________________________________________________________________________________________★\!ca.uvwxyz_______________________________________________________________________________________________a\!c★.uvwxyz_______________________________________________________________________________________________★\!c★.uvwxyz_______________________________________________________________________________________________a\!c🐋uvwxyz_______________________________________________________________________________________________★\!c🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________.\!c.auvwxyz_______________________________________________________________________________________________.\!c.auvwxyz_______________________________________________________________________________________________@04 @00\!c.auvwxyz_______________________________________________________________________________________________.\!c.★uvwxyz_______________________________________________________________________________________________.\!c.★uvwxyz_______________________________________________________________________________________________@04 @00\!c.★uvwxyz_______________________________________________________________________________________________.\!c.🐋.wxyz_______________________________________________________________________________________________.\!c.🐋.wxyz_______________________________________________________________________________________________@04 @00\!c.🐋.wxyz_______________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =a\!🐋uvwxyz________________________________________________________________________________________________★\!🐋uvwxyz________________________________________________________________________________________________🐋🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________.\!.auvwxyz________________________________________________________________________________________________.\!.auvwxyz________________________________________________________________________________________________@04 @00\!.auvwxyz________________________________________________________________________________________________.\!.★uvwxyz________________________________________________________________________________________________.\!.★uvwxyz________________________________________________________________________________________________@04 @00\!.★uvwxyz________________________________________________________________________________________________.\!.🐋.wxyz________________________________________________________________________________________________.\!.🐋.wxyz________________________________________________________________________________________________@04 @00\!.🐋.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________.\!ca.uvwxyz_______________________________________________________________________________________________.\!ca.uvwxyz_______________________________________________________________________________________________@04 @00\!ca.uvwxyz_______________________________________________________________________________________________.\!c★.uvwxyz_______________________________________________________________________________________________.\!c★.uvwxyz_______________________________________________________________________________________________@04 @00\!c★.uvwxyz_______________________________________________________________________________________________.\!c🐋uvwxyz_______________________________________________________________________________________________.\!c🐋uvwxyz_______________________________________________________________________________________________@04 @00\!c🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________a\!ca.uvwxyz_______________________________________________________________________________________________★\!ca.uvwxyz_______________________________________________________________________________________________a\!c★.uvwxyz_______________________________________________________________________________________________★\!c★.uvwxyz_______________________________________________________________________________________________a\!c🐋uvwxyz_______________________________________________________________________________________________★\!c🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________.\!c.auvwxyz_______________________________________________________________________________________________.\!c.auvwxyz_______________________________________________________________________________________________@04 @00\!c.auvwxyz_______________________________________________________________________________________________.\!c.★uvwxyz_______________________________________________________________________________________________.\!c.★uvwxyz_______________________________________________________________________________________________@04 @00\!c.★uvwxyz_______________________________________________________________________________________________.\!c.🐋.wxyz_______________________________________________________________________________________________.\!c.🐋.wxyz_______________________________________________________________________________________________@04 @00\!c.🐋.wxyz_______________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =\!🐋uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz_________________________________________________________________________________________________@04 @00🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.🐋.wxyz_________________________________________________________________________________________________\!.🐋.wxyz_________________________________________________________________________________________________\!.🐋.wxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________\!c.auvwxyz________________________________________________________________________________________________\!c.auvwxyz________________________________________________________________________________________________\!c.auvwxyz________________________________________________________________________________________________\!c.★uvwxyz________________________________________________________________________________________________\!c.★uvwxyz________________________________________________________________________________________________\!c.★uvwxyz________________________________________________________________________________________________\!c.🐋.wxyz________________________________________________________________________________________________\!c.🐋.wxyz________________________________________________________________________________________________\!c.🐋.wxyz________________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =\!🐋uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz_________________________________________________________________________________________________@04 @00🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.🐋.wxyz_________________________________________________________________________________________________\!.🐋.wxyz_________________________________________________________________________________________________\!.🐋.wxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________\!c.auvwxyz________________________________________________________________________________________________\!c.auvwxyz________________________________________________________________________________________________\!c.auvwxyz________________________________________________________________________________________________\!c.★uvwxyz________________________________________________________________________________________________\!c.★uvwxyz________________________________________________________________________________________________\!c.★uvwxyz________________________________________________________________________________________________\!c.🐋.wxyz________________________________________________________________________________________________\!c.🐋.wxyz________________________________________________________________________________________________\!c.🐋.wxyz________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =\!🐋uvwxyz_________________________________________________________________________________________________\!🐋uvwxyz_________________________________________________________________________________________________@04 @00🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.auvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.★uvwxyz_________________________________________________________________________________________________\!.🐋.wxyz_________________________________________________________________________________________________\!.🐋.wxyz_________________________________________________________________________________________________\!.🐋.wxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!ca.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c★.uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz________________________________________________________________________________________________\!c🐋uvwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________\!c.auvwxyz________________________________________________________________________________________________\!c.auvwxyz________________________________________________________________________________________________\!c.auvwxyz________________________________________________________________________________________________\!c.★uvwxyz________________________________________________________________________________________________\!c.★uvwxyz________________________________________________________________________________________________\!c.★uvwxyz________________________________________________________________________________________________\!c.🐋.wxyz________________________________________________________________________________________________\!c.🐋.wxyz________________________________________________________________________________________________\!c.🐋.wxyz________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c🐋uvwxyz_________________________________________________________________________________________________c🐋uvwxyz_________________________________________________________________________________________________c🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c🐋uvwxyz_________________________________________________________________________________________________c🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________c.auvwxyz_________________________________________________________________________________________________c.auvwxyz_________________________________________________________________________________________________c.auvwxyz_________________________________________________________________________________________________c.★uvwxyz_________________________________________________________________________________________________c.★uvwxyz_________________________________________________________________________________________________c.★uvwxyz_________________________________________________________________________________________________c.🐋.wxyz_________________________________________________________________________________________________c.🐋.wxyz_________________________________________________________________________________________________c.🐋.wxyz_________________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c🐋uvwxyz_________________________________________________________________________________________________c🐋uvwxyz_________________________________________________________________________________________________c🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c🐋uvwxyz_________________________________________________________________________________________________c🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________c.auvwxyz_________________________________________________________________________________________________c.auvwxyz_________________________________________________________________________________________________c.auvwxyz_________________________________________________________________________________________________c.★uvwxyz_________________________________________________________________________________________________c.★uvwxyz_________________________________________________________________________________________________c.★uvwxyz_________________________________________________________________________________________________c.🐋.wxyz_________________________________________________________________________________________________c.🐋.wxyz_________________________________________________________________________________________________c.🐋.wxyz_________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c🐋uvwxyz_________________________________________________________________________________________________c🐋uvwxyz_________________________________________________________________________________________________c🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________ca.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c★.uvwxyz_________________________________________________________________________________________________c🐋uvwxyz_________________________________________________________________________________________________c🐋uvwxyz___________________________________________________________________________________________________________________________________________________________________________________________________________c.auvwxyz_________________________________________________________________________________________________c.auvwxyz_________________________________________________________________________________________________c.auvwxyz_________________________________________________________________________________________________c.★uvwxyz_________________________________________________________________________________________________c.★uvwxyz_________________________________________________________________________________________________c.★uvwxyz_________________________________________________________________________________________________c.🐋.wxyz_________________________________________________________________________________________________c.🐋.wxyz_________________________________________________________________________________________________c.🐋.wxyz_________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________a.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________★.uvwxyz__________________________________________________________________________________________________🐋uvwxyz__________________________________________________________________________________________________🐋uvwxyz____________________________________________________________________________________________________________________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.auvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.★uvwxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________.🐋.wxyz__________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________.uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz___________________________________________________________________________________________________@04 @00uvwxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________auvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________★uvwxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________🐋.wxyz___________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________uvwxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________@04 @00.wxyz____________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________vwxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________.wxyz_____________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz________________________________________________________________________________________________________________________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________wxyz______________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz__________________________________________________________________________________________________________________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz__________________________________________________________________________________________________________________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz__________________________________________________________________________________________________________________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_________________________________________________________________________________________________________________________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________xyz_______________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z___________________________________________________________________________________________________________________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz__________________________________________________________________________________________________________________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz__________________________________________________________________________________________________________________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z___________________________________________________________________________________________________________________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz__________________________________________________________________________________________________________________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz__________________________________________________________________________________________________________________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z___________________________________________________________________________________________________________________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz__________________________________________________________________________________________________________________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz__________________________________________________________________________________________________________________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________yz________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z___________________________________________________________________________________________________________________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z___________________________________________________________________________________________________________________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z___________________________________________________________________________________________________________________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z___________________________________________________________________________________________________________________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________z_________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +7b =AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!ca.uvwxyz____________________________________________________________________________________________AB.★\!ca.uvwxyz____________________________________________________________________________________________AB.a\!c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.a\!c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c.auvwxyz____________________________________________________________________________________________AB★.\!c.auvwxyz____________________________________________________________________________________________AB🐋\!c.auvwxyz____________________________________________________________________________________________ABa.\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________ABa.\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +67 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +2d =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________-#_________________________________________________________________________________________________________ +2d =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________--#________________________________________________________________________________________________________ +68 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________--h#_______________________________________________________________________________________________________ +65 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________--he#______________________________________________________________________________________________________ +61 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________--header#__________________________________________________________________________________________________ +a =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________Header lines: #____________________________________________________________________________________________ +30 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________Header lines: 0#___________________________________________________________________________________________ +2c =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________Header lines: 0,#__________________________________________________________________________________________ +35 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________Header lines: 0,5#_________________________________________________________________________________________ +a =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!auvwxyz______________________________________________________________________________________________AB★.\!auvwxyz______________________________________________________________________________________________AB🐋\!auvwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!auvwxyz______________________________________________________________________________________________AB★.\!auvwxyz______________________________________________________________________________________________AB🐋\!auvwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!auvwxyz______________________________________________________________________________________________AB★.\!auvwxyz______________________________________________________________________________________________AB🐋\!auvwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz____________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz____________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz____________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz_____________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.🐋yz___________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.🐋yz___________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.🐋yz_____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz____________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz_____________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.🐋yz___________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.🐋yz___________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.🐋yz_____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz____________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz_____________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.🐋yz___________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.🐋yz___________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.🐋yz_____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz____________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz____________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz____________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz____________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!auvwxyz______________________________________________________________________________________________AB★.\!auvwxyz______________________________________________________________________________________________AB🐋\!auvwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!auvwxyz______________________________________________________________________________________________AB★.\!auvwxyz______________________________________________________________________________________________AB🐋\!auvwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!auvwxyz______________________________________________________________________________________________AB★.\!auvwxyz______________________________________________________________________________________________AB🐋\!auvwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +20 =AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!ca.uvwxyz____________________________________________________________________________________________AB.★\!ca.uvwxyz____________________________________________________________________________________________AB.a\!c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.a\!c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c.auvwxyz____________________________________________________________________________________________AB★.\!c.auvwxyz____________________________________________________________________________________________AB🐋\!c.auvwxyz____________________________________________________________________________________________ABa.\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________ABa.\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!ca.uvwxyz____________________________________________________________________________________________AB.★\!ca.uvwxyz____________________________________________________________________________________________AB.a\!c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.a\!c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c.auvwxyz____________________________________________________________________________________________AB★.\!c.auvwxyz____________________________________________________________________________________________AB🐋\!c.auvwxyz____________________________________________________________________________________________ABa.\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________ABa.\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!ca.uvwxyz____________________________________________________________________________________________AB.★\!ca.uvwxyz____________________________________________________________________________________________AB.a\!c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.a\!c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c.auvwxyz____________________________________________________________________________________________AB★.\!c.auvwxyz____________________________________________________________________________________________AB🐋\!c.auvwxyz____________________________________________________________________________________________ABa.\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________ABa.\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!auvwxyz______________________________________________________________________________________________AB★.\!auvwxyz______________________________________________________________________________________________AB🐋\!auvwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!auvwxyz______________________________________________________________________________________________AB★.\!auvwxyz______________________________________________________________________________________________AB🐋\!auvwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_____________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!auvwxyz______________________________________________________________________________________________AB★.\!auvwxyz______________________________________________________________________________________________AB🐋\!auvwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_____________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!auvwxyz______________________________________________________________________________________________AB★.\!auvwxyz______________________________________________________________________________________________AB🐋\!auvwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz______________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!auvwxyz______________________________________________________________________________________________AB★.\!auvwxyz______________________________________________________________________________________________AB🐋\!auvwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz______________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!auvwxyz______________________________________________________________________________________________AB★.\!auvwxyz______________________________________________________________________________________________AB🐋\!auvwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz______________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz_______________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz_______________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz_______________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz________________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.🐋wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.🐋xyz____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz_________________________________________________________________________________________________AB.a\!wxyz_________________________________________________________________________________________________AB.★\!wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ABa.\!wxyz_________________________________________________________________________________________________AB★.\!wxyz_________________________________________________________________________________________________AB🐋\!wxyz_________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.🐋yz_____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz____________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.🐋yz_____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz____________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.🐋yz_____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz____________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz__________________________________________________________________________________________________AB.a\!xyz__________________________________________________________________________________________________AB.★\!xyz____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ABa.\!xyz__________________________________________________________________________________________________AB★.\!xyz__________________________________________________________________________________________________AB🐋\!xyz__________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =AB.a\!z____________________________________________________________________________________________________AB.★\!z____________________________________________________________________________________________________AB.🐋z______________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z____________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z____________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz_____________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz_____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\!z____________________________________________________________________________________________________AB.★\!z____________________________________________________________________________________________________AB.🐋z______________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z____________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z____________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz_____________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz_____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.a\!z____________________________________________________________________________________________________AB.★\!z____________________________________________________________________________________________________AB.🐋z______________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z____________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z____________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz_____________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz___________________________________________________________________________________________________AB.a\!yz___________________________________________________________________________________________________AB.★\!yz_____________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ABa.\!yz___________________________________________________________________________________________________AB★.\!yz___________________________________________________________________________________________________AB🐋\!yz___________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =AB.a\!_____________________________________________________________________________________________________AB.★\!_____________________________________________________________________________________________________AB.🐋_______________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!_____________________________________________________________________________________________________AB★.\!_____________________________________________________________________________________________________AB🐋\!_____________________________________________________________________________________________________ABa.\!_____________________________________________________________________________________________________AB★.\!_____________________________________________________________________________________________________AB🐋\!_____________________________________________________________________________________________________ABa.\!_____________________________________________________________________________________________________AB★.\!_____________________________________________________________________________________________________AB🐋\!_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z____________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z____________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z______________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!z____________________________________________________________________________________________________AB.★\!z____________________________________________________________________________________________________AB.a\!z____________________________________________________________________________________________________AB.★\!z____________________________________________________________________________________________________AB.a\!z____________________________________________________________________________________________________AB.★\!z______________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z____________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z____________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z____________________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\!_____________________________________________________________________________________________________AB.★\!_____________________________________________________________________________________________________AB.🐋_______________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!_____________________________________________________________________________________________________AB★.\!_____________________________________________________________________________________________________AB🐋\!_____________________________________________________________________________________________________ABa.\!_____________________________________________________________________________________________________AB★.\!_____________________________________________________________________________________________________AB🐋\!_____________________________________________________________________________________________________ABa.\!_____________________________________________________________________________________________________AB★.\!_____________________________________________________________________________________________________AB🐋\!_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z____________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z____________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z______________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!z____________________________________________________________________________________________________AB.★\!z____________________________________________________________________________________________________AB.a\!z____________________________________________________________________________________________________AB.★\!z____________________________________________________________________________________________________AB.a\!z____________________________________________________________________________________________________AB.★\!z______________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z____________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z____________________________________________________________________________________________________ABa.\!z____________________________________________________________________________________________________AB★.\!z____________________________________________________________________________________________________AB🐋\!z____________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +7b =AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!ca.uvwxyz____________________________________________________________________________________________AB.★\!ca.uvwxyz____________________________________________________________________________________________AB.a\!c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.a\!c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c.auvwxyz____________________________________________________________________________________________AB★.\!c.auvwxyz____________________________________________________________________________________________AB🐋\!c.auvwxyz____________________________________________________________________________________________ABa.\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________ABa.\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +71 Q less-668/lesstest/lt/hdr-unicode1.lt0000644060175306017530000214002414700607705016512 0ustar marknmarkn!lesstest! !version 1 !created 2023-12-09 20:45:31 E "LESS_TERMCAP_am" "1" E "LESS_TERMCAP_cd" "S" E "LESS_TERMCAP_ce" "L" E "LESS_TERMCAP_cl" "A" E "LESS_TERMCAP_cr" "<" E "LESS_TERMCAP_cm" "%p2%d;%p1%dj" E "LESS_TERMCAP_ho" "h" E "LESS_TERMCAP_ll" "l" E "LESS_TERMCAP_mb" "b" E "LESS_TERMCAP_md" "" E "LESS_TERMCAP_me" "" E "LESS_TERMCAP_se" "" E "LESS_TERMCAP_so" "" E "LESS_TERMCAP_sr" "r" E "LESS_TERMCAP_ue" "" E "LESS_TERMCAP_us" "" E "LESS_TERMCAP_vb" "g" E "LESS_TERMCAP_kr" "OC" E "LESS_TERMCAP_kl" "OD" E "LESS_TERMCAP_ku" "OA" E "LESS_TERMCAP_kd" "OB" E "LESS_TERMCAP_kh" "OH" E "LESS_TERMCAP_@7" "OF" E "COLUMNS" "106" E "LINES" "42" E "LESSCHARSET" "utf8" E "LANG" "C" E "LC_CTYPE" "en.UTF-8" T "hdr-unicode" A "hdr-unicode" F "hdr-unicode" 878 ABa.!a.uvwxyz AB★.!a.uvwxyz AB🐋!a.uvwxyz ABa.!★.uvwxyz AB★.!★.uvwxyz AB🐋!★.uvwxyz ABa.!🐋uvwxyz AB★.!🐋uvwxyz AB🐋!🐋uvwxyz AB.a!a.uvwxyz AB.★!a.uvwxyz AB.🐋a.uvwxyz AB.a!★.uvwxyz AB.★!★.uvwxyz AB.🐋★.uvwxyz AB.a!🐋uvwxyz AB.★!🐋uvwxyz AB.🐋🐋uvwxyz ABa.!.auvwxyz AB★.!.auvwxyz AB🐋!.auvwxyz ABa.!.★uvwxyz AB★.!.★uvwxyz AB🐋!.★uvwxyz ABa.!.🐋.wxyz AB★.!.🐋.wxyz AB🐋!.🐋.wxyz ABa.!ca.uvwxyz AB★.!ca.uvwxyz AB🐋!ca.uvwxyz ABa.!c★.uvwxyz AB★.!c★.uvwxyz AB🐋!c★.uvwxyz ABa.!c🐋uvwxyz AB★.!c🐋uvwxyz AB🐋!c🐋uvwxyz AB.a!ca.uvwxyz AB.★!ca.uvwxyz AB.a!c★.uvwxyz AB.★!c★.uvwxyz AB.a!c🐋uvwxyz AB.★!c🐋uvwxyz ABa.!c.auvwxyz AB★.!c.auvwxyz AB🐋!c.auvwxyz ABa.!c.★uvwxyz AB★.!c.★uvwxyz AB🐋!c.★uvwxyz ABa.!c.🐋.wxyz AB★.!c.🐋.wxyz AB🐋!c.🐋.wxyz R =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________@04hdr-unicode@00#_______________________________________________________________________________________________ +2d =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________-#_________________________________________________________________________________________________________ +2d =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________--#________________________________________________________________________________________________________ +68 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________--h#_______________________________________________________________________________________________________ +65 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________--he#______________________________________________________________________________________________________ +61 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________--header#__________________________________________________________________________________________________ +64 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________--header#__________________________________________________________________________________________________ +65 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________--header#__________________________________________________________________________________________________ +72 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________--header#__________________________________________________________________________________________________ +a =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________Header lines: #____________________________________________________________________________________________ +30 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________Header lines: 0#___________________________________________________________________________________________ +2c =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________Header lines: 0,#__________________________________________________________________________________________ +35 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________Header lines: 0,5#_________________________________________________________________________________________ +a =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +2f =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________/#_________________________________________________________________________________________________________ +61 =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________/a#________________________________________________________________________________________________________ +2e =ABa.\!a.uvwxyz_____________________________________________________________________________________________AB★.\!a.uvwxyz_____________________________________________________________________________________________AB🐋\!a.uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!a.uvwxyz_____________________________________________________________________________________________AB.★\!a.uvwxyz_____________________________________________________________________________________________AB.🐋a.uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.auvwxyz_____________________________________________________________________________________________AB★.\!.auvwxyz_____________________________________________________________________________________________AB🐋\!.auvwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!ca.uvwxyz____________________________________________________________________________________________AB★.\!ca.uvwxyz____________________________________________________________________________________________AB🐋\!ca.uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________/a.#_______________________________________________________________________________________________________ +a =AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.@04a\!@00★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +31 =AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.@04a\!@00★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:1#________________________________________________________________________________________________________ +1b =AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.@04a\!@00★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:1#________________________________________________________________________________________________________ +4f =AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.@04a\!@00★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:1#________________________________________________________________________________________________________ +43 =AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.🐋@04.@00uvwxyz______________________________________________________________________________________________AB.@04a\!@00.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.🐋@04.@00uvwxyz______________________________________________________________________________________________AB.@04a\!@00.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.🐋@04.@00uvwxyz______________________________________________________________________________________________AB.@04a\!@00.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.@04a\!@00vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.@04a\!@00vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.@04a\!@00vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.@04a\!@00vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.@04a\!@00vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz________________________________________________________________________________________________AB.@04a\!@00vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.🐋@04.@00uvwxyz______________________________________________________________________________________________AB.@04a\!@00.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.🐋@04.@00uvwxyz______________________________________________________________________________________________AB.@04a\!@00.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.🐋@04.@00uvwxyz______________________________________________________________________________________________AB.@04a\!@00.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.@04a\!@00★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.@04a\!@00★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.@04a\!@00★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.@04a\!@00★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +20 =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.@04a\!@00★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.@04a\!@00★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_____________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.@04a\!@00★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_____________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.@04a\!@00.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz______________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.@04a\!@00.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz______________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.@04a\!@00.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz______________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =AB.@04a\!@00vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz_______________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.@04a\!@00vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz_______________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.@04a\!@00vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________AB@04a.@00\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz_______________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.@04a\!@00.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz______________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.@04a\!@00.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz______________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.@04a\!@00uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________AB@04a.@00\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________AB@04a.@00\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________AB@04a.@00\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________AB@04a.@00\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.@04a\!@00.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz______________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.@04a\!@00★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.@04a\!@00★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_____________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.@04a\! @00uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________AB@04a.@00\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________AB@04a.@00\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________AB@04a.@00\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________AB@04a.@00\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.@04a\!@00★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_____________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +2d =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________-#_________________________________________________________________________________________________________ +2d =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--#________________________________________________________________________________________________________ +6e =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--n#_______________________________________________________________________________________________________ +6f =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--no#______________________________________________________________________________________________________ +2d =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--no-#_____________________________________________________________________________________________________ +73 =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--no-s#____________________________________________________________________________________________________ +65 =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--no-se#___________________________________________________________________________________________________ +61 =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--no-sea#__________________________________________________________________________________________________ +72 =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--no-sear#_________________________________________________________________________________________________ +63 =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--no-searc#________________________________________________________________________________________________ +68 =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--no-search#_______________________________________________________________________________________________ +2d =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--no-search-#______________________________________________________________________________________________ +68 =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--no-search-h#_____________________________________________________________________________________________ +65 =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--no-search-he#____________________________________________________________________________________________ +61 =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--no-search-hea#___________________________________________________________________________________________ +64 =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--no-search-head#__________________________________________________________________________________________ +65 =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--no-search-heade#_________________________________________________________________________________________ +72 =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--no-search-header#________________________________________________________________________________________ +73 =AB.@04a\!@00🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________AB@04a.@00\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________AB@04a.@00\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________AB@04a.@00\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________AB@04a.@00\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.@04a\!@00c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.@04a\!@00c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.@04a\!@00c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB@04a.@00\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________AB@04a.@00\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________AB@04a.@00\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________--no-search-headers#_______________________________________________________________________________________ +a =AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.a\!c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.a\!c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________ABa.\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________ABa.\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.a\!c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.a\!c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________ABa.\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________ABa.\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.a\!c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.a\!c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________ABa.\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________ABa.\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_____________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_____________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz______________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz______________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz______________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz_______________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz_______________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.a\!vwxyz________________________________________________________________________________________________AB.★\!vwxyz________________________________________________________________________________________________AB.🐋vwxyz__________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!vwxyz________________________________________________________________________________________________AB★.\!vwxyz________________________________________________________________________________________________AB🐋\!vwxyz________________________________________________________________________________________________ABa.\!.wxyz________________________________________________________________________________________________AB★.\!.wxyz________________________________________________________________________________________________AB🐋\!.wxyz____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz_______________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz______________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz______________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz______________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_____________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_____________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.a\!c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.a\!c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________ABa.\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________ABa.\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +1b =AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.a\!c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.a\!c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________ABa.\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________ABa.\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.a\!c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.a\!c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________ABa.\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________ABa.\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.★\!c@04a.@00uvwxyz____________________________________________________________________________________________AB.a\!c★.uvwxyz____________________________________________________________________________________________AB.★\!c★.uvwxyz____________________________________________________________________________________________AB.a\!c🐋uvwxyz____________________________________________________________________________________________AB.★\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c.@04au@00vwxyz____________________________________________________________________________________________AB★.\!c.@04au@00vwxyz____________________________________________________________________________________________AB🐋\!c.@04au@00vwxyz____________________________________________________________________________________________ABa.\!c.★uvwxyz____________________________________________________________________________________________AB★.\!c.★uvwxyz____________________________________________________________________________________________AB🐋\!c.★uvwxyz____________________________________________________________________________________________ABa.\!c.🐋.wxyz____________________________________________________________________________________________AB★.\!c.🐋.wxyz____________________________________________________________________________________________AB🐋\!c.🐋.wxyz____________________________________________________________________________________________@04(END)@00#_____________________________________________________________________________________________________ +67 =ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =ABa.\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.🐋@04.@00uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.🐋@04.@00uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.🐋@04.@00uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +43 =ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_______________________________________________________________________________________________AB.a\!uvwxyz_______________________________________________________________________________________________AB.★\!uvwxyz_______________________________________________________________________________________________AB.🐋uvwxyz_________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04u@00vwxyz_______________________________________________________________________________________________AB★.\!@04u@00vwxyz_______________________________________________________________________________________________AB🐋\!@04u@00vwxyz_______________________________________________________________________________________________ABa.\!uvwxyz_______________________________________________________________________________________________AB★.\!uvwxyz_______________________________________________________________________________________________AB🐋\!uvwxyz_______________________________________________________________________________________________ABa.\! .wxyz_______________________________________________________________________________________________AB★.\! .wxyz_______________________________________________________________________________________________AB🐋\! .wxyz___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =ABa.\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.🐋@04.@00uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.🐋@04.@00uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!@04.@00uvwxyz______________________________________________________________________________________________AB★.\!@04.@00uvwxyz______________________________________________________________________________________________AB🐋\!@04.@00uvwxyz______________________________________________________________________________________________ABa.\!.uvwxyz______________________________________________________________________________________________AB★.\!.uvwxyz______________________________________________________________________________________________AB🐋\!.uvwxyz______________________________________________________________________________________________ABa.\! uvwxyz______________________________________________________________________________________________AB★.\! uvwxyz______________________________________________________________________________________________AB🐋\! uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04.@00uvwxyz______________________________________________________________________________________________AB.★\!@04.@00uvwxyz______________________________________________________________________________________________AB.🐋@04.@00uvwxyz______________________________________________________________________________________________AB.a\!.uvwxyz______________________________________________________________________________________________AB.★\!.uvwxyz______________________________________________________________________________________________AB.🐋.uvwxyz______________________________________________________________________________________________AB.a\! uvwxyz______________________________________________________________________________________________AB.★\! uvwxyz______________________________________________________________________________________________AB.🐋 uvwxyz________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04au@00vwxyz______________________________________________________________________________________________AB★.\!@04au@00vwxyz______________________________________________________________________________________________AB🐋\!@04au@00vwxyz______________________________________________________________________________________________ABa.\!★uvwxyz______________________________________________________________________________________________AB★.\!★uvwxyz______________________________________________________________________________________________AB🐋\!★uvwxyz______________________________________________________________________________________________ABa.\!🐋.wxyz______________________________________________________________________________________________AB★.\!🐋.wxyz______________________________________________________________________________________________AB🐋\!🐋.wxyz__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +1b =ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ ESC#______________________________________________________________________________________________________ +4f =ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________ ESCO#_____________________________________________________________________________________________________ +44 =ABa.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB★.\!@04a.@00uvwxyz_____________________________________________________________________________________________AB🐋\!@04a.@00uvwxyz_____________________________________________________________________________________________ABa.\!★.uvwxyz_____________________________________________________________________________________________AB★.\!★.uvwxyz_____________________________________________________________________________________________AB🐋\!★.uvwxyz_____________________________________________________________________________________________ABa.\!🐋uvwxyz_____________________________________________________________________________________________AB★.\!🐋uvwxyz_____________________________________________________________________________________________AB🐋\!🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________AB.a\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.★\!@04a.@00uvwxyz_____________________________________________________________________________________________AB.🐋@04a.@00uvwxyz_____________________________________________________________________________________________AB.a\!★.uvwxyz_____________________________________________________________________________________________AB.★\!★.uvwxyz_____________________________________________________________________________________________AB.🐋★.uvwxyz_____________________________________________________________________________________________AB.a\!🐋uvwxyz_____________________________________________________________________________________________AB.★\!🐋uvwxyz_____________________________________________________________________________________________AB.🐋🐋uvwxyz_______________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!.@04au@00vwxyz_____________________________________________________________________________________________AB★.\!.@04au@00vwxyz_____________________________________________________________________________________________AB🐋\!.@04au@00vwxyz_____________________________________________________________________________________________ABa.\!.★uvwxyz_____________________________________________________________________________________________AB★.\!.★uvwxyz_____________________________________________________________________________________________AB🐋\!.★uvwxyz_____________________________________________________________________________________________ABa.\!.🐋.wxyz_____________________________________________________________________________________________AB★.\!.🐋.wxyz_____________________________________________________________________________________________AB🐋\!.🐋.wxyz_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ABa.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB★.\!c@04a.@00uvwxyz____________________________________________________________________________________________AB🐋\!c@04a.@00uvwxyz____________________________________________________________________________________________ABa.\!c★.uvwxyz____________________________________________________________________________________________AB★.\!c★.uvwxyz____________________________________________________________________________________________AB🐋\!c★.uvwxyz____________________________________________________________________________________________ABa.\!c🐋uvwxyz____________________________________________________________________________________________AB★.\!c🐋uvwxyz____________________________________________________________________________________________AB🐋\!c🐋uvwxyz______________________________________________________________________________________________________________________________________________________________________________________________________:#_________________________________________________________________________________________________________ +71 Q less-668/lesstest/lt/proc-special.lt0000644060175306017530000130074514700607705016620 0ustar marknmarkn!lesstest! !version 1 !created 2023-02-11 18:55:06 E "LESS_TERMCAP_am" "1" E "LESS_TERMCAP_cd" "S" E "LESS_TERMCAP_ce" "L" E "LESS_TERMCAP_cl" "A" E "LESS_TERMCAP_cr" "<" E "LESS_TERMCAP_cm" "%p2%d;%p1%dj" E "LESS_TERMCAP_ho" "h" E "LESS_TERMCAP_ll" "l" E "LESS_TERMCAP_mb" "b" E "LESS_TERMCAP_md" "" E "LESS_TERMCAP_me" "" E "LESS_TERMCAP_se" "" E "LESS_TERMCAP_so" "" E "LESS_TERMCAP_sr" "r" E "LESS_TERMCAP_ue" "" E "LESS_TERMCAP_us" "" E "LESS_TERMCAP_vb" "g" E "LESS_TERMCAP_kr" "OC" E "LESS_TERMCAP_kl" "OD" E "LESS_TERMCAP_ku" "OA" E "LESS_TERMCAP_kd" "OB" E "LESS_TERMCAP_kh" "OH" E "LESS_TERMCAP_@7" "OF" E "COLUMNS" "93" E "LINES" "34" E "LESSCHARSET" "utf8" E "LANG" "C" T "proc-special" A "proc-special" F "proc-special" 79 here are _b_a_c_k spaces. And an extra return and some tabs here ok. bye R =here are @02back@00 spaces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@04proc-special (END)@00#____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +2f =here are @02back@00 spaces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________/#_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +61 =here are @02back@00 spaces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________/a#____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +63 =here are @02back@00 spaces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________/ac#___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +6b =here are @02back@00 spaces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________/ack#__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +20 =here are @02back@00 spaces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________/ack #_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +73 =here are @02back@00 spaces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________/ack s#________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +a =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________ +2d =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________ +55 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Print backspace as ^H (press RETURN)@00#________________________________________________________ +2d =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________ +2d =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--#___________________________________________________________________________________________ +70 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--p#__________________________________________________________________________________________ +72 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--pr#_________________________________________________________________________________________ +6f =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--pro#________________________________________________________________________________________ +63 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc#_______________________________________________________________________________________ +2d =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc-#______________________________________________________________________________________ +62 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc-backspace#_____________________________________________________________________________ +61 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc-backspace#_____________________________________________________________________________ +a =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Display underline text in underline mode (press RETURN)@00#_____________________________________ +2d =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________ +55 =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Display underlined text in underline mode (press RETURN)@00#____________________________________ +2d =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________ +75 =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Backspaces cause overstrike (press RETURN)@00#__________________________________________________ +2d =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________ +2d =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--#___________________________________________________________________________________________ +70 =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--p#__________________________________________________________________________________________ +72 =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--pr#_________________________________________________________________________________________ +6f =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--pro#________________________________________________________________________________________ +63 =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc#_______________________________________________________________________________________ +2d =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc-#______________________________________________________________________________________ +74 =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc-tab#___________________________________________________________________________________ +a =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Expand tabs to spaces (press RETURN)@00#________________________________________________________ +a =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________ +2d =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________ +2d =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--#___________________________________________________________________________________________ +50 =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--P#__________________________________________________________________________________________ +52 =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PR#_________________________________________________________________________________________ +4f =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PRO#________________________________________________________________________________________ +43 =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC#_______________________________________________________________________________________ +2d =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC-#______________________________________________________________________________________ +54 =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC-TAB#___________________________________________________________________________________ +a =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Print tabs as ^I (press RETURN)@00#_____________________________________________________________ +2d =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________ +55 =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Print backspace as ^H (press RETURN)@00#________________________________________________________ +a =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________ +2d =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________ +2d =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--#___________________________________________________________________________________________ +50 =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--P#__________________________________________________________________________________________ +52 =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PR#_________________________________________________________________________________________ +4f =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PRO#________________________________________________________________________________________ +43 =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC#_______________________________________________________________________________________ +5f =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC_#______________________________________________________________________________________ +8 =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC#_______________________________________________________________________________________ +2d =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC-#______________________________________________________________________________________ +62 =here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC-BACKSPACE#_____________________________________________________________________________ +a =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Print backspaces as ^H (press RETURN)@00#_______________________________________________________ +a =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________ +2f =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________/#____________________________________________________________________________________________ +6d =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________/m#___________________________________________________________________________________________ +65 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________/me#__________________________________________________________________________________________ +2e =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________/me.#_________________________________________________________________________________________ +74 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________/me.t#________________________________________________________________________________________ +a =and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________ +6b =And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________ +6b =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________ +6b =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________ +6b =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________ +2d =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________ +2d =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--#___________________________________________________________________________________________ +50 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--P#__________________________________________________________________________________________ +52 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PR#_________________________________________________________________________________________ +4f =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PRO#________________________________________________________________________________________ +43 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC#_______________________________________________________________________________________ +2d =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC-#______________________________________________________________________________________ +54 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC-TAB#___________________________________________________________________________________ +a =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Tab handling is specified by the -U option (press RETURN)@00#___________________________________ +a =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________ +a =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________ +2d =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________ +55 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Display underlined text in underline mode (press RETURN)@00#____________________________________ +a =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________ +2d =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________ +2d =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--#___________________________________________________________________________________________ +70 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--p#__________________________________________________________________________________________ +72 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--pr#_________________________________________________________________________________________ +6f =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--pro#________________________________________________________________________________________ +63 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc#_______________________________________________________________________________________ +2d =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc-#______________________________________________________________________________________ +72 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc-return#________________________________________________________________________________ +65 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc-return#________________________________________________________________________________ +a =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Delete carriage return before newline (press RETURN)@00#________________________________________ +a =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________ +2d =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________ +75 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Backspaces cause overstrike (press RETURN)@00#__________________________________________________ +a =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________ +2d =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________ +2d =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--#___________________________________________________________________________________________ +50 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--P#__________________________________________________________________________________________ +52 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PR#_________________________________________________________________________________________ +4f =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PRO#________________________________________________________________________________________ +43 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC#_______________________________________________________________________________________ +2d =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC-#______________________________________________________________________________________ +52 =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC-RETURN#________________________________________________________________________________ +a =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Print carriage return as ^M (press RETURN)@00#__________________________________________________ +a =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________ +a =here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________ +71 Q less-668/lesstest/lt/search-hist.lt0000644060175306017530000151205414700607706016450 0ustar marknmarkn!lesstest! !version 1 !created 2024-05-14 00:41:47 E "LESS_TERMCAP_am" "1" E "LESS_TERMCAP_cd" "S" E "LESS_TERMCAP_ce" "L" E "LESS_TERMCAP_cl" "A" E "LESS_TERMCAP_cr" "<" E "LESS_TERMCAP_cm" "%p2%d;%p1%dj" E "LESS_TERMCAP_ho" "h" E "LESS_TERMCAP_ll" "l" E "LESS_TERMCAP_mb" "b" E "LESS_TERMCAP_md" "" E "LESS_TERMCAP_me" "" E "LESS_TERMCAP_se" "" E "LESS_TERMCAP_so" "" E "LESS_TERMCAP_sr" "r" E "LESS_TERMCAP_ue" "" E "LESS_TERMCAP_us" "" E "LESS_TERMCAP_vb" "g" E "LESS_TERMCAP_kr" "OC" E "LESS_TERMCAP_kl" "OD" E "LESS_TERMCAP_ku" "OA" E "LESS_TERMCAP_kd" "OB" E "LESS_TERMCAP_kh" "OH" E "LESS_TERMCAP_@7" "OF" E "COLUMNS" "103" E "LINES" "34" E "LANG" "C" T "search-hist" A "search-hist" F "search-hist" 49 one two three four five six seven eight nine ten R =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@04search-hist (END)@00#_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +2f =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________/#_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +6f =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________/o#______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +6e =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________/on#_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +65 =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________/one#____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ +a =@04one@00____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________ +2f =@04one@00____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/#______________________________________________________________________________________________________ +74 =@04one@00____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/t#_____________________________________________________________________________________________________ +77 =@04one@00____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/tw#____________________________________________________________________________________________________ +6f =@04one@00____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/two#___________________________________________________________________________________________________ +a =@04two@00____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________ +2f =@04two@00____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/#______________________________________________________________________________________________________ +74 =@04two@00____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/t#_____________________________________________________________________________________________________ +68 =@04two@00____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/th#____________________________________________________________________________________________________ +72 =@04two@00____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/thr#___________________________________________________________________________________________________ +65 =@04two@00____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/thre#__________________________________________________________________________________________________ +65 =@04two@00____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/three#_________________________________________________________________________________________________ +a =@04three@00__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________ +2f =@04three@00__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/#______________________________________________________________________________________________________ +66 =@04three@00__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/f#_____________________________________________________________________________________________________ +6f =@04three@00__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/fo#____________________________________________________________________________________________________ +75 =@04three@00__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/fou#___________________________________________________________________________________________________ +72 =@04three@00__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/four#__________________________________________________________________________________________________ +a =@04four@00___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________ +2f =@04four@00___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/#______________________________________________________________________________________________________ +66 =@04four@00___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/f#_____________________________________________________________________________________________________ +69 =@04four@00___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/fi#____________________________________________________________________________________________________ +76 =@04four@00___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/fiv#___________________________________________________________________________________________________ +65 =@04four@00___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/five#__________________________________________________________________________________________________ +a =@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________ +2f =@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/#______________________________________________________________________________________________________ +73 =@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/s#_____________________________________________________________________________________________________ +69 =@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/si#____________________________________________________________________________________________________ +78 =@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/six#___________________________________________________________________________________________________ +a =@04six@00____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________ +2f =@04six@00____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/#______________________________________________________________________________________________________ +73 =@04six@00____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/s#_____________________________________________________________________________________________________ +65 =@04six@00____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/se#____________________________________________________________________________________________________ +76 =@04six@00____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/sev#___________________________________________________________________________________________________ +65 =@04six@00____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/seve#__________________________________________________________________________________________________ +6e =@04six@00____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/seven#_________________________________________________________________________________________________ +a =@04seven@00__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________ +2f =@04seven@00__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/#______________________________________________________________________________________________________ +65 =@04seven@00__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/e#_____________________________________________________________________________________________________ +69 =@04seven@00__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/ei#____________________________________________________________________________________________________ +a =@04ei@00ght__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________ +2f =@04ei@00ght__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/#______________________________________________________________________________________________________ +74 =@04ei@00ght__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/t#_____________________________________________________________________________________________________ +65 =@04ei@00ght__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/te#____________________________________________________________________________________________________ +6e =@04ei@00ght__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/ten#___________________________________________________________________________________________________ +8 =@04ei@00ght__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/te#____________________________________________________________________________________________________ +a =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________ +2f =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/#______________________________________________________________________________________________________ +1b =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/#______________________________________________________________________________________________________ +4f =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/#______________________________________________________________________________________________________ +41 =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/te#____________________________________________________________________________________________________ +1b =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/te#____________________________________________________________________________________________________ +4f =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/te#____________________________________________________________________________________________________ +41 =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/ei#____________________________________________________________________________________________________ +1b =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/ei#____________________________________________________________________________________________________ +4f =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/ei#____________________________________________________________________________________________________ +41 =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/seven#_________________________________________________________________________________________________ +1b =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/seven#_________________________________________________________________________________________________ +4f =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/seven#_________________________________________________________________________________________________ +41 =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/six#___________________________________________________________________________________________________ +1b =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/six#___________________________________________________________________________________________________ +4f =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/six#___________________________________________________________________________________________________ +41 =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/five#__________________________________________________________________________________________________ +a =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@04Pattern not found (press RETURN)@00#______________________________________________________________________ +67 =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________ +2d =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________-#______________________________________________________________________________________________________ +2d =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________--#_____________________________________________________________________________________________________ +69 =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________--i#____________________________________________________________________________________________________ +6e =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________--in#___________________________________________________________________________________________________ +63 =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________--incsearch#____________________________________________________________________________________________ +a =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@04Incremental search is on (press RETURN)@00#_______________________________________________________________ +a =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________ +2f =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/#______________________________________________________________________________________________________ +1b =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/#______________________________________________________________________________________________________ +4f =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/#______________________________________________________________________________________________________ +41 =@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/five#__________________________________________________________________________________________________ +1b =@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/five#__________________________________________________________________________________________________ +4f =@04five@00___________________________________________________________________________________________________six____________________________________________________________________________________________________seven__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/five#__________________________________________________________________________________________________ +41 =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/te#____________________________________________________________________________________________________ +1b =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/te#____________________________________________________________________________________________________ +4f =@04te@00n____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/te#____________________________________________________________________________________________________ +41 =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/ei#____________________________________________________________________________________________________ +1b =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/ei#____________________________________________________________________________________________________ +4f =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/ei#____________________________________________________________________________________________________ +41 =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/seven#_________________________________________________________________________________________________ +1b =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/seven#_________________________________________________________________________________________________ +4f =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/seven#_________________________________________________________________________________________________ +41 =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/six#___________________________________________________________________________________________________ +1b =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/six#___________________________________________________________________________________________________ +4f =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/six#___________________________________________________________________________________________________ +41 =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/five#__________________________________________________________________________________________________ +1b =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/five#__________________________________________________________________________________________________ +4f =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/five#__________________________________________________________________________________________________ +41 =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/four#__________________________________________________________________________________________________ +1b =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/four#__________________________________________________________________________________________________ +4f =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/four#__________________________________________________________________________________________________ +41 =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/three#_________________________________________________________________________________________________ +1b =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/three#_________________________________________________________________________________________________ +4f =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/three#_________________________________________________________________________________________________ +42 =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/four#__________________________________________________________________________________________________ +1b =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/four#__________________________________________________________________________________________________ +4f =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/four#__________________________________________________________________________________________________ +42 =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/five#__________________________________________________________________________________________________ +1b =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/five#__________________________________________________________________________________________________ +4f =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/five#__________________________________________________________________________________________________ +42 =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/six#___________________________________________________________________________________________________ +1b =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/six#___________________________________________________________________________________________________ +4f =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/six#___________________________________________________________________________________________________ +42 =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________/seven#_________________________________________________________________________________________________ +a =ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@04Pattern not found (press RETURN)@00#______________________________________________________________________ +67 =one____________________________________________________________________________________________________two____________________________________________________________________________________________________three__________________________________________________________________________________________________four___________________________________________________________________________________________________five___________________________________________________________________________________________________six____________________________________________________________________________________________________@04seven@00__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________ +6e =@04seven@00__________________________________________________________________________________________________eight__________________________________________________________________________________________________nine___________________________________________________________________________________________________ten____________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@01~@00______________________________________________________________________________________________________@04(END)@00#__________________________________________________________________________________________________ +71 Q less-668/lesstest/lt/seq200.lt0000644060175306017530000024244714700607707015256 0ustar marknmarkn!lesstest! !version 1 !created 2022-11-13 18:04:26 E "LESS_TERMCAP_am" "1" E "LESS_TERMCAP_cd" "S" E "LESS_TERMCAP_ce" "L" E "LESS_TERMCAP_cl" "A" E "LESS_TERMCAP_cr" "<" E "LESS_TERMCAP_cm" "%p2%d;%p1%dj" E "LESS_TERMCAP_ho" "h" E "LESS_TERMCAP_ll" "l" E "LESS_TERMCAP_mb" "b" E "LESS_TERMCAP_md" "" E "LESS_TERMCAP_me" "" E "LESS_TERMCAP_se" "" E "LESS_TERMCAP_so" "" E "LESS_TERMCAP_sr" "r" E "LESS_TERMCAP_ue" "" E "LESS_TERMCAP_us" "" E "LESS_TERMCAP_vb" "g" E "LESS_TERMCAP_kr" "OC" E "LESS_TERMCAP_kl" "OD" E "LESS_TERMCAP_ku" "OA" E "LESS_TERMCAP_kd" "OB" E "LESS_TERMCAP_kh" "OH" E "LESS_TERMCAP_@7" "OF" E "COLUMNS" "115" E "LINES" "39" E "LESSCHARSET" "utf8" E "LANG" "C" E "LC_CTYPE" "en_US.UTF-8" T "seq200" A "seq200" F "seq200" 692 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 R =1__________________________________________________________________________________________________________________2__________________________________________________________________________________________________________________3__________________________________________________________________________________________________________________4__________________________________________________________________________________________________________________5__________________________________________________________________________________________________________________6__________________________________________________________________________________________________________________7__________________________________________________________________________________________________________________8__________________________________________________________________________________________________________________9__________________________________________________________________________________________________________________10_________________________________________________________________________________________________________________11_________________________________________________________________________________________________________________12_________________________________________________________________________________________________________________13_________________________________________________________________________________________________________________14_________________________________________________________________________________________________________________15_________________________________________________________________________________________________________________16_________________________________________________________________________________________________________________17_________________________________________________________________________________________________________________18_________________________________________________________________________________________________________________19_________________________________________________________________________________________________________________20_________________________________________________________________________________________________________________21_________________________________________________________________________________________________________________22_________________________________________________________________________________________________________________23_________________________________________________________________________________________________________________24_________________________________________________________________________________________________________________25_________________________________________________________________________________________________________________26_________________________________________________________________________________________________________________27_________________________________________________________________________________________________________________28_________________________________________________________________________________________________________________29_________________________________________________________________________________________________________________30_________________________________________________________________________________________________________________31_________________________________________________________________________________________________________________32_________________________________________________________________________________________________________________33_________________________________________________________________________________________________________________34_________________________________________________________________________________________________________________35_________________________________________________________________________________________________________________36_________________________________________________________________________________________________________________37_________________________________________________________________________________________________________________38_________________________________________________________________________________________________________________@04seq200@00#_____________________________________________________________________________________________________________ +2f =1__________________________________________________________________________________________________________________2__________________________________________________________________________________________________________________3__________________________________________________________________________________________________________________4__________________________________________________________________________________________________________________5__________________________________________________________________________________________________________________6__________________________________________________________________________________________________________________7__________________________________________________________________________________________________________________8__________________________________________________________________________________________________________________9__________________________________________________________________________________________________________________10_________________________________________________________________________________________________________________11_________________________________________________________________________________________________________________12_________________________________________________________________________________________________________________13_________________________________________________________________________________________________________________14_________________________________________________________________________________________________________________15_________________________________________________________________________________________________________________16_________________________________________________________________________________________________________________17_________________________________________________________________________________________________________________18_________________________________________________________________________________________________________________19_________________________________________________________________________________________________________________20_________________________________________________________________________________________________________________21_________________________________________________________________________________________________________________22_________________________________________________________________________________________________________________23_________________________________________________________________________________________________________________24_________________________________________________________________________________________________________________25_________________________________________________________________________________________________________________26_________________________________________________________________________________________________________________27_________________________________________________________________________________________________________________28_________________________________________________________________________________________________________________29_________________________________________________________________________________________________________________30_________________________________________________________________________________________________________________31_________________________________________________________________________________________________________________32_________________________________________________________________________________________________________________33_________________________________________________________________________________________________________________34_________________________________________________________________________________________________________________35_________________________________________________________________________________________________________________36_________________________________________________________________________________________________________________37_________________________________________________________________________________________________________________38_________________________________________________________________________________________________________________/#__________________________________________________________________________________________________________________ +33 =1__________________________________________________________________________________________________________________2__________________________________________________________________________________________________________________3__________________________________________________________________________________________________________________4__________________________________________________________________________________________________________________5__________________________________________________________________________________________________________________6__________________________________________________________________________________________________________________7__________________________________________________________________________________________________________________8__________________________________________________________________________________________________________________9__________________________________________________________________________________________________________________10_________________________________________________________________________________________________________________11_________________________________________________________________________________________________________________12_________________________________________________________________________________________________________________13_________________________________________________________________________________________________________________14_________________________________________________________________________________________________________________15_________________________________________________________________________________________________________________16_________________________________________________________________________________________________________________17_________________________________________________________________________________________________________________18_________________________________________________________________________________________________________________19_________________________________________________________________________________________________________________20_________________________________________________________________________________________________________________21_________________________________________________________________________________________________________________22_________________________________________________________________________________________________________________23_________________________________________________________________________________________________________________24_________________________________________________________________________________________________________________25_________________________________________________________________________________________________________________26_________________________________________________________________________________________________________________27_________________________________________________________________________________________________________________28_________________________________________________________________________________________________________________29_________________________________________________________________________________________________________________30_________________________________________________________________________________________________________________31_________________________________________________________________________________________________________________32_________________________________________________________________________________________________________________33_________________________________________________________________________________________________________________34_________________________________________________________________________________________________________________35_________________________________________________________________________________________________________________36_________________________________________________________________________________________________________________37_________________________________________________________________________________________________________________38_________________________________________________________________________________________________________________/3#_________________________________________________________________________________________________________________ +a =@043@00__________________________________________________________________________________________________________________4__________________________________________________________________________________________________________________5__________________________________________________________________________________________________________________6__________________________________________________________________________________________________________________7__________________________________________________________________________________________________________________8__________________________________________________________________________________________________________________9__________________________________________________________________________________________________________________10_________________________________________________________________________________________________________________11_________________________________________________________________________________________________________________12_________________________________________________________________________________________________________________1@043@00_________________________________________________________________________________________________________________14_________________________________________________________________________________________________________________15_________________________________________________________________________________________________________________16_________________________________________________________________________________________________________________17_________________________________________________________________________________________________________________18_________________________________________________________________________________________________________________19_________________________________________________________________________________________________________________20_________________________________________________________________________________________________________________21_________________________________________________________________________________________________________________22_________________________________________________________________________________________________________________2@043@00_________________________________________________________________________________________________________________24_________________________________________________________________________________________________________________25_________________________________________________________________________________________________________________26_________________________________________________________________________________________________________________27_________________________________________________________________________________________________________________28_________________________________________________________________________________________________________________29_________________________________________________________________________________________________________________@043@000_________________________________________________________________________________________________________________@043@001_________________________________________________________________________________________________________________@043@002_________________________________________________________________________________________________________________@0433@00_________________________________________________________________________________________________________________@043@004_________________________________________________________________________________________________________________@043@005_________________________________________________________________________________________________________________@043@006_________________________________________________________________________________________________________________@043@007_________________________________________________________________________________________________________________@043@008_________________________________________________________________________________________________________________@043@009_________________________________________________________________________________________________________________40_________________________________________________________________________________________________________________:#__________________________________________________________________________________________________________________ +26 =@043@00__________________________________________________________________________________________________________________4__________________________________________________________________________________________________________________5__________________________________________________________________________________________________________________6__________________________________________________________________________________________________________________7__________________________________________________________________________________________________________________8__________________________________________________________________________________________________________________9__________________________________________________________________________________________________________________10_________________________________________________________________________________________________________________11_________________________________________________________________________________________________________________12_________________________________________________________________________________________________________________1@043@00_________________________________________________________________________________________________________________14_________________________________________________________________________________________________________________15_________________________________________________________________________________________________________________16_________________________________________________________________________________________________________________17_________________________________________________________________________________________________________________18_________________________________________________________________________________________________________________19_________________________________________________________________________________________________________________20_________________________________________________________________________________________________________________21_________________________________________________________________________________________________________________22_________________________________________________________________________________________________________________2@043@00_________________________________________________________________________________________________________________24_________________________________________________________________________________________________________________25_________________________________________________________________________________________________________________26_________________________________________________________________________________________________________________27_________________________________________________________________________________________________________________28_________________________________________________________________________________________________________________29_________________________________________________________________________________________________________________@043@000_________________________________________________________________________________________________________________@043@001_________________________________________________________________________________________________________________@043@002_________________________________________________________________________________________________________________@0433@00_________________________________________________________________________________________________________________@043@004_________________________________________________________________________________________________________________@043@005_________________________________________________________________________________________________________________@043@006_________________________________________________________________________________________________________________@043@007_________________________________________________________________________________________________________________@043@008_________________________________________________________________________________________________________________@043@009_________________________________________________________________________________________________________________40_________________________________________________________________________________________________________________&/#_________________________________________________________________________________________________________________ +39 =@043@00__________________________________________________________________________________________________________________4__________________________________________________________________________________________________________________5__________________________________________________________________________________________________________________6__________________________________________________________________________________________________________________7__________________________________________________________________________________________________________________8__________________________________________________________________________________________________________________9__________________________________________________________________________________________________________________10_________________________________________________________________________________________________________________11_________________________________________________________________________________________________________________12_________________________________________________________________________________________________________________1@043@00_________________________________________________________________________________________________________________14_________________________________________________________________________________________________________________15_________________________________________________________________________________________________________________16_________________________________________________________________________________________________________________17_________________________________________________________________________________________________________________18_________________________________________________________________________________________________________________19_________________________________________________________________________________________________________________20_________________________________________________________________________________________________________________21_________________________________________________________________________________________________________________22_________________________________________________________________________________________________________________2@043@00_________________________________________________________________________________________________________________24_________________________________________________________________________________________________________________25_________________________________________________________________________________________________________________26_________________________________________________________________________________________________________________27_________________________________________________________________________________________________________________28_________________________________________________________________________________________________________________29_________________________________________________________________________________________________________________@043@000_________________________________________________________________________________________________________________@043@001_________________________________________________________________________________________________________________@043@002_________________________________________________________________________________________________________________@0433@00_________________________________________________________________________________________________________________@043@004_________________________________________________________________________________________________________________@043@005_________________________________________________________________________________________________________________@043@006_________________________________________________________________________________________________________________@043@007_________________________________________________________________________________________________________________@043@008_________________________________________________________________________________________________________________@043@009_________________________________________________________________________________________________________________40_________________________________________________________________________________________________________________&/9#________________________________________________________________________________________________________________ +a =9__________________________________________________________________________________________________________________19_________________________________________________________________________________________________________________29_________________________________________________________________________________________________________________@043@009_________________________________________________________________________________________________________________49_________________________________________________________________________________________________________________59_________________________________________________________________________________________________________________69_________________________________________________________________________________________________________________79_________________________________________________________________________________________________________________89_________________________________________________________________________________________________________________90_________________________________________________________________________________________________________________91_________________________________________________________________________________________________________________92_________________________________________________________________________________________________________________9@043@00_________________________________________________________________________________________________________________94_________________________________________________________________________________________________________________95_________________________________________________________________________________________________________________96_________________________________________________________________________________________________________________97_________________________________________________________________________________________________________________98_________________________________________________________________________________________________________________99_________________________________________________________________________________________________________________109________________________________________________________________________________________________________________119________________________________________________________________________________________________________________129________________________________________________________________________________________________________________1@043@009________________________________________________________________________________________________________________149________________________________________________________________________________________________________________159________________________________________________________________________________________________________________169________________________________________________________________________________________________________________179________________________________________________________________________________________________________________189________________________________________________________________________________________________________________190________________________________________________________________________________________________________________191________________________________________________________________________________________________________________192________________________________________________________________________________________________________________19@043@00________________________________________________________________________________________________________________194________________________________________________________________________________________________________________195________________________________________________________________________________________________________________196________________________________________________________________________________________________________________197________________________________________________________________________________________________________________198________________________________________________________________________________________________________________199________________________________________________________________________________________________________________& @04(END)@00#____________________________________________________________________________________________________________ +6e =@043@009_________________________________________________________________________________________________________________49_________________________________________________________________________________________________________________59_________________________________________________________________________________________________________________69_________________________________________________________________________________________________________________79_________________________________________________________________________________________________________________89_________________________________________________________________________________________________________________90_________________________________________________________________________________________________________________91_________________________________________________________________________________________________________________92_________________________________________________________________________________________________________________9@043@00_________________________________________________________________________________________________________________94_________________________________________________________________________________________________________________95_________________________________________________________________________________________________________________96_________________________________________________________________________________________________________________97_________________________________________________________________________________________________________________98_________________________________________________________________________________________________________________99_________________________________________________________________________________________________________________109________________________________________________________________________________________________________________119________________________________________________________________________________________________________________129________________________________________________________________________________________________________________1@043@009________________________________________________________________________________________________________________149________________________________________________________________________________________________________________159________________________________________________________________________________________________________________169________________________________________________________________________________________________________________179________________________________________________________________________________________________________________189________________________________________________________________________________________________________________190________________________________________________________________________________________________________________191________________________________________________________________________________________________________________192________________________________________________________________________________________________________________19@043@00________________________________________________________________________________________________________________194________________________________________________________________________________________________________________195________________________________________________________________________________________________________________196________________________________________________________________________________________________________________197________________________________________________________________________________________________________________198________________________________________________________________________________________________________________199________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________& @04(END)@00#____________________________________________________________________________________________________________ +6e =9@043@00_________________________________________________________________________________________________________________94_________________________________________________________________________________________________________________95_________________________________________________________________________________________________________________96_________________________________________________________________________________________________________________97_________________________________________________________________________________________________________________98_________________________________________________________________________________________________________________99_________________________________________________________________________________________________________________109________________________________________________________________________________________________________________119________________________________________________________________________________________________________________129________________________________________________________________________________________________________________1@043@009________________________________________________________________________________________________________________149________________________________________________________________________________________________________________159________________________________________________________________________________________________________________169________________________________________________________________________________________________________________179________________________________________________________________________________________________________________189________________________________________________________________________________________________________________190________________________________________________________________________________________________________________191________________________________________________________________________________________________________________192________________________________________________________________________________________________________________19@043@00________________________________________________________________________________________________________________194________________________________________________________________________________________________________________195________________________________________________________________________________________________________________196________________________________________________________________________________________________________________197________________________________________________________________________________________________________________198________________________________________________________________________________________________________________199________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________& @04(END)@00#____________________________________________________________________________________________________________ +6e =1@043@009________________________________________________________________________________________________________________149________________________________________________________________________________________________________________159________________________________________________________________________________________________________________169________________________________________________________________________________________________________________179________________________________________________________________________________________________________________189________________________________________________________________________________________________________________190________________________________________________________________________________________________________________191________________________________________________________________________________________________________________192________________________________________________________________________________________________________________19@043@00________________________________________________________________________________________________________________194________________________________________________________________________________________________________________195________________________________________________________________________________________________________________196________________________________________________________________________________________________________________197________________________________________________________________________________________________________________198________________________________________________________________________________________________________________199________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________& @04(END)@00#____________________________________________________________________________________________________________ +26 =1@043@009________________________________________________________________________________________________________________149________________________________________________________________________________________________________________159________________________________________________________________________________________________________________169________________________________________________________________________________________________________________179________________________________________________________________________________________________________________189________________________________________________________________________________________________________________190________________________________________________________________________________________________________________191________________________________________________________________________________________________________________192________________________________________________________________________________________________________________19@043@00________________________________________________________________________________________________________________194________________________________________________________________________________________________________________195________________________________________________________________________________________________________________196________________________________________________________________________________________________________________197________________________________________________________________________________________________________________198________________________________________________________________________________________________________________199________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________&/#_________________________________________________________________________________________________________________ +a =1@043@009________________________________________________________________________________________________________________140________________________________________________________________________________________________________________141________________________________________________________________________________________________________________142________________________________________________________________________________________________________________14@043@00________________________________________________________________________________________________________________144________________________________________________________________________________________________________________145________________________________________________________________________________________________________________146________________________________________________________________________________________________________________147________________________________________________________________________________________________________________148________________________________________________________________________________________________________________149________________________________________________________________________________________________________________150________________________________________________________________________________________________________________151________________________________________________________________________________________________________________152________________________________________________________________________________________________________________15@043@00________________________________________________________________________________________________________________154________________________________________________________________________________________________________________155________________________________________________________________________________________________________________156________________________________________________________________________________________________________________157________________________________________________________________________________________________________________158________________________________________________________________________________________________________________159________________________________________________________________________________________________________________160________________________________________________________________________________________________________________161________________________________________________________________________________________________________________162________________________________________________________________________________________________________________16@043@00________________________________________________________________________________________________________________164________________________________________________________________________________________________________________165________________________________________________________________________________________________________________166________________________________________________________________________________________________________________167________________________________________________________________________________________________________________168________________________________________________________________________________________________________________169________________________________________________________________________________________________________________170________________________________________________________________________________________________________________171________________________________________________________________________________________________________________172________________________________________________________________________________________________________________17@043@00________________________________________________________________________________________________________________174________________________________________________________________________________________________________________175________________________________________________________________________________________________________________176________________________________________________________________________________________________________________:#__________________________________________________________________________________________________________________ +2f =1@043@009________________________________________________________________________________________________________________140________________________________________________________________________________________________________________141________________________________________________________________________________________________________________142________________________________________________________________________________________________________________14@043@00________________________________________________________________________________________________________________144________________________________________________________________________________________________________________145________________________________________________________________________________________________________________146________________________________________________________________________________________________________________147________________________________________________________________________________________________________________148________________________________________________________________________________________________________________149________________________________________________________________________________________________________________150________________________________________________________________________________________________________________151________________________________________________________________________________________________________________152________________________________________________________________________________________________________________15@043@00________________________________________________________________________________________________________________154________________________________________________________________________________________________________________155________________________________________________________________________________________________________________156________________________________________________________________________________________________________________157________________________________________________________________________________________________________________158________________________________________________________________________________________________________________159________________________________________________________________________________________________________________160________________________________________________________________________________________________________________161________________________________________________________________________________________________________________162________________________________________________________________________________________________________________16@043@00________________________________________________________________________________________________________________164________________________________________________________________________________________________________________165________________________________________________________________________________________________________________166________________________________________________________________________________________________________________167________________________________________________________________________________________________________________168________________________________________________________________________________________________________________169________________________________________________________________________________________________________________170________________________________________________________________________________________________________________171________________________________________________________________________________________________________________172________________________________________________________________________________________________________________17@043@00________________________________________________________________________________________________________________174________________________________________________________________________________________________________________175________________________________________________________________________________________________________________176________________________________________________________________________________________________________________/#__________________________________________________________________________________________________________________ +e =1@043@009________________________________________________________________________________________________________________140________________________________________________________________________________________________________________141________________________________________________________________________________________________________________142________________________________________________________________________________________________________________14@043@00________________________________________________________________________________________________________________144________________________________________________________________________________________________________________145________________________________________________________________________________________________________________146________________________________________________________________________________________________________________147________________________________________________________________________________________________________________148________________________________________________________________________________________________________________149________________________________________________________________________________________________________________150________________________________________________________________________________________________________________151________________________________________________________________________________________________________________152________________________________________________________________________________________________________________15@043@00________________________________________________________________________________________________________________154________________________________________________________________________________________________________________155________________________________________________________________________________________________________________156________________________________________________________________________________________________________________157________________________________________________________________________________________________________________158________________________________________________________________________________________________________________159________________________________________________________________________________________________________________160________________________________________________________________________________________________________________161________________________________________________________________________________________________________________162________________________________________________________________________________________________________________16@043@00________________________________________________________________________________________________________________164________________________________________________________________________________________________________________165________________________________________________________________________________________________________________166________________________________________________________________________________________________________________167________________________________________________________________________________________________________________168________________________________________________________________________________________________________________169________________________________________________________________________________________________________________170________________________________________________________________________________________________________________171________________________________________________________________________________________________________________172________________________________________________________________________________________________________________17@043@00________________________________________________________________________________________________________________174________________________________________________________________________________________________________________175________________________________________________________________________________________________________________176________________________________________________________________________________________________________________Non-match /#________________________________________________________________________________________________________ +8 =1@043@009________________________________________________________________________________________________________________140________________________________________________________________________________________________________________141________________________________________________________________________________________________________________142________________________________________________________________________________________________________________14@043@00________________________________________________________________________________________________________________144________________________________________________________________________________________________________________145________________________________________________________________________________________________________________146________________________________________________________________________________________________________________147________________________________________________________________________________________________________________148________________________________________________________________________________________________________________149________________________________________________________________________________________________________________150________________________________________________________________________________________________________________151________________________________________________________________________________________________________________152________________________________________________________________________________________________________________15@043@00________________________________________________________________________________________________________________154________________________________________________________________________________________________________________155________________________________________________________________________________________________________________156________________________________________________________________________________________________________________157________________________________________________________________________________________________________________158________________________________________________________________________________________________________________159________________________________________________________________________________________________________________160________________________________________________________________________________________________________________161________________________________________________________________________________________________________________162________________________________________________________________________________________________________________16@043@00________________________________________________________________________________________________________________164________________________________________________________________________________________________________________165________________________________________________________________________________________________________________166________________________________________________________________________________________________________________167________________________________________________________________________________________________________________168________________________________________________________________________________________________________________169________________________________________________________________________________________________________________170________________________________________________________________________________________________________________171________________________________________________________________________________________________________________172________________________________________________________________________________________________________________17@043@00________________________________________________________________________________________________________________174________________________________________________________________________________________________________________175________________________________________________________________________________________________________________176________________________________________________________________________________________________________________:#__________________________________________________________________________________________________________________ +6e =14@043@00________________________________________________________________________________________________________________144________________________________________________________________________________________________________________145________________________________________________________________________________________________________________146________________________________________________________________________________________________________________147________________________________________________________________________________________________________________148________________________________________________________________________________________________________________149________________________________________________________________________________________________________________150________________________________________________________________________________________________________________151________________________________________________________________________________________________________________152________________________________________________________________________________________________________________15@043@00________________________________________________________________________________________________________________154________________________________________________________________________________________________________________155________________________________________________________________________________________________________________156________________________________________________________________________________________________________________157________________________________________________________________________________________________________________158________________________________________________________________________________________________________________159________________________________________________________________________________________________________________160________________________________________________________________________________________________________________161________________________________________________________________________________________________________________162________________________________________________________________________________________________________________16@043@00________________________________________________________________________________________________________________164________________________________________________________________________________________________________________165________________________________________________________________________________________________________________166________________________________________________________________________________________________________________167________________________________________________________________________________________________________________168________________________________________________________________________________________________________________169________________________________________________________________________________________________________________170________________________________________________________________________________________________________________171________________________________________________________________________________________________________________172________________________________________________________________________________________________________________17@043@00________________________________________________________________________________________________________________174________________________________________________________________________________________________________________175________________________________________________________________________________________________________________176________________________________________________________________________________________________________________177________________________________________________________________________________________________________________178________________________________________________________________________________________________________________179________________________________________________________________________________________________________________180________________________________________________________________________________________________________________:#__________________________________________________________________________________________________________________ +6e =15@043@00________________________________________________________________________________________________________________154________________________________________________________________________________________________________________155________________________________________________________________________________________________________________156________________________________________________________________________________________________________________157________________________________________________________________________________________________________________158________________________________________________________________________________________________________________159________________________________________________________________________________________________________________160________________________________________________________________________________________________________________161________________________________________________________________________________________________________________162________________________________________________________________________________________________________________16@043@00________________________________________________________________________________________________________________164________________________________________________________________________________________________________________165________________________________________________________________________________________________________________166________________________________________________________________________________________________________________167________________________________________________________________________________________________________________168________________________________________________________________________________________________________________169________________________________________________________________________________________________________________170________________________________________________________________________________________________________________171________________________________________________________________________________________________________________172________________________________________________________________________________________________________________17@043@00________________________________________________________________________________________________________________174________________________________________________________________________________________________________________175________________________________________________________________________________________________________________176________________________________________________________________________________________________________________177________________________________________________________________________________________________________________178________________________________________________________________________________________________________________179________________________________________________________________________________________________________________180________________________________________________________________________________________________________________181________________________________________________________________________________________________________________182________________________________________________________________________________________________________________18@043@00________________________________________________________________________________________________________________184________________________________________________________________________________________________________________185________________________________________________________________________________________________________________186________________________________________________________________________________________________________________187________________________________________________________________________________________________________________188________________________________________________________________________________________________________________189________________________________________________________________________________________________________________190________________________________________________________________________________________________________________:#__________________________________________________________________________________________________________________ +6e =16@043@00________________________________________________________________________________________________________________164________________________________________________________________________________________________________________165________________________________________________________________________________________________________________166________________________________________________________________________________________________________________167________________________________________________________________________________________________________________168________________________________________________________________________________________________________________169________________________________________________________________________________________________________________170________________________________________________________________________________________________________________171________________________________________________________________________________________________________________172________________________________________________________________________________________________________________17@043@00________________________________________________________________________________________________________________174________________________________________________________________________________________________________________175________________________________________________________________________________________________________________176________________________________________________________________________________________________________________177________________________________________________________________________________________________________________178________________________________________________________________________________________________________________179________________________________________________________________________________________________________________180________________________________________________________________________________________________________________181________________________________________________________________________________________________________________182________________________________________________________________________________________________________________18@043@00________________________________________________________________________________________________________________184________________________________________________________________________________________________________________185________________________________________________________________________________________________________________186________________________________________________________________________________________________________________187________________________________________________________________________________________________________________188________________________________________________________________________________________________________________189________________________________________________________________________________________________________________190________________________________________________________________________________________________________________191________________________________________________________________________________________________________________192________________________________________________________________________________________________________________19@043@00________________________________________________________________________________________________________________194________________________________________________________________________________________________________________195________________________________________________________________________________________________________________196________________________________________________________________________________________________________________197________________________________________________________________________________________________________________198________________________________________________________________________________________________________________199________________________________________________________________________________________________________________200________________________________________________________________________________________________________________@04(END)@00#______________________________________________________________________________________________________________ +71 Q less-668/lesstest/lt/subsearch.lt0000644060175306017530000077637314700607707016235 0ustar marknmarkn!lesstest! !version 1 !created 2023-05-31 23:18:59 E "LESS_TERMCAP_am" "1" E "LESS_TERMCAP_cd" "S" E "LESS_TERMCAP_ce" "L" E "LESS_TERMCAP_cl" "A" E "LESS_TERMCAP_cr" "<" E "LESS_TERMCAP_cm" "%p2%d;%p1%dj" E "LESS_TERMCAP_ho" "h" E "LESS_TERMCAP_ll" "l" E "LESS_TERMCAP_mb" "b" E "LESS_TERMCAP_md" "" E "LESS_TERMCAP_me" "" E "LESS_TERMCAP_se" "" E "LESS_TERMCAP_so" "" E "LESS_TERMCAP_sr" "r" E "LESS_TERMCAP_ue" "" E "LESS_TERMCAP_us" "" E "LESS_TERMCAP_vb" "g" E "LESS_TERMCAP_kr" "OC" E "LESS_TERMCAP_kl" "OD" E "LESS_TERMCAP_ku" "OA" E "LESS_TERMCAP_kd" "OB" E "LESS_TERMCAP_kh" "OH" E "LESS_TERMCAP_@7" "OF" E "COLUMNS" "95" E "LINES" "34" E "LESSCHARSET" "utf8" E "LANG" "C" T "subsearch" A "subsearch" F "subsearch" 65115 /* * Copyright (C) 1984-2023 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Routines which deal with the characteristics of the terminal. * Uses termcap to be as terminal-independent as possible. */ #include "less.h" #include "cmd.h" #if MSDOS_COMPILER #include "pckeys.h" #if MSDOS_COMPILER==MSOFTC #include #else #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC #include #if MSDOS_COMPILER==DJGPPC #include extern int fd0; #endif #else #if MSDOS_COMPILER==WIN32C #include #endif #endif #endif #include #ifndef FOREGROUND_BLUE #define FOREGROUND_BLUE 0x0001 #endif #ifndef FOREGROUND_GREEN #define FOREGROUND_GREEN 0x0002 #endif #ifndef FOREGROUND_RED #define FOREGROUND_RED 0x0004 #endif #ifndef FOREGROUND_INTENSITY #define FOREGROUND_INTENSITY 0x0008 #endif #else #if HAVE_SYS_IOCTL_H #include #endif #if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS #include #else #if HAVE_TERMIO_H #include #else #if HAVE_SGSTAT_H #include #else #include #endif #endif #endif #if HAVE_NCURSESW_TERMCAP_H #include #else #if HAVE_NCURSES_TERMCAP_H #include #else #if HAVE_TERMCAP_H #include #endif #endif #endif #ifdef _OSK #include #endif #if OS2 #include #include "pckeys.h" #endif #if HAVE_SYS_STREAM_H #include #endif #if HAVE_SYS_PTEM_H #include #endif #endif /* MSDOS_COMPILER */ /* * Check for broken termios package that forces you to manually * set the line discipline. */ #ifdef __ultrix__ #define MUST_SET_LINE_DISCIPLINE 1 #else #define MUST_SET_LINE_DISCIPLINE 0 #endif #if OS2 #define DEFAULT_TERM "ansi" static char *windowid; #else #define DEFAULT_TERM "unknown" #endif #if MSDOS_COMPILER==MSOFTC static int videopages; static long msec_loops; static int flash_created = 0; #define SET_FG_COLOR(fg) _settextcolor(fg) #define SET_BG_COLOR(bg) _setbkcolor(bg) #define SETCOLORS(fg,bg) { SET_FG_COLOR(fg); SET_BG_COLOR(bg); } #endif #if MSDOS_COMPILER==BORLANDC static unsigned short *whitescreen; static int flash_created = 0; #endif #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC #define _settextposition(y,x) gotoxy(x,y) #define _clearscreen(m) clrscr() #define _outtext(s) cputs(s) #define SET_FG_COLOR(fg) textcolor(fg) #define SET_BG_COLOR(bg) textbackground(bg) #define SETCOLORS(fg,bg) { SET_FG_COLOR(fg); SET_BG_COLOR(bg); } extern int sc_height; #endif #if MSDOS_COMPILER==WIN32C #define UTF8_MAX_LENGTH 4 struct keyRecord { WCHAR unicode; int ascii; int scan; } currentKey; static int keyCount = 0; static WORD curr_attr; static int pending_scancode = 0; static char x11mousebuf[] = "[M???"; /* Mouse report, after ESC */ static int x11mousePos, x11mouseCount; static HANDLE con_out_save = INVALID_HANDLE_VALUE; /* previous console */ static HANDLE con_out_ours = INVALID_HANDLE_VALUE; /* our own */ HANDLE con_out = INVALID_HANDLE_VALUE; /* current console */ extern int utf_mode; extern int quitting; static void win32_init_term(); static void win32_deinit_term(); #ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING #define ENABLE_VIRTUAL_TERMINAL_PROCESSING 4 #endif #define FG_COLORS (FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE | FOREGROUND_INTENSITY) #define BG_COLORS (BACKGROUND_RED | BACKGROUND_GREEN | BACKGROUND_BLUE | BACKGROUND_INTENSITY) #define MAKEATTR(fg,bg) ((WORD)((fg)|((bg)<<4))) #define APPLY_COLORS() { if (SetConsoleTextAttribute(con_out, curr_attr) == 0) \ error("SETCOLORS failed", NULL_PARG); } #define SET_FG_COLOR(fg) { curr_attr |= (fg); APPLY_COLORS(); } #define SET_BG_COLOR(bg) { curr_attr |= ((bg)<<4); APPLY_COLORS(); } #define SETCOLORS(fg,bg) { curr_attr = MAKEATTR(fg,bg); APPLY_COLORS(); } #endif #if MSDOS_COMPILER public int nm_fg_color; /* Color of normal text */ public int nm_bg_color; public int bo_fg_color; /* Color of bold text */ public int bo_bg_color; public int ul_fg_color; /* Color of underlined text */ public int ul_bg_color; public int so_fg_color; /* Color of standout text */ public int so_bg_color; public int bl_fg_color; /* Color of blinking text */ public int bl_bg_color; static int sy_fg_color; /* Color of system text (before less) */ static int sy_bg_color; public int sgr_mode; /* Honor ANSI sequences rather than using above */ #if MSDOS_COMPILER==WIN32C static DWORD init_output_mode; /* The initial console output mode */ public int vt_enabled = -1; /* Is virtual terminal processing available? */ #endif #else /* * Strings passed to tputs() to do various terminal functions. */ static char *sc_pad, /* Pad string */ *sc_home, /* Cursor home */ *sc_addline, /* Add line, scroll down following lines */ *sc_lower_left, /* Cursor to last line, first column */ *sc_return, /* Cursor to beginning of current line */ *sc_move, /* General cursor positioning */ *sc_clear, /* Clear screen */ *sc_eol_clear, /* Clear to end of line */ *sc_eos_clear, /* Clear to end of screen */ *sc_s_in, /* Enter standout (highlighted) mode */ *sc_s_out, /* Exit standout mode */ *sc_u_in, /* Enter underline mode */ *sc_u_out, /* Exit underline mode */ *sc_b_in, /* Enter bold mode */ *sc_b_out, /* Exit bold mode */ *sc_bl_in, /* Enter blink mode */ *sc_bl_out, /* Exit blink mode */ *sc_visual_bell, /* Visual bell (flash screen) sequence */ *sc_backspace, /* Backspace cursor */ *sc_s_keypad, /* Start keypad mode */ *sc_e_keypad, /* End keypad mode */ *sc_s_mousecap, /* Start mouse capture mode */ *sc_e_mousecap, /* End mouse capture mode */ *sc_init, /* Startup terminal initialization */ *sc_deinit; /* Exit terminal de-initialization */ static int attrcolor = -1; #endif static int init_done = 0; public int auto_wrap; /* Terminal does \r\n when write past margin */ public int ignaw; /* Terminal ignores \n immediately after wrap */ public int erase_char; /* The user's erase char */ public int erase2_char; /* The user's other erase char */ public int kill_char; /* The user's line-kill char */ public int werase_char; /* The user's word-erase char */ public int sc_width, sc_height; /* Height & width of screen */ public int bo_s_width, bo_e_width; /* Printing width of boldface seq */ public int ul_s_width, ul_e_width; /* Printing width of underline seq */ public int so_s_width, so_e_width; /* Printing width of standout seq */ public int bl_s_width, bl_e_width; /* Printing width of blink seq */ public int above_mem, below_mem; /* Memory retained above/below screen */ public int can_goto_line; /* Can move cursor to any line */ public int clear_bg; /* Clear fills with background color */ public int missing_cap = 0; /* Some capability is missing */ public char *kent = NULL; /* Keypad ENTER sequence */ public int term_init_done = FALSE; public int full_screen = TRUE; static int attrmode = AT_NORMAL; static int termcap_debug = -1; static int no_alt_screen; /* sc_init does not switch to alt screen */ extern int binattr; extern int one_screen; #if LESSTEST extern char *ttyin_name; #endif /*LESSTEST*/ #if !MSDOS_COMPILER static char *cheaper(char *t1, char *t2, char *def); static void tmodes(char *incap, char *outcap, char **instr, char **outstr, char *def_instr, char *def_outstr, char **spp); #endif /* * These two variables are sometimes defined in, * and needed by, the termcap library. */ #if MUST_DEFINE_OSPEED extern short ospeed; /* Terminal output baud rate */ extern char PC; /* Pad character */ #endif #ifdef _OSK short ospeed; char PC_, *UP, *BC; #endif extern int quiet; /* If VERY_QUIET, use visual bell for bell */ extern int no_vbell; extern int no_back_scroll; extern int swindow; extern int no_init; extern int no_keypad; extern int sigs; extern int wscroll; extern int screen_trashed; extern int top_scroll; extern int quit_if_one_screen; extern int oldbot; extern int mousecap; extern int is_tty; extern int use_color; #if HILITE_SEARCH extern int hilite_search; #endif #if MSDOS_COMPILER==WIN32C extern HANDLE tty; extern DWORD console_mode; #ifndef ENABLE_EXTENDED_FLAGS #define ENABLE_EXTENDED_FLAGS 0x80 #define ENABLE_QUICK_EDIT_MODE 0x40 #endif #else extern int tty; #endif #if (HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS) || defined(TCGETA) /* * Set termio flags for use by less. */ static void set_termio_flags( #if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS struct termios *s #else struct termio *s #endif ) { s->c_lflag &= ~(0 #ifdef ICANON | ICANON #endif #ifdef ECHO | ECHO #endif #ifdef ECHOE | ECHOE #endif #ifdef ECHOK | ECHOK #endif #if ECHONL | ECHONL #endif ); s->c_oflag |= (0 #ifdef OXTABS | OXTABS #else #ifdef TAB3 | TAB3 #else #ifdef XTABS | XTABS #endif #endif #endif #ifdef OPOST | OPOST #endif #ifdef ONLCR | ONLCR #endif ); s->c_oflag &= ~(0 #ifdef ONOEOT | ONOEOT #endif #ifdef OCRNL | OCRNL #endif #ifdef ONOCR | ONOCR #endif #ifdef ONLRET | ONLRET #endif ); } #endif /* * Change terminal to "raw mode", or restore to "normal" mode. * "Raw mode" means * 1. An outstanding read will complete on receipt of a single keystroke. * 2. Input is not echoed. * 3. On output, \n is mapped to \r\n. * 4. \t is NOT expanded into spaces. * 5. Signal-causing characters such as ctrl-C (interrupt), * etc. are NOT disabled. * It doesn't matter whether an input \n is mapped to \r, or vice versa. */ public void raw_mode(int on) { static int curr_on = 0; if (on == curr_on) return; erase2_char = '\b'; /* in case OS doesn't know about erase2 */ #if LESSTEST if (ttyin_name != NULL) { /* {{ For consistent conditions when running tests. }} */ erase_char = '\b'; kill_char = CONTROL('U'); werase_char = CONTROL('W'); } else #endif /*LESSTEST*/ #if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS { struct termios s; static struct termios save_term; static int saved_term = 0; if (on) { /* * Get terminal modes. */ if (tcgetattr(tty, &s) < 0) { erase_char = '\b'; kill_char = CONTROL('U'); werase_char = CONTROL('W'); } else { /* * Save modes and set certain variables dependent on modes. */ if (!saved_term) { save_term = s; saved_term = 1; } #if HAVE_OSPEED switch (cfgetospeed(&s)) { #ifdef B0 case B0: ospeed = 0; break; #endif #ifdef B50 case B50: ospeed = 1; break; #endif #ifdef B75 case B75: ospeed = 2; break; #endif #ifdef B110 case B110: ospeed = 3; break; #endif #ifdef B134 case B134: ospeed = 4; break; #endif #ifdef B150 case B150: ospeed = 5; break; #endif #ifdef B200 case B200: ospeed = 6; break; #endif #ifdef B300 case B300: ospeed = 7; break; #endif #ifdef B600 case B600: ospeed = 8; break; #endif #ifdef B1200 case B1200: ospeed = 9; break; #endif #ifdef B1800 case B1800: ospeed = 10; break; #endif #ifdef B2400 case B2400: ospeed = 11; break; #endif #ifdef B4800 case B4800: ospeed = 12; break; #endif #ifdef B9600 case B9600: ospeed = 13; break; #endif #ifdef EXTA case EXTA: ospeed = 14; break; #endif #ifdef EXTB case EXTB: ospeed = 15; break; #endif #ifdef B57600 case B57600: ospeed = 16; break; #endif #ifdef B115200 case B115200: ospeed = 17; break; #endif default: ; } #endif erase_char = s.c_cc[VERASE]; #ifdef VERASE2 erase2_char = s.c_cc[VERASE2]; #endif kill_char = s.c_cc[VKILL]; #ifdef VWERASE werase_char = s.c_cc[VWERASE]; #else werase_char = CONTROL('W'); #endif /* * Set the modes to the way we want them. */ set_termio_flags(&s); s.c_cc[VMIN] = 1; s.c_cc[VTIME] = 0; #ifdef VLNEXT s.c_cc[VLNEXT] = 0; #endif #ifdef VDSUSP s.c_cc[VDSUSP] = 0; #endif #ifdef VSTOP s.c_cc[VSTOP] = 0; #endif #ifdef VSTART s.c_cc[VSTART] = 0; #endif #if MUST_SET_LINE_DISCIPLINE /* * System's termios is broken; need to explicitly * request TERMIODISC line discipline. */ s.c_line = TERMIODISC; #endif } } else { /* * Restore saved modes. */ s = save_term; } #if HAVE_FSYNC fsync(tty); #endif tcsetattr(tty, TCSADRAIN, &s); #if MUST_SET_LINE_DISCIPLINE if (!on) { /* * Broken termios *ignores* any line discipline * except TERMIODISC. A different old line discipline * is therefore not restored, yet. Restore the old * line discipline by hand. */ ioctl(tty, TIOCSETD, &save_term.c_line); } #endif } #else #ifdef TCGETA { struct termio s; static struct termio save_term; static int saved_term = 0; if (on) { /* * Get terminal modes. */ ioctl(tty, TCGETA, &s); /* * Save modes and set certain variables dependent on modes. */ if (!saved_term) { save_term = s; saved_term = 1; } #if HAVE_OSPEED ospeed = s.c_cflag & CBAUD; #endif erase_char = s.c_cc[VERASE]; kill_char = s.c_cc[VKILL]; #ifdef VWERASE werase_char = s.c_cc[VWERASE]; #else werase_char = CONTROL('W'); #endif /* * Set the modes to the way we want them. */ set_termio_flags(&s); s.c_cc[VMIN] = 1; s.c_cc[VTIME] = 0; #ifdef VSTOP s.c_cc[VSTOP] = 0; #endif #ifdef VSTART s.c_cc[VSTART] = 0; #endif } else { /* * Restore saved modes. */ s = save_term; } ioctl(tty, TCSETAW, &s); } #else #ifdef TIOCGETP { struct sgttyb s; static struct sgttyb save_term; static int saved_term = 0; if (on) { /* * Get terminal modes. */ ioctl(tty, TIOCGETP, &s); /* * Save modes and set certain variables dependent on modes. */ if (!saved_term) { save_term = s; saved_term = 1; } #if HAVE_OSPEED ospeed = s.sg_ospeed; #endif erase_char = s.sg_erase; kill_char = s.sg_kill; werase_char = CONTROL('W'); /* * Set the modes to the way we want them. */ s.sg_flags |= CBREAK; s.sg_flags &= ~(ECHO|XTABS); } else { /* * Restore saved modes. */ s = save_term; } ioctl(tty, TIOCSETN, &s); } #else #ifdef _OSK { struct sgbuf s; static struct sgbuf save_term; static int saved_term = 0; if (on) { /* * Get terminal modes. */ _gs_opt(tty, &s); /* * Save modes and set certain variables dependent on modes. */ if (!saved_term) { save_term = s; saved_term = 1; } erase_char = s.sg_bspch; kill_char = s.sg_dlnch; werase_char = CONTROL('W'); /* * Set the modes to the way we want them. */ s.sg_echo = 0; s.sg_eofch = 0; s.sg_pause = 0; s.sg_psch = 0; } else { /* * Restore saved modes. */ s = save_term; } _ss_opt(tty, &s); } #else /* MS-DOS, Windows, or OS2 */ #if OS2 /* OS2 */ LSIGNAL(SIGINT, SIG_IGN); #endif erase_char = '\b'; #if MSDOS_COMPILER==DJGPPC kill_char = CONTROL('U'); /* * So that when we shell out or run another program, its * stdin is in cooked mode. We do not switch stdin to binary * mode if fd0 is zero, since that means we were called before * tty was reopened in open_getchr, in which case we would be * changing the original stdin device outside less. */ if (fd0 != 0) setmode(0, on ? O_BINARY : O_TEXT); #else kill_char = ESC; #endif werase_char = CONTROL('W'); #endif #endif #endif #endif curr_on = on; } #if !MSDOS_COMPILER /* * Some glue to prevent calling termcap functions if tgetent() failed. */ static int hardcopy; static char * ltget_env(char *capname) { char name[64]; if (termcap_debug) { struct env { struct env *next; char *name; char *value; }; static struct env *envs = NULL; struct env *p; for (p = envs; p != NULL; p = p->next) if (strcmp(p->name, capname) == 0) return p->value; p = (struct env *) ecalloc(1, sizeof(struct env)); p->name = save(capname); p->value = (char *) ecalloc(strlen(capname)+3, sizeof(char)); sprintf(p->value, "<%s>", capname); p->next = envs; envs = p; return p->value; } SNPRINTF1(name, sizeof(name), "LESS_TERMCAP_%s", capname); return (lgetenv(name)); } static int ltgetflag(char *capname) { char *s; if ((s = ltget_env(capname)) != NULL) return (*s != '\0' && *s != '0'); if (hardcopy) return (0); return (tgetflag(capname)); } static int ltgetnum(char *capname) { char *s; if ((s = ltget_env(capname)) != NULL) return (atoi(s)); if (hardcopy) return (-1); return (tgetnum(capname)); } static char * ltgetstr(char *capname, char **pp) { char *s; if ((s = ltget_env(capname)) != NULL) return (s); if (hardcopy) return (NULL); return (tgetstr(capname, pp)); } #endif /* MSDOS_COMPILER */ /* * Get size of the output screen. */ public void scrsize(void) { char *s; int sys_height; int sys_width; #if !MSDOS_COMPILER int n; #endif #define DEF_SC_WIDTH 80 #if MSDOS_COMPILER #define DEF_SC_HEIGHT 25 #else #define DEF_SC_HEIGHT 24 #endif sys_width = sys_height = 0; #if LESSTEST if (ttyin_name != NULL) #endif /*LESSTEST*/ { #if MSDOS_COMPILER==MSOFTC { struct videoconfig w; _getvideoconfig(&w); sys_height = w.numtextrows; sys_width = w.numtextcols; } #else #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC { struct text_info w; gettextinfo(&w); sys_height = w.screenheight; sys_width = w.screenwidth; } #else #if MSDOS_COMPILER==WIN32C { CONSOLE_SCREEN_BUFFER_INFO scr; GetConsoleScreenBufferInfo(con_out, &scr); sys_height = scr.srWindow.Bottom - scr.srWindow.Top + 1; sys_width = scr.srWindow.Right - scr.srWindow.Left + 1; } #else #if OS2 { int s[2]; _scrsize(s); sys_width = s[0]; sys_height = s[1]; /* * When using terminal emulators for XFree86/OS2, the * _scrsize function does not work well. * Call the scrsize.exe program to get the window size. */ windowid = getenv("WINDOWID"); if (windowid != NULL) { FILE *fd = popen("scrsize", "rt"); if (fd != NULL) { int w, h; fscanf(fd, "%i %i", &w, &h); if (w > 0 && h > 0) { sys_width = w; sys_height = h; } pclose(fd); } } } #else #ifdef TIOCGWINSZ { struct winsize w; if (ioctl(2, TIOCGWINSZ, &w) == 0) { if (w.ws_row > 0) sys_height = w.ws_row; if (w.ws_col > 0) sys_width = w.ws_col; } } #else #ifdef WIOCGETD { struct uwdata w; if (ioctl(2, WIOCGETD, &w) == 0) { if (w.uw_height > 0) sys_height = w.uw_height / w.uw_vs; if (w.uw_width > 0) sys_width = w.uw_width / w.uw_hs; } } #endif #endif #endif #endif #endif #endif } if (sys_height > 0) sc_height = sys_height; else if ((s = lgetenv("LINES")) != NULL) sc_height = atoi(s); #if !MSDOS_COMPILER else if ((n = ltgetnum("li")) > 0) sc_height = n; #endif if ((s = lgetenv("LESS_LINES")) != NULL) { int height = atoi(s); sc_height = (height < 0) ? sc_height + height : height; full_screen = FALSE; } if (sc_height <= 0) sc_height = DEF_SC_HEIGHT; if (sys_width > 0) sc_width = sys_width; else if ((s = lgetenv("COLUMNS")) != NULL) sc_width = atoi(s); #if !MSDOS_COMPILER else if ((n = ltgetnum("co")) > 0) sc_width = n; #endif if ((s = lgetenv("LESS_COLUMNS")) != NULL) { int width = atoi(s); sc_width = (width < 0) ? sc_width + width : width; } if (sc_width <= 0) sc_width = DEF_SC_WIDTH; } #if MSDOS_COMPILER==MSOFTC /* * Figure out how many empty loops it takes to delay a millisecond. */ static void get_clock(void) { clock_t start; /* * Get synchronized at the start of a tick. */ start = clock(); while (clock() == start) ; /* * Now count loops till the next tick. */ start = clock(); msec_loops = 0; while (clock() == start) msec_loops++; /* * Convert from (loops per clock) to (loops per millisecond). */ msec_loops *= CLOCKS_PER_SEC; msec_loops /= 1000; } /* * Delay for a specified number of milliseconds. */ static void delay(int msec) { long i; while (msec-- > 0) { for (i = 0; i < msec_loops; i++) (void) clock(); } } #endif /* * Return the characters actually input by a "special" key. */ public char * special_key_str(int key) { static char tbuf[40]; char *s; #if MSDOS_COMPILER || OS2 static char k_right[] = { '\340', PCK_RIGHT, 0 }; static char k_left[] = { '\340', PCK_LEFT, 0 }; static char k_ctl_right[] = { '\340', PCK_CTL_RIGHT, 0 }; static char k_ctl_left[] = { '\340', PCK_CTL_LEFT, 0 }; static char k_insert[] = { '\340', PCK_INSERT, 0 }; static char k_delete[] = { '\340', PCK_DELETE, 0 }; static char k_ctl_delete[] = { '\340', PCK_CTL_DELETE, 0 }; static char k_ctl_backspace[] = { '\177', 0 }; static char k_backspace[] = { '\b', 0 }; static char k_home[] = { '\340', PCK_HOME, 0 }; static char k_end[] = { '\340', PCK_END, 0 }; static char k_up[] = { '\340', PCK_UP, 0 }; static char k_down[] = { '\340', PCK_DOWN, 0 }; static char k_backtab[] = { '\340', PCK_SHIFT_TAB, 0 }; static char k_pagedown[] = { '\340', PCK_PAGEDOWN, 0 }; static char k_pageup[] = { '\340', PCK_PAGEUP, 0 }; static char k_f1[] = { '\340', PCK_F1, 0 }; #endif #if !MSDOS_COMPILER char *sp = tbuf; #endif switch (key) { #if OS2 /* * If windowid is not NULL, assume less is executed in * the XFree86 environment. */ case SK_RIGHT_ARROW: s = windowid ? ltgetstr("kr", &sp) : k_right; break; case SK_LEFT_ARROW: s = windowid ? ltgetstr("kl", &sp) : k_left; break; case SK_UP_ARROW: s = windowid ? ltgetstr("ku", &sp) : k_up; break; case SK_DOWN_ARROW: s = windowid ? ltgetstr("kd", &sp) : k_down; break; case SK_PAGE_UP: s = windowid ? ltgetstr("kP", &sp) : k_pageup; break; case SK_PAGE_DOWN: s = windowid ? ltgetstr("kN", &sp) : k_pagedown; break; case SK_HOME: s = windowid ? ltgetstr("kh", &sp) : k_home; break; case SK_END: s = windowid ? ltgetstr("@7", &sp) : k_end; break; case SK_DELETE: s = windowid ? ltgetstr("kD", &sp) : k_delete; if (s == NULL) { tbuf[0] = '\177'; tbuf[1] = '\0'; s = tbuf; } break; #endif #if MSDOS_COMPILER case SK_RIGHT_ARROW: s = k_right; break; case SK_LEFT_ARROW: s = k_left; break; case SK_UP_ARROW: s = k_up; break; case SK_DOWN_ARROW: s = k_down; break; case SK_PAGE_UP: s = k_pageup; break; case SK_PAGE_DOWN: s = k_pagedown; break; case SK_HOME: s = k_home; break; case SK_END: s = k_end; break; case SK_DELETE: s = k_delete; break; #endif #if MSDOS_COMPILER || OS2 case SK_INSERT: s = k_insert; break; case SK_CTL_LEFT_ARROW: s = k_ctl_left; break; case SK_CTL_RIGHT_ARROW: s = k_ctl_right; break; case SK_CTL_BACKSPACE: s = k_ctl_backspace; break; case SK_CTL_DELETE: s = k_ctl_delete; break; case SK_BACKSPACE: s = k_backspace; break; case SK_F1: s = k_f1; break; case SK_BACKTAB: s = k_backtab; break; #else case SK_RIGHT_ARROW: s = ltgetstr("kr", &sp); break; case SK_LEFT_ARROW: s = ltgetstr("kl", &sp); break; case SK_UP_ARROW: s = ltgetstr("ku", &sp); break; case SK_DOWN_ARROW: s = ltgetstr("kd", &sp); break; case SK_PAGE_UP: s = ltgetstr("kP", &sp); break; case SK_PAGE_DOWN: s = ltgetstr("kN", &sp); break; case SK_HOME: s = ltgetstr("kh", &sp); break; case SK_END: s = ltgetstr("@7", &sp); break; case SK_DELETE: s = ltgetstr("kD", &sp); if (s == NULL) { tbuf[0] = '\177'; tbuf[1] = '\0'; s = tbuf; } break; case SK_BACKSPACE: s = ltgetstr("kb", &sp); if (s == NULL) { tbuf[0] = '\b'; tbuf[1] = '\0'; s = tbuf; } break; #endif case SK_CONTROL_K: tbuf[0] = CONTROL('K'); tbuf[1] = '\0'; s = tbuf; break; default: return (NULL); } return (s); } /* * Get terminal capabilities via termcap. */ public void get_term(void) { termcap_debug = !isnullenv(lgetenv("LESS_TERMCAP_DEBUG")); #if MSDOS_COMPILER auto_wrap = 1; ignaw = 0; can_goto_line = 1; clear_bg = 1; /* * Set up default colors. * The xx_s_width and xx_e_width vars are already initialized to 0. */ #if MSDOS_COMPILER==MSOFTC sy_bg_color = _getbkcolor(); sy_fg_color = _gettextcolor(); get_clock(); #else #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC { struct text_info w; gettextinfo(&w); sy_bg_color = (w.attribute >> 4) & 0x0F; sy_fg_color = (w.attribute >> 0) & 0x0F; } #else #if MSDOS_COMPILER==WIN32C { CONSOLE_SCREEN_BUFFER_INFO scr; con_out_save = con_out = GetStdHandle(STD_OUTPUT_HANDLE); /* * Always open stdin in binary. Note this *must* be done * before any file operations have been done on fd0. */ SET_BINARY(0); GetConsoleMode(con_out, &init_output_mode); GetConsoleScreenBufferInfo(con_out, &scr); curr_attr = scr.wAttributes; sy_bg_color = (curr_attr & BG_COLORS) >> 4; /* normalize */ sy_fg_color = curr_attr & FG_COLORS; } #endif #endif #endif nm_fg_color = sy_fg_color; nm_bg_color = sy_bg_color; bo_fg_color = 11; bo_bg_color = 0; ul_fg_color = 9; ul_bg_color = 0; so_fg_color = 15; so_bg_color = 9; bl_fg_color = 15; bl_bg_color = 0; sgr_mode = 0; /* * Get size of the screen. */ scrsize(); pos_init(); #else /* !MSDOS_COMPILER */ { char *sp; char *t1, *t2; char *term; /* * Some termcap libraries assume termbuf is static * (accessible after tgetent returns). */ static char termbuf[TERMBUF_SIZE]; static char sbuf[TERMSBUF_SIZE]; #if OS2 /* * Make sure the termcap database is available. */ sp = lgetenv("TERMCAP"); if (isnullenv(sp)) { char *termcap; if ((sp = homefile("termcap.dat")) != NULL) { termcap = (char *) ecalloc(strlen(sp)+9, sizeof(char)); sprintf(termcap, "TERMCAP=%s", sp); free(sp); putenv(termcap); } } #endif /* * Find out what kind of terminal this is. */ if ((term = lgetenv("TERM")) == NULL) term = DEFAULT_TERM; hardcopy = 0; /* {{ Should probably just pass NULL instead of termbuf. }} */ if (tgetent(termbuf, term) != TGETENT_OK) hardcopy = 1; if (ltgetflag("hc")) hardcopy = 1; /* * Get size of the screen. */ scrsize(); pos_init(); auto_wrap = ltgetflag("am"); ignaw = ltgetflag("xn"); above_mem = ltgetflag("da"); below_mem = ltgetflag("db"); clear_bg = ltgetflag("ut"); no_alt_screen = ltgetflag("NR"); /* * Assumes termcap variable "sg" is the printing width of: * the standout sequence, the end standout sequence, * the underline sequence, the end underline sequence, * the boldface sequence, and the end boldface sequence. */ if ((so_s_width = ltgetnum("sg")) < 0) so_s_width = 0; so_e_width = so_s_width; bo_s_width = bo_e_width = so_s_width; ul_s_width = ul_e_width = so_s_width; bl_s_width = bl_e_width = so_s_width; #if HILITE_SEARCH if (so_s_width > 0 || so_e_width > 0) /* * Disable highlighting by default on magic cookie terminals. * Turning on highlighting might change the displayed width * of a line, causing the display to get messed up. * The user can turn it back on with -g, * but she won't like the results. */ hilite_search = 0; #endif /* * Get various string-valued capabilities. */ sp = sbuf; #if HAVE_OSPEED sc_pad = ltgetstr("pc", &sp); if (sc_pad != NULL) PC = *sc_pad; #endif sc_s_keypad = ltgetstr("ks", &sp); if (sc_s_keypad == NULL) sc_s_keypad = ""; sc_e_keypad = ltgetstr("ke", &sp); if (sc_e_keypad == NULL) sc_e_keypad = ""; kent = ltgetstr("@8", &sp); sc_s_mousecap = ltgetstr("MOUSE_START", &sp); if (sc_s_mousecap == NULL) sc_s_mousecap = ESCS "[?1000h" ESCS "[?1006h"; sc_e_mousecap = ltgetstr("MOUSE_END", &sp); if (sc_e_mousecap == NULL) sc_e_mousecap = ESCS "[?1006l" ESCS "[?1000l"; sc_init = ltgetstr("ti", &sp); if (sc_init == NULL) sc_init = ""; sc_deinit= ltgetstr("te", &sp); if (sc_deinit == NULL) sc_deinit = ""; sc_eol_clear = ltgetstr("ce", &sp); if (sc_eol_clear == NULL || *sc_eol_clear == '\0') { missing_cap = 1; sc_eol_clear = ""; } sc_eos_clear = ltgetstr("cd", &sp); if (below_mem && (sc_eos_clear == NULL || *sc_eos_clear == '\0')) { missing_cap = 1; sc_eos_clear = ""; } sc_clear = ltgetstr("cl", &sp); if (sc_clear == NULL || *sc_clear == '\0') { missing_cap = 1; sc_clear = "\n\n"; } sc_move = ltgetstr("cm", &sp); if (sc_move == NULL || *sc_move == '\0') { /* * This is not an error here, because we don't * always need sc_move. * We need it only if we don't have home or lower-left. */ sc_move = ""; can_goto_line = 0; } else can_goto_line = 1; tmodes("so", "se", &sc_s_in, &sc_s_out, "", "", &sp); tmodes("us", "ue", &sc_u_in, &sc_u_out, sc_s_in, sc_s_out, &sp); tmodes("md", "me", &sc_b_in, &sc_b_out, sc_s_in, sc_s_out, &sp); tmodes("mb", "me", &sc_bl_in, &sc_bl_out, sc_s_in, sc_s_out, &sp); sc_visual_bell = ltgetstr("vb", &sp); if (sc_visual_bell == NULL) sc_visual_bell = ""; if (ltgetflag("bs")) sc_backspace = "\b"; else { sc_backspace = ltgetstr("bc", &sp); if (sc_backspace == NULL || *sc_backspace == '\0') sc_backspace = "\b"; } /* * Choose between using "ho" and "cm" ("home" and "cursor move") * to move the cursor to the upper left corner of the screen. */ t1 = ltgetstr("ho", &sp); if (t1 == NULL) t1 = ""; if (*sc_move == '\0') t2 = ""; else { strcpy(sp, tgoto(sc_move, 0, 0)); t2 = sp; sp += strlen(sp) + 1; } sc_home = cheaper(t1, t2, "|\b^"); /* * Choose between using "ll" and "cm" ("lower left" and "cursor move") * to move the cursor to the lower left corner of the screen. */ t1 = ltgetstr("ll", &sp); if (t1 == NULL || !full_screen) t1 = ""; if (*sc_move == '\0') t2 = ""; else { strcpy(sp, tgoto(sc_move, 0, sc_height-1)); t2 = sp; sp += strlen(sp) + 1; } sc_lower_left = cheaper(t1, t2, "\r"); /* * Get carriage return string. */ sc_return = ltgetstr("cr", &sp); if (sc_return == NULL) sc_return = "\r"; /* * Choose between using "al" or "sr" ("add line" or "scroll reverse") * to add a line at the top of the screen. */ t1 = ltgetstr("al", &sp); if (t1 == NULL) t1 = ""; t2 = ltgetstr("sr", &sp); if (t2 == NULL) t2 = ""; #if OS2 if (*t1 == '\0' && *t2 == '\0') sc_addline = ""; else #endif if (above_mem) sc_addline = t1; else sc_addline = cheaper(t1, t2, ""); if (*sc_addline == '\0') { /* * Force repaint on any backward movement. */ no_back_scroll = 1; } } #endif /* MSDOS_COMPILER */ } #if !MSDOS_COMPILER /* * Return the cost of displaying a termcap string. * We use the trick of calling tputs, but as a char printing function * we give it inc_costcount, which just increments "costcount". * This tells us how many chars would be printed by using this string. * {{ Couldn't we just use strlen? }} */ static int costcount; /*ARGSUSED*/ static int inc_costcount(int c) { costcount++; return (c); } static int cost(char *t) { costcount = 0; tputs(t, sc_height, inc_costcount); return (costcount); } /* * Return the "best" of the two given termcap strings. * The best, if both exist, is the one with the lower * cost (see cost() function). */ static char * cheaper(char *t1, char *t2, char *def) { if (*t1 == '\0' && *t2 == '\0') { missing_cap = 1; return (def); } if (*t1 == '\0') return (t2); if (*t2 == '\0') return (t1); if (cost(t1) < cost(t2)) return (t1); return (t2); } static void tmodes(char *incap, char *outcap, char **instr, char **outstr, char *def_instr, char *def_outstr, char **spp) { *instr = ltgetstr(incap, spp); if (*instr == NULL) { /* Use defaults. */ *instr = def_instr; *outstr = def_outstr; return; } *outstr = ltgetstr(outcap, spp); if (*outstr == NULL) /* No specific out capability; use "me". */ *outstr = ltgetstr("me", spp); if (*outstr == NULL) /* Don't even have "me"; use a null string. */ *outstr = ""; } #endif /* MSDOS_COMPILER */ /* * Below are the functions which perform all the * terminal-specific screen manipulation. */ #if MSDOS_COMPILER #if MSDOS_COMPILER==WIN32C static void _settextposition(int row, int col) { COORD cpos; CONSOLE_SCREEN_BUFFER_INFO csbi; GetConsoleScreenBufferInfo(con_out, &csbi); cpos.X = csbi.srWindow.Left + (col - 1); cpos.Y = csbi.srWindow.Top + (row - 1); SetConsoleCursorPosition(con_out, cpos); } #endif /* * Initialize the screen to the correct color at startup. */ static void initcolor(void) { #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC intensevideo(); #endif SETCOLORS(nm_fg_color, nm_bg_color); #if 0 /* * This clears the screen at startup. This is different from * the behavior of other versions of less. Disable it for now. */ char *blanks; int row; int col; /* * Create a complete, blank screen using "normal" colors. */ SETCOLORS(nm_fg_color, nm_bg_color); blanks = (char *) ecalloc(width+1, sizeof(char)); for (col = 0; col < sc_width; col++) blanks[col] = ' '; blanks[sc_width] = '\0'; for (row = 0; row < sc_height; row++) _outtext(blanks); free(blanks); #endif } #endif #if MSDOS_COMPILER==WIN32C /* * Enable virtual terminal processing, if available. */ static void win32_init_vt_term(void) { DWORD output_mode; if (vt_enabled == 0 || (vt_enabled == 1 && con_out == con_out_ours)) return; GetConsoleMode(con_out, &output_mode); vt_enabled = SetConsoleMode(con_out, output_mode | ENABLE_VIRTUAL_TERMINAL_PROCESSING); if (vt_enabled) { auto_wrap = 0; ignaw = 1; } } static void win32_deinit_vt_term(void) { if (vt_enabled == 1 && con_out == con_out_save) SetConsoleMode(con_out, init_output_mode); } /* * Termcap-like init with a private win32 console. */ static void win32_init_term(void) { CONSOLE_SCREEN_BUFFER_INFO scr; COORD size; if (con_out_save == INVALID_HANDLE_VALUE) return; GetConsoleScreenBufferInfo(con_out_save, &scr); if (con_out_ours == INVALID_HANDLE_VALUE) { /* * Create our own screen buffer, so that we * may restore the original when done. */ con_out_ours = CreateConsoleScreenBuffer( GENERIC_WRITE | GENERIC_READ, FILE_SHARE_WRITE | FILE_SHARE_READ, (LPSECURITY_ATTRIBUTES) NULL, CONSOLE_TEXTMODE_BUFFER, (LPVOID) NULL); } size.X = scr.srWindow.Right - scr.srWindow.Left + 1; size.Y = scr.srWindow.Bottom - scr.srWindow.Top + 1; SetConsoleScreenBufferSize(con_out_ours, size); SetConsoleActiveScreenBuffer(con_out_ours); con_out = con_out_ours; } /* * Restore the startup console. */ static void win32_deinit_term(void) { if (con_out_save == INVALID_HANDLE_VALUE) return; if (quitting) (void) CloseHandle(con_out_ours); SetConsoleActiveScreenBuffer(con_out_save); con_out = con_out_save; } #endif #if !MSDOS_COMPILER static void do_tputs(char *str, int affcnt, int (*f_putc)(int)) { #if LESSTEST if (ttyin_name != NULL && f_putc == putchr) putstr(str); else #endif /*LESSTEST*/ tputs(str, affcnt, f_putc); } /* * Like tputs but we handle $<...> delay strings here because * some implementations of tputs don't perform delays correctly. */ static void ltputs(char *str, int affcnt, int (*f_putc)(int)) { while (str != NULL && *str != '\0') { #if HAVE_STRSTR char *obrac = strstr(str, "$<"); if (obrac != NULL) { char str2[64]; int slen = obrac - str; if (slen < sizeof(str2)) { int delay; /* Output first part of string (before "$<"). */ memcpy(str2, str, slen); str2[slen] = '\0'; do_tputs(str2, affcnt, f_putc); str += slen + 2; /* Perform the delay. */ delay = lstrtoi(str, &str, 10); if (*str == '*') if (ckd_mul(&delay, delay, affcnt)) delay = INT_MAX; flush(); sleep_ms(delay); /* Skip past closing ">" at end of delay string. */ str = strstr(str, ">"); if (str != NULL) str++; continue; } } #endif /* Pass the rest of the string to tputs and we're done. */ do_tputs(str, affcnt, f_putc); break; } } #endif /* MSDOS_COMPILER */ /* * Configure the terminal so mouse clicks and wheel moves * produce input to less. */ public void init_mouse(void) { #if !MSDOS_COMPILER ltputs(sc_s_mousecap, sc_height, putchr); #else #if MSDOS_COMPILER==WIN32C SetConsoleMode(tty, ENABLE_PROCESSED_INPUT | ENABLE_MOUSE_INPUT | ENABLE_EXTENDED_FLAGS /* disable quick edit */); #endif #endif } /* * Configure the terminal so mouse clicks and wheel moves * are handled by the system (so text can be selected, etc). */ public void deinit_mouse(void) { #if !MSDOS_COMPILER ltputs(sc_e_mousecap, sc_height, putchr); #else #if MSDOS_COMPILER==WIN32C SetConsoleMode(tty, ENABLE_PROCESSED_INPUT | ENABLE_EXTENDED_FLAGS | (console_mode & ENABLE_QUICK_EDIT_MODE)); #endif #endif } /* * Initialize terminal */ public void init(void) { clear_bot_if_needed(); #if !MSDOS_COMPILER if (!(quit_if_one_screen && one_screen)) { if (!no_init) { ltputs(sc_init, sc_height, putchr); /* * Some terminals leave the cursor unmoved when switching * to the alt screen. To avoid having the text appear at * a seemingly random line on the alt screen, move to * lower left if we are using an alt screen. */ if (*sc_init != '\0' && *sc_deinit != '\0' && !no_alt_screen) lower_left(); term_init_done = 1; } if (!no_keypad) ltputs(sc_s_keypad, sc_height, putchr); if (mousecap) init_mouse(); } init_done = 1; if (top_scroll) { int i; /* * This is nice to terminals with no alternate screen, * but with saved scrolled-off-the-top lines. This way, * no previous line is lost, but we start with a whole * screen to ourself. */ for (i = 1; i < sc_height; i++) putchr('\n'); } else line_left(); #else #if MSDOS_COMPILER==WIN32C if (!(quit_if_one_screen && one_screen)) { if (!no_init) { win32_init_term(); term_init_done = 1; } if (mousecap) init_mouse(); } win32_init_vt_term(); #endif init_done = 1; initcolor(); flush(); #endif } /* * Deinitialize terminal */ public void deinit(void) { if (!init_done) return; #if !MSDOS_COMPILER if (!(quit_if_one_screen && one_screen)) { if (mousecap) deinit_mouse(); if (!no_keypad) ltputs(sc_e_keypad, sc_height, putchr); if (!no_init) ltputs(sc_deinit, sc_height, putchr); } #else /* Restore system colors. */ SETCOLORS(sy_fg_color, sy_bg_color); #if MSDOS_COMPILER==WIN32C win32_deinit_vt_term(); if (!(quit_if_one_screen && one_screen)) { if (mousecap) deinit_mouse(); if (!no_init) win32_deinit_term(); } #else /* Need clreol to make SETCOLORS take effect. */ clreol(); #endif #endif init_done = 0; } /* * Are we interactive (ie. writing to an initialized tty)? */ public int interactive(void) { return (is_tty && init_done); } static void assert_interactive(void) { if (interactive()) return; /* abort(); */ } /* * Home cursor (move to upper left corner of screen). */ public void home(void) { assert_interactive(); #if !MSDOS_COMPILER ltputs(sc_home, 1, putchr); #else flush(); _settextposition(1,1); #endif } #if LESSTEST public void dump_screen(void) { char dump_cmd[32]; SNPRINTF1(dump_cmd, sizeof(dump_cmd), ESCS"0;0;%dR", sc_width * sc_height); ltputs(dump_cmd, sc_height, putchr); flush(); } #endif /*LESSTEST*/ /* * Add a blank line (called with cursor at home). * Should scroll the display down. */ public void add_line(void) { assert_interactive(); #if !MSDOS_COMPILER ltputs(sc_addline, sc_height, putchr); #else flush(); #if MSDOS_COMPILER==MSOFTC _scrolltextwindow(_GSCROLLDOWN); _settextposition(1,1); #else #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC movetext(1,1, sc_width,sc_height-1, 1,2); gotoxy(1,1); clreol(); #else #if MSDOS_COMPILER==WIN32C { CHAR_INFO fillchar; SMALL_RECT rcSrc, rcClip; COORD new_org; CONSOLE_SCREEN_BUFFER_INFO csbi; GetConsoleScreenBufferInfo(con_out,&csbi); /* The clip rectangle is the entire visible screen. */ rcClip.Left = csbi.srWindow.Left; rcClip.Top = csbi.srWindow.Top; rcClip.Right = csbi.srWindow.Right; rcClip.Bottom = csbi.srWindow.Bottom; /* The source rectangle is the visible screen minus the last line. */ rcSrc = rcClip; rcSrc.Bottom--; /* Move the top left corner of the source window down one row. */ new_org.X = rcSrc.Left; new_org.Y = rcSrc.Top + 1; /* Fill the right character and attributes. */ fillchar.Char.AsciiChar = ' '; curr_attr = MAKEATTR(nm_fg_color, nm_bg_color); fillchar.Attributes = curr_attr; ScrollConsoleScreenBuffer(con_out, &rcSrc, &rcClip, new_org, &fillchar); _settextposition(1,1); } #endif #endif #endif #endif } #if 0 /* * Remove the n topmost lines and scroll everything below it in the * window upward. This is needed to stop leaking the topmost line * into the scrollback buffer when we go down-one-line (in WIN32). */ public void remove_top(int n) { #if MSDOS_COMPILER==WIN32C SMALL_RECT rcSrc, rcClip; CHAR_INFO fillchar; COORD new_org; CONSOLE_SCREEN_BUFFER_INFO csbi; /* to get buffer info */ if (n >= sc_height - 1) { clear(); home(); return; } flush(); GetConsoleScreenBufferInfo(con_out, &csbi); /* Get the extent of all-visible-rows-but-the-last. */ rcSrc.Left = csbi.srWindow.Left; rcSrc.Top = csbi.srWindow.Top + n; rcSrc.Right = csbi.srWindow.Right; rcSrc.Bottom = csbi.srWindow.Bottom; /* Get the clip rectangle. */ rcClip.Left = rcSrc.Left; rcClip.Top = csbi.srWindow.Top; rcClip.Right = rcSrc.Right; rcClip.Bottom = rcSrc.Bottom ; /* Move the source window up n rows. */ new_org.X = rcSrc.Left; new_org.Y = rcSrc.Top - n; /* Fill the right character and attributes. */ fillchar.Char.AsciiChar = ' '; curr_attr = MAKEATTR(nm_fg_color, nm_bg_color); fillchar.Attributes = curr_attr; ScrollConsoleScreenBuffer(con_out, &rcSrc, &rcClip, new_org, &fillchar); /* Position cursor on first blank line. */ goto_line(sc_height - n - 1); #endif } #endif #if MSDOS_COMPILER==WIN32C /* * Clear the screen. */ static void win32_clear(void) { /* * This will clear only the currently visible rows of the NT * console buffer, which means none of the precious scrollback * rows are touched making for faster scrolling. Note that, if * the window has fewer columns than the console buffer (i.e. * there is a horizontal scrollbar as well), the entire width * of the visible rows will be cleared. */ COORD topleft; DWORD nchars; DWORD winsz; CONSOLE_SCREEN_BUFFER_INFO csbi; /* get the number of cells in the current buffer */ GetConsoleScreenBufferInfo(con_out, &csbi); winsz = csbi.dwSize.X * (csbi.srWindow.Bottom - csbi.srWindow.Top + 1); topleft.X = 0; topleft.Y = csbi.srWindow.Top; curr_attr = MAKEATTR(nm_fg_color, nm_bg_color); FillConsoleOutputCharacter(con_out, ' ', winsz, topleft, &nchars); FillConsoleOutputAttribute(con_out, curr_attr, winsz, topleft, &nchars); } /* * Remove the n topmost lines and scroll everything below it in the * window upward. */ public void win32_scroll_up(int n) { SMALL_RECT rcSrc, rcClip; CHAR_INFO fillchar; COORD topleft; COORD new_org; DWORD nchars; DWORD size; CONSOLE_SCREEN_BUFFER_INFO csbi; if (n <= 0) return; if (n >= sc_height - 1) { win32_clear(); _settextposition(1,1); return; } /* Get the extent of what will remain visible after scrolling. */ GetConsoleScreenBufferInfo(con_out, &csbi); rcSrc.Left = csbi.srWindow.Left; rcSrc.Top = csbi.srWindow.Top + n; rcSrc.Right = csbi.srWindow.Right; rcSrc.Bottom = csbi.srWindow.Bottom; /* Get the clip rectangle. */ rcClip.Left = rcSrc.Left; rcClip.Top = csbi.srWindow.Top; rcClip.Right = rcSrc.Right; rcClip.Bottom = rcSrc.Bottom ; /* Move the source text to the top of the screen. */ new_org.X = rcSrc.Left; new_org.Y = rcClip.Top; /* Fill the right character and attributes. */ fillchar.Char.AsciiChar = ' '; fillchar.Attributes = MAKEATTR(nm_fg_color, nm_bg_color); /* Scroll the window. */ SetConsoleTextAttribute(con_out, fillchar.Attributes); ScrollConsoleScreenBuffer(con_out, &rcSrc, &rcClip, new_org, &fillchar); /* Clear remaining lines at bottom. */ topleft.X = csbi.dwCursorPosition.X; topleft.Y = rcSrc.Bottom - n; size = (n * csbi.dwSize.X) + (rcSrc.Right - topleft.X); FillConsoleOutputCharacter(con_out, ' ', size, topleft, &nchars); FillConsoleOutputAttribute(con_out, fillchar.Attributes, size, topleft, &nchars); SetConsoleTextAttribute(con_out, curr_attr); /* Move cursor n lines up from where it was. */ csbi.dwCursorPosition.Y -= n; SetConsoleCursorPosition(con_out, csbi.dwCursorPosition); } #endif /* * Move cursor to lower left corner of screen. */ public void lower_left(void) { assert_interactive(); #if !MSDOS_COMPILER ltputs(sc_lower_left, 1, putchr); #else flush(); _settextposition(sc_height, 1); #endif } /* * Move cursor to left position of current line. */ public void line_left(void) { assert_interactive(); #if !MSDOS_COMPILER ltputs(sc_return, 1, putchr); #else { int row; flush(); #if MSDOS_COMPILER==WIN32C { CONSOLE_SCREEN_BUFFER_INFO scr; GetConsoleScreenBufferInfo(con_out, &scr); row = scr.dwCursorPosition.Y - scr.srWindow.Top + 1; } #else #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC row = wherey(); #else { struct rccoord tpos = _gettextposition(); row = tpos.row; } #endif #endif _settextposition(row, 1); } #endif } /* * Check if the console size has changed and reset internals * (in lieu of SIGWINCH for WIN32). */ public void check_winch(void) { #if MSDOS_COMPILER==WIN32C CONSOLE_SCREEN_BUFFER_INFO scr; COORD size; if (con_out == INVALID_HANDLE_VALUE) return; flush(); GetConsoleScreenBufferInfo(con_out, &scr); size.Y = scr.srWindow.Bottom - scr.srWindow.Top + 1; size.X = scr.srWindow.Right - scr.srWindow.Left + 1; if (size.Y != sc_height || size.X != sc_width) { sc_height = size.Y; sc_width = size.X; if (!no_init && con_out_ours == con_out) SetConsoleScreenBufferSize(con_out, size); pos_init(); wscroll = (sc_height + 1) / 2; screen_trashed = 1; } #endif } /* * Goto a specific line on the screen. */ public void goto_line(int sindex) { assert_interactive(); #if !MSDOS_COMPILER ltputs(tgoto(sc_move, 0, sindex), 1, putchr); #else flush(); _settextposition(sindex+1, 1); #endif } #if MSDOS_COMPILER==MSOFTC || MSDOS_COMPILER==BORLANDC /* * Create an alternate screen which is all white. * This screen is used to create a "flash" effect, by displaying it * briefly and then switching back to the normal screen. * {{ Yuck! There must be a better way to get a visual bell. }} */ static void create_flash(void) { #if MSDOS_COMPILER==MSOFTC struct videoconfig w; char *blanks; int row, col; _getvideoconfig(&w); videopages = w.numvideopages; if (videopages < 2) { at_enter(AT_STANDOUT); at_exit(); } else { _setactivepage(1); at_enter(AT_STANDOUT); blanks = (char *) ecalloc(w.numtextcols, sizeof(char)); for (col = 0; col < w.numtextcols; col++) blanks[col] = ' '; for (row = w.numtextrows; row > 0; row--) _outmem(blanks, w.numtextcols); _setactivepage(0); _setvisualpage(0); free(blanks); at_exit(); } #else #if MSDOS_COMPILER==BORLANDC int n; whitescreen = (unsigned short *) malloc(sc_width * sc_height * sizeof(short)); if (whitescreen == NULL) return; for (n = 0; n < sc_width * sc_height; n++) whitescreen[n] = 0x7020; #endif #endif flash_created = 1; } #endif /* MSDOS_COMPILER */ /* * Output the "visual bell", if there is one. */ public void vbell(void) { if (no_vbell) return; #if !MSDOS_COMPILER if (*sc_visual_bell == '\0') return; ltputs(sc_visual_bell, sc_height, putchr); #else #if MSDOS_COMPILER==DJGPPC ScreenVisualBell(); #else #if MSDOS_COMPILER==MSOFTC /* * Create a flash screen on the second video page. * Switch to that page, then switch back. */ if (!flash_created) create_flash(); if (videopages < 2) return; _setvisualpage(1); delay(100); _setvisualpage(0); #else #if MSDOS_COMPILER==BORLANDC unsigned short *currscreen; /* * Get a copy of the current screen. * Display the flash screen. * Then restore the old screen. */ if (!flash_created) create_flash(); if (whitescreen == NULL) return; currscreen = (unsigned short *) malloc(sc_width * sc_height * sizeof(short)); if (currscreen == NULL) return; gettext(1, 1, sc_width, sc_height, currscreen); puttext(1, 1, sc_width, sc_height, whitescreen); delay(100); puttext(1, 1, sc_width, sc_height, currscreen); free(currscreen); #else #if MSDOS_COMPILER==WIN32C /* paint screen with an inverse color */ clear(); /* leave it displayed for 100 msec. */ Sleep(100); /* restore with a redraw */ repaint(); #endif #endif #endif #endif #endif } /* * Make a noise. */ static void beep(void) { #if !MSDOS_COMPILER putchr(CONTROL('G')); #else #if MSDOS_COMPILER==WIN32C MessageBeep(0); #else write(1, "\7", 1); #endif #endif } /* * Ring the terminal bell. */ public void bell(void) { if (quiet == VERY_QUIET) vbell(); else beep(); } /* * Clear the screen. */ public void clear(void) { assert_interactive(); #if !MSDOS_COMPILER ltputs(sc_clear, sc_height, putchr); #else flush(); #if MSDOS_COMPILER==WIN32C win32_clear(); #else _clearscreen(_GCLEARSCREEN); #endif #endif } /* * Clear from the cursor to the end of the cursor's line. * {{ This must not move the cursor. }} */ public void clear_eol(void) { /* assert_interactive();*/ #if !MSDOS_COMPILER ltputs(sc_eol_clear, 1, putchr); #else #if MSDOS_COMPILER==MSOFTC short top, left; short bot, right; struct rccoord tpos; flush(); /* * Save current state. */ tpos = _gettextposition(); _gettextwindow(&top, &left, &bot, &right); /* * Set a temporary window to the current line, * from the cursor's position to the right edge of the screen. * Then clear that window. */ _settextwindow(tpos.row, tpos.col, tpos.row, sc_width); _clearscreen(_GWINDOW); /* * Restore state. */ _settextwindow(top, left, bot, right); _settextposition(tpos.row, tpos.col); #else #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC flush(); clreol(); #else #if MSDOS_COMPILER==WIN32C DWORD nchars; COORD cpos; CONSOLE_SCREEN_BUFFER_INFO scr; flush(); memset(&scr, 0, sizeof(scr)); GetConsoleScreenBufferInfo(con_out, &scr); cpos.X = scr.dwCursorPosition.X; cpos.Y = scr.dwCursorPosition.Y; curr_attr = MAKEATTR(nm_fg_color, nm_bg_color); FillConsoleOutputAttribute(con_out, curr_attr, scr.dwSize.X - cpos.X, cpos, &nchars); FillConsoleOutputCharacter(con_out, ' ', scr.dwSize.X - cpos.X, cpos, &nchars); #endif #endif #endif #endif } /* * Clear the current line. * Clear the screen if there's off-screen memory below the display. */ static void clear_eol_bot(void) { assert_interactive(); #if MSDOS_COMPILER clear_eol(); #else if (below_mem) ltputs(sc_eos_clear, 1, putchr); else ltputs(sc_eol_clear, 1, putchr); #endif } /* * Clear the bottom line of the display. * Leave the cursor at the beginning of the bottom line. */ public void clear_bot(void) { /* * If we're in a non-normal attribute mode, temporarily exit * the mode while we do the clear. Some terminals fill the * cleared area with the current attribute. */ if (oldbot) lower_left(); else line_left(); if (attrmode == AT_NORMAL) clear_eol_bot(); else { int saved_attrmode = attrmode; at_exit(); clear_eol_bot(); at_enter(saved_attrmode); } } /* * Color string may be "x[y]" where x and y are 4-bit color chars, * or "N[.M]" where N and M are decimal integers> * Any of x,y,N,M may also be "-" to mean "unchanged". */ /* * Parse a 4-bit color char. */ static int parse_color4(char ch) { switch (ch) { case 'k': return 0; case 'r': return CV_RED; case 'g': return CV_GREEN; case 'y': return CV_RED|CV_GREEN; case 'b': return CV_BLUE; case 'm': return CV_RED|CV_BLUE; case 'c': return CV_GREEN|CV_BLUE; case 'w': return CV_RED|CV_GREEN|CV_BLUE; case 'K': return 0|CV_BRIGHT; case 'R': return CV_RED|CV_BRIGHT; case 'G': return CV_GREEN|CV_BRIGHT; case 'Y': return CV_RED|CV_GREEN|CV_BRIGHT; case 'B': return CV_BLUE|CV_BRIGHT; case 'M': return CV_RED|CV_BLUE|CV_BRIGHT; case 'C': return CV_GREEN|CV_BLUE|CV_BRIGHT; case 'W': return CV_RED|CV_GREEN|CV_BLUE|CV_BRIGHT; case '-': return CV_NOCHANGE; default: return CV_ERROR; } } /* * Parse a color as a decimal integer. */ static int parse_color6(char **ps) { if (**ps == '-') { (*ps)++; return CV_NOCHANGE; } else { char *ops = *ps; int color = lstrtoi(ops, ps, 10); if (color < 0 || *ps == ops) return CV_ERROR; return color; } } /* * Parse a color pair and return the foreground/background values. * Return type of color specifier: * CV_4BIT: fg/bg values are OR of CV_{RGB} bits. * CV_6BIT: fg/bg values are integers entered by user. */ public COLOR_TYPE parse_color(char *str, int *p_fg, int *p_bg) { int fg; int bg; COLOR_TYPE type = CT_NULL; if (str == NULL || *str == '\0') return CT_NULL; if (*str == '+') str++; /* ignore leading + */ fg = parse_color4(str[0]); bg = parse_color4((strlen(str) < 2) ? '-' : str[1]); if (fg != CV_ERROR && bg != CV_ERROR) type = CT_4BIT; else { fg = parse_color6(&str); bg = (fg != CV_ERROR && *str++ == '.') ? parse_color6(&str) : CV_NOCHANGE; if (fg != CV_ERROR && bg != CV_ERROR) type = CT_6BIT; } if (p_fg != NULL) *p_fg = fg; if (p_bg != NULL) *p_bg = bg; return type; } #if !MSDOS_COMPILER static int sgr_color(int color) { switch (color) { case 0: return 30; case CV_RED: return 31; case CV_GREEN: return 32; case CV_RED|CV_GREEN: return 33; case CV_BLUE: return 34; case CV_RED|CV_BLUE: return 35; case CV_GREEN|CV_BLUE: return 36; case CV_RED|CV_GREEN|CV_BLUE: return 37; case CV_BRIGHT: return 90; case CV_RED|CV_BRIGHT: return 91; case CV_GREEN|CV_BRIGHT: return 92; case CV_RED|CV_GREEN|CV_BRIGHT: return 93; case CV_BLUE|CV_BRIGHT: return 94; case CV_RED|CV_BLUE|CV_BRIGHT: return 95; case CV_GREEN|CV_BLUE|CV_BRIGHT: return 96; case CV_RED|CV_GREEN|CV_BLUE|CV_BRIGHT: return 97; default: return color; } } static void tput_fmt(char *fmt, int color, int (*f_putc)(int)) { char buf[INT_STRLEN_BOUND(int)+16]; if (color == attrcolor) return; SNPRINTF1(buf, sizeof(buf), fmt, color); ltputs(buf, 1, f_putc); attrcolor = color; } static void tput_color(char *str, int (*f_putc)(int)) { int fg; int bg; if (str != NULL && strcmp(str, "*") == 0) { /* Special case: reset to normal */ tput_fmt(ESCS"[m", -1, f_putc); return; } switch (parse_color(str, &fg, &bg)) { case CT_4BIT: if (fg >= 0) tput_fmt(ESCS"[%dm", sgr_color(fg), f_putc); if (bg >= 0) tput_fmt(ESCS"[%dm", sgr_color(bg)+10, f_putc); break; case CT_6BIT: if (fg >= 0) tput_fmt(ESCS"[38;5;%dm", fg, f_putc); if (bg >= 0) tput_fmt(ESCS"[48;5;%dm", bg, f_putc); break; default: break; } } static void tput_inmode(char *mode_str, int attr, int attr_bit, int (*f_putc)(int)) { char *color_str; if ((attr & attr_bit) == 0) return; color_str = get_color_map(attr_bit); if (color_str == NULL || *color_str == '\0' || *color_str == '+') { ltputs(mode_str, 1, f_putc); if (color_str == NULL || *color_str++ != '+') return; } /* Color overrides mode string */ tput_color(color_str, f_putc); } static void tput_outmode(char *mode_str, int attr_bit, int (*f_putc)(int)) { if ((attrmode & attr_bit) == 0) return; ltputs(mode_str, 1, f_putc); } #else /* MSDOS_COMPILER */ #if MSDOS_COMPILER==WIN32C static int WIN32put_fmt(char *fmt, int color) { char buf[INT_STRLEN_BOUND(int)+16]; int len = SNPRINTF1(buf, sizeof(buf), fmt, color); WIN32textout(buf, len); return TRUE; } #endif static int win_set_color(int attr) { int fg; int bg; int out = FALSE; char *str = get_color_map(attr); if (str == NULL || str[0] == '\0') return FALSE; switch (parse_color(str, &fg, &bg)) { case CT_4BIT: if (fg >= 0 && bg >= 0) { SETCOLORS(fg, bg); out = TRUE; } else if (fg >= 0) { SET_FG_COLOR(fg); out = TRUE; } else if (bg >= 0) { SET_BG_COLOR(bg); out = TRUE; } break; #if MSDOS_COMPILER==WIN32C case CT_6BIT: if (vt_enabled) { if (fg > 0) out = WIN32put_fmt(ESCS"[38;5;%dm", fg); if (bg > 0) out = WIN32put_fmt(ESCS"[48;5;%dm", bg); } break; #endif default: break; } return out; } #endif /* MSDOS_COMPILER */ public void at_enter(int attr) { attr = apply_at_specials(attr); #if !MSDOS_COMPILER /* The one with the most priority is last. */ tput_inmode(sc_u_in, attr, AT_UNDERLINE, putchr); tput_inmode(sc_b_in, attr, AT_BOLD, putchr); tput_inmode(sc_bl_in, attr, AT_BLINK, putchr); /* Don't use standout and color at the same time. */ if (use_color && (attr & AT_COLOR)) tput_color(get_color_map(attr), putchr); else tput_inmode(sc_s_in, attr, AT_STANDOUT, putchr); #else flush(); /* The one with the most priority is first. */ if ((attr & AT_COLOR) && use_color) { win_set_color(attr); } else if (attr & AT_STANDOUT) { SETCOLORS(so_fg_color, so_bg_color); } else if (attr & AT_BLINK) { SETCOLORS(bl_fg_color, bl_bg_color); } else if (attr & AT_BOLD) { SETCOLORS(bo_fg_color, bo_bg_color); } else if (attr & AT_UNDERLINE) { SETCOLORS(ul_fg_color, ul_bg_color); } #endif attrmode = attr; } public void at_exit(void) { #if !MSDOS_COMPILER /* Undo things in the reverse order we did them. */ tput_color("*", putchr); tput_outmode(sc_s_out, AT_STANDOUT, putchr); tput_outmode(sc_bl_out, AT_BLINK, putchr); tput_outmode(sc_b_out, AT_BOLD, putchr); tput_outmode(sc_u_out, AT_UNDERLINE, putchr); #else flush(); SETCOLORS(nm_fg_color, nm_bg_color); #endif attrmode = AT_NORMAL; } public void at_switch(int attr) { int new_attrmode = apply_at_specials(attr); int ignore_modes = AT_ANSI; if ((new_attrmode & ~ignore_modes) != (attrmode & ~ignore_modes)) { at_exit(); at_enter(attr); } } public int is_at_equiv(int attr1, int attr2) { attr1 = apply_at_specials(attr1); attr2 = apply_at_specials(attr2); return (attr1 == attr2); } public int apply_at_specials(int attr) { if (attr & AT_BINARY) attr |= binattr; if (attr & AT_HILITE) attr |= AT_STANDOUT; attr &= ~(AT_BINARY|AT_HILITE); return attr; } /* * Output a plain backspace, without erasing the previous char. */ public void putbs(void) { if (termcap_debug) putstr(""); else { #if !MSDOS_COMPILER ltputs(sc_backspace, 1, putchr); #else int row, col; flush(); { #if MSDOS_COMPILER==MSOFTC struct rccoord tpos; tpos = _gettextposition(); row = tpos.row; col = tpos.col; #else #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC row = wherey(); col = wherex(); #else #if MSDOS_COMPILER==WIN32C CONSOLE_SCREEN_BUFFER_INFO scr; GetConsoleScreenBufferInfo(con_out, &scr); row = scr.dwCursorPosition.Y - scr.srWindow.Top + 1; col = scr.dwCursorPosition.X - scr.srWindow.Left + 1; #endif #endif #endif } if (col <= 1) return; _settextposition(row, col-1); #endif /* MSDOS_COMPILER */ } } #if MSDOS_COMPILER==WIN32C /* * Determine whether an input character is waiting to be read. */ public int win32_kbhit(void) { INPUT_RECORD ip; DWORD read; if (keyCount > 0) return (TRUE); currentKey.ascii = 0; currentKey.scan = 0; if (x11mouseCount > 0) { currentKey.ascii = x11mousebuf[x11mousePos++]; --x11mouseCount; keyCount = 1; return (TRUE); } /* * Wait for a real key-down event, but * ignore SHIFT and CONTROL key events. */ do { PeekConsoleInputW(tty, &ip, 1, &read); if (read == 0) return (FALSE); ReadConsoleInputW(tty, &ip, 1, &read); /* generate an X11 mouse sequence from the mouse event */ if (mousecap && ip.EventType == MOUSE_EVENT && ip.Event.MouseEvent.dwEventFlags != MOUSE_MOVED) { x11mousebuf[3] = X11MOUSE_OFFSET + ip.Event.MouseEvent.dwMousePosition.X + 1; x11mousebuf[4] = X11MOUSE_OFFSET + ip.Event.MouseEvent.dwMousePosition.Y + 1; switch (ip.Event.MouseEvent.dwEventFlags) { case 0: /* press or release */ if (ip.Event.MouseEvent.dwButtonState == 0) x11mousebuf[2] = X11MOUSE_OFFSET + X11MOUSE_BUTTON_REL; else if (ip.Event.MouseEvent.dwButtonState & (FROM_LEFT_3RD_BUTTON_PRESSED | FROM_LEFT_4TH_BUTTON_PRESSED)) continue; else x11mousebuf[2] = X11MOUSE_OFFSET + X11MOUSE_BUTTON1 + ((int)ip.Event.MouseEvent.dwButtonState << 1); break; case MOUSE_WHEELED: x11mousebuf[2] = X11MOUSE_OFFSET + (((int)ip.Event.MouseEvent.dwButtonState < 0) ? X11MOUSE_WHEEL_DOWN : X11MOUSE_WHEEL_UP); break; default: continue; } x11mousePos = 0; x11mouseCount = 5; currentKey.ascii = ESC; keyCount = 1; return (TRUE); } } while (ip.EventType != KEY_EVENT || ip.Event.KeyEvent.bKeyDown != TRUE || (ip.Event.KeyEvent.wVirtualScanCode == 0 && ip.Event.KeyEvent.uChar.UnicodeChar == 0) || ((ip.Event.KeyEvent.dwControlKeyState & (RIGHT_ALT_PRESSED|LEFT_CTRL_PRESSED)) == (RIGHT_ALT_PRESSED|LEFT_CTRL_PRESSED) && ip.Event.KeyEvent.uChar.UnicodeChar == 0) || ip.Event.KeyEvent.wVirtualKeyCode == VK_KANJI || ip.Event.KeyEvent.wVirtualKeyCode == VK_SHIFT || ip.Event.KeyEvent.wVirtualKeyCode == VK_CONTROL || ip.Event.KeyEvent.wVirtualKeyCode == VK_MENU); currentKey.unicode = ip.Event.KeyEvent.uChar.UnicodeChar; currentKey.ascii = ip.Event.KeyEvent.uChar.AsciiChar; currentKey.scan = ip.Event.KeyEvent.wVirtualScanCode; keyCount = ip.Event.KeyEvent.wRepeatCount; if (ip.Event.KeyEvent.dwControlKeyState & (LEFT_ALT_PRESSED | RIGHT_ALT_PRESSED)) { switch (currentKey.scan) { case PCK_ALT_E: /* letter 'E' */ currentKey.ascii = 0; break; } } else if (ip.Event.KeyEvent.dwControlKeyState & (LEFT_CTRL_PRESSED | RIGHT_CTRL_PRESSED)) { switch (currentKey.scan) { case PCK_RIGHT: /* right arrow */ currentKey.scan = PCK_CTL_RIGHT; break; case PCK_LEFT: /* left arrow */ currentKey.scan = PCK_CTL_LEFT; break; case PCK_DELETE: /* delete */ currentKey.scan = PCK_CTL_DELETE; break; } } else if (ip.Event.KeyEvent.dwControlKeyState & SHIFT_PRESSED) { switch (currentKey.scan) { case PCK_SHIFT_TAB: /* tab */ currentKey.ascii = 0; break; } } return (TRUE); } /* * Read a character from the keyboard. */ public char WIN32getch(void) { char ascii; static unsigned char utf8[UTF8_MAX_LENGTH]; static int utf8_size = 0; static int utf8_next_byte = 0; // Return the rest of multibyte character from the prior call if (utf8_next_byte < utf8_size) { ascii = utf8[utf8_next_byte++]; return ascii; } utf8_size = 0; if (pending_scancode) { pending_scancode = 0; return ((char)(currentKey.scan & 0x00FF)); } do { while (win32_kbhit() == FALSE) { Sleep(20); if (ABORT_SIGS()) return ('\003'); continue; } keyCount --; // If multibyte character, return its first byte if (currentKey.ascii != currentKey.unicode) { utf8_size = WideCharToMultiByte(CP_UTF8, 0, ¤tKey.unicode, 1, &utf8, sizeof(utf8), NULL, NULL); if (utf8_size == 0 ) return '\0'; ascii = utf8[0]; utf8_next_byte = 1; } else ascii = currentKey.ascii; /* * On PC's, the extended keys return a 2 byte sequence beginning * with '00', so if the ascii code is 00, the next byte will be * the lsb of the scan code. */ pending_scancode = (ascii == 0x00); } while (pending_scancode && (currentKey.scan == PCK_CAPS_LOCK || currentKey.scan == PCK_NUM_LOCK)); return ascii; } #endif #if MSDOS_COMPILER /* */ public void WIN32setcolors(int fg, int bg) { SETCOLORS(fg, bg); } /* */ public void WIN32textout(char *text, int len) { #if MSDOS_COMPILER==WIN32C DWORD written; if (utf_mode == 2) { /* * We've got UTF-8 text in a non-UTF-8 console. Convert it to * wide and use WriteConsoleW. */ WCHAR wtext[1024]; len = MultiByteToWideChar(CP_UTF8, 0, text, len, wtext, sizeof(wtext)/sizeof(*wtext)); WriteConsoleW(con_out, wtext, len, &written, NULL); } else WriteConsole(con_out, text, len, &written, NULL); #else char c = text[len]; text[len] = '\0'; cputs(text); text[len] = c; #endif } #endif R =/*_____________________________________________________________________________________________ * Copyright (C) 1984-2023 Mark Nudelman______________________________________________________ *_____________________________________________________________________________________________ * You may distribute under the terms of either the GNU General Public_________________________ * License or the Less License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routines which deal with the characteristics of the terminal._______________________________ * Uses termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "less.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________@04subsearch@00#______________________________________________________________________________________ +6a = * Copyright (C) 1984-2023 Mark Nudelman______________________________________________________ *_____________________________________________________________________________________________ * You may distribute under the terms of either the GNU General Public_________________________ * License or the Less License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routines which deal with the characteristics of the terminal._______________________________ * Uses termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "less.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________:#______________________________________________________________________________________________ +6a = *_____________________________________________________________________________________________ * You may distribute under the terms of either the GNU General Public_________________________ * License or the Less License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routines which deal with the characteristics of the terminal._______________________________ * Uses termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "less.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________:#______________________________________________________________________________________________ +2f = *_____________________________________________________________________________________________ * You may distribute under the terms of either the GNU General Public_________________________ * License or the Less License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routines which deal with the characteristics of the terminal._______________________________ * Uses termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "less.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________/#______________________________________________________________________________________________ +65 = *_____________________________________________________________________________________________ * You may distribute under the terms of either the GNU General Public_________________________ * License or the Less License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routines which deal with the characteristics of the terminal._______________________________ * Uses termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "less.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________/e#_____________________________________________________________________________________________ +73 = *_____________________________________________________________________________________________ * You may distribute under the terms of either the GNU General Public_________________________ * License or the Less License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routines which deal with the characteristics of the terminal._______________________________ * Uses termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "less.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________/es#____________________________________________________________________________________________ +a = * License or the L@04es@00s License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________:#______________________________________________________________________________________________ +2f = * License or the L@04es@00s License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________/#______________________________________________________________________________________________ +e = * License or the L@04es@00s License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________Non-match /#____________________________________________________________________________________ +17 = * License or the L@04es@00s License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________Non-match Wrap /#_______________________________________________________________________________ +5 = * License or the L@04es@00s License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________Non-match EOF-ignore /#_________________________________________________________________________ +5 = * License or the L@04es@00s License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________Non-match /#____________________________________________________________________________________ +17 = * License or the L@04es@00s License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________Non-match Wrap /#_______________________________________________________________________________ +5 = * License or the L@04es@00s License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________Non-match EOF-ignore /#_________________________________________________________________________ +17 = * License or the L@04es@00s License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________Non-match Wrap /#_______________________________________________________________________________ +5 = * License or the L@04es@00s License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________Non-match EOF-ignore /#_________________________________________________________________________ +17 = * License or the L@04es@00s License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________Non-match Wrap /#_______________________________________________________________________________ +17 = * License or the L@04es@00s License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________Non-match /#____________________________________________________________________________________ +65 = * License or the L@04es@00s License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________Non-match /e#___________________________________________________________________________________ +73 = * License or the L@04es@00s License, as specified in the README file._______________________________ *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________Non-match /es#__________________________________________________________________________________ +a = *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________\#ifndef FOREGROUND_BLUE________________________________________________________________________:#______________________________________________________________________________________________ +2f = *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________\#ifndef FOREGROUND_BLUE________________________________________________________________________/#______________________________________________________________________________________________ +21 = *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________\#ifndef FOREGROUND_BLUE________________________________________________________________________Non-match /#____________________________________________________________________________________ +64 = *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________\#ifndef FOREGROUND_BLUE________________________________________________________________________Non-match /d#___________________________________________________________________________________ +65 = *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routin@04es@00 which deal with the characteristics of the terminal._______________________________ * Us@04es@00 termcap to be as terminal-independent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#include "l@04es@00s.h"______________________________________________________________________________\#include "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#include "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#include _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#include _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#include ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#include ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#include _____________________________________________________________________________________________________________________________________________________________________________\#ifndef FOREGROUND_BLUE________________________________________________________________________Non-match /de#__________________________________________________________________________________ +a = *_____________________________________________________________________________________________ * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routines which @04de@00al with the characteristics of the terminal._______________________________ * Uses termcap to be as terminal-in@04de@00pendent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#inclu@04de@00 "less.h"______________________________________________________________________________\#inclu@04de@00 "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#inclu@04de@00 "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________:#______________________________________________________________________________________________ +6e = * For more information, see the README file.__________________________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routines which @04de@00al with the characteristics of the terminal._______________________________ * Uses termcap to be as terminal-in@04de@00pendent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#inclu@04de@00 "less.h"______________________________________________________________________________\#inclu@04de@00 "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#inclu@04de@00 "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________:#______________________________________________________________________________________________ +6e = */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routines which @04de@00al with the characteristics of the terminal._______________________________ * Uses termcap to be as terminal-in@04de@00pendent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#inclu@04de@00 "less.h"______________________________________________________________________________\#inclu@04de@00 "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#inclu@04de@00 "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________:#______________________________________________________________________________________________ +6e =______________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routines which @04de@00al with the characteristics of the terminal._______________________________ * Uses termcap to be as terminal-in@04de@00pendent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#inclu@04de@00 "less.h"______________________________________________________________________________\#inclu@04de@00 "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#inclu@04de@00 "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________:#______________________________________________________________________________________________ +6e =_______________________________________________________________________________________________/*_____________________________________________________________________________________________ * Routines which @04de@00al with the characteristics of the terminal._______________________________ * Uses termcap to be as terminal-in@04de@00pendent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#inclu@04de@00 "less.h"______________________________________________________________________________\#inclu@04de@00 "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#inclu@04de@00 "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________:#______________________________________________________________________________________________ +6e =/*_____________________________________________________________________________________________ * Routines which @04de@00al with the characteristics of the terminal._______________________________ * Uses termcap to be as terminal-in@04de@00pendent as possible._____________________________________ */___________________________________________________________________________________________________________________________________________________________________________________________\#inclu@04de@00 "less.h"______________________________________________________________________________\#inclu@04de@00 "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#inclu@04de@00 "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________:#______________________________________________________________________________________________ +6e = */___________________________________________________________________________________________________________________________________________________________________________________________\#inclu@04de@00 "less.h"______________________________________________________________________________\#inclu@04de@00 "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#inclu@04de@00 "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________:#______________________________________________________________________________________________ +6e =_______________________________________________________________________________________________\#inclu@04de@00 "less.h"______________________________________________________________________________\#inclu@04de@00 "cmd.h"______________________________________________________________________________________________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#inclu@04de@00 "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________:#______________________________________________________________________________________________ +6e =_______________________________________________________________________________________________\#if MSDOS_COMPILER_____________________________________________________________________________\#inclu@04de@00 "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________:#______________________________________________________________________________________________ +6e =\#if MSDOS_COMPILER_____________________________________________________________________________\#inclu@04de@00 "pckeys.h"____________________________________________________________________________\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else__________________________________________________________________________________________:#______________________________________________________________________________________________ +6e =\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________:#______________________________________________________________________________________________ +2f =\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________/#______________________________________________________________________________________________ +64 =\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________/d#_____________________________________________________________________________________________ +1b =\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________/d#_____________________________________________________________________________________________ +4f =\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________/d#_____________________________________________________________________________________________ +41 =\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________/de#____________________________________________________________________________________________ +8 =\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________/d#_____________________________________________________________________________________________ +28 =\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________/d(#____________________________________________________________________________________________ +65 =\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________/d(e#___________________________________________________________________________________________ +29 =\#if MSDOS_COMPILER==MSOFTC_____________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________/d(e)#__________________________________________________________________________________________ +a =\#inclu@04de@00 _____________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC_________________________________________\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________\#inclu@04de@00 _________________________________________________________________________:#______________________________________________________________________________________________ +6e =\#inclu@04de@00 _____________________________________________________________________________\#if MSDOS_COMPILER==DJGPPC_____________________________________________________________________\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________\#inclu@04de@00 _________________________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS_______________________________________________________:#______________________________________________________________________________________________ +6e =\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________\#inclu@04de@00 _________________________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS_______________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#else__________________________________________________________________________________________:#______________________________________________________________________________________________ +2f =\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________\#inclu@04de@00 _________________________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS_______________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#else__________________________________________________________________________________________/#______________________________________________________________________________________________ +21 =\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________\#inclu@04de@00 _________________________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS_______________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#else__________________________________________________________________________________________Non-match /#____________________________________________________________________________________ +64 =\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________\#inclu@04de@00 _________________________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS_______________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#else__________________________________________________________________________________________Non-match /d#___________________________________________________________________________________ +28 =\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________\#inclu@04de@00 _________________________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS_______________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#else__________________________________________________________________________________________Non-match /d(#__________________________________________________________________________________ +65 =\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________\#inclu@04de@00 _________________________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS_______________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#else__________________________________________________________________________________________Non-match /d(e#_________________________________________________________________________________ +29 =\#inclu@04de@00 ________________________________________________________________________________extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________\#inclu@04de@00 _________________________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS_______________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#else__________________________________________________________________________________________Non-match /d(e)#________________________________________________________________________________ +a =extern int fd0;________________________________________________________________________________\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________\#inclu@04de@00 _________________________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS_______________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#else__________________________________________________________________________________________\#if HAVE_TERMIO_H______________________________________________________________________________:#______________________________________________________________________________________________ +6e =\#endif_________________________________________________________________________________________\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________\#inclu@04de@00 _________________________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS_______________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#else__________________________________________________________________________________________\#if HAVE_TERMIO_H______________________________________________________________________________\#inclu@04de@00 ____________________________________________________________________________:#______________________________________________________________________________________________ +6e =\#else__________________________________________________________________________________________\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________\#inclu@04de@00 _________________________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS_______________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#else__________________________________________________________________________________________\#if HAVE_TERMIO_H______________________________________________________________________________\#inclu@04de@00 ____________________________________________________________________________\#else__________________________________________________________________________________________:#______________________________________________________________________________________________ +6e =\#if MSDOS_COMPILER==WIN32C_____________________________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________\#inclu@04de@00 _________________________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS_______________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#else__________________________________________________________________________________________\#if HAVE_TERMIO_H______________________________________________________________________________\#inclu@04de@00 ____________________________________________________________________________\#else__________________________________________________________________________________________\#if HAVE_SGSTAT_H______________________________________________________________________________:#______________________________________________________________________________________________ +6e =\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#endif_________________________________________________________________________________________\#inclu@04de@00 _____________________________________________________________________________________________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_BLUE________________________________________________________________________\#@04de@00fine FOREGROUND_BLUE 0x0001 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_GREEN_______________________________________________________________________\#@04de@00fine FOREGROUND_GREEN 0x0002 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_RED_________________________________________________________________________\#@04de@00fine FOREGROUND_RED 0x0004 _______________________________________________________\#endif_________________________________________________________________________________________\#ifn@04de@00f FOREGROUND_INTENSITY___________________________________________________________________\#@04de@00fine FOREGROUND_INTENSITY 0x0008____________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#else_________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_SYS_IOCTL_H___________________________________________________________________________\#inclu@04de@00 _________________________________________________________________________\#endif________________________________________________________________________________________________________________________________________________________________________________________\#if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS_______________________________________________________\#inclu@04de@00 ___________________________________________________________________________\#else__________________________________________________________________________________________\#if HAVE_TERMIO_H______________________________________________________________________________\#inclu@04de@00 ____________________________________________________________________________\#else__________________________________________________________________________________________\#if HAVE_SGSTAT_H______________________________________________________________________________\#inclu@04de@00 ____________________________________________________________________________\#else__________________________________________________________________________________________:#______________________________________________________________________________________________ +71 Q less-668/lesstest/lt/table-50x200.lt0000644060175306017530001215662114700607710016162 0ustar marknmarkn!lesstest! !version 1 !created 2023-11-30 20:42:52 E "LESS_TERMCAP_am" "1" E "LESS_TERMCAP_cd" "S" E "LESS_TERMCAP_ce" "L" E "LESS_TERMCAP_cl" "A" E "LESS_TERMCAP_cr" "<" E "LESS_TERMCAP_cm" "%p2%d;%p1%dj" E "LESS_TERMCAP_ho" "h" E "LESS_TERMCAP_ll" "l" E "LESS_TERMCAP_mb" "b" E "LESS_TERMCAP_md" "" E "LESS_TERMCAP_me" "" E "LESS_TERMCAP_se" "" E "LESS_TERMCAP_so" "" E "LESS_TERMCAP_sr" "r" E "LESS_TERMCAP_ue" "" E "LESS_TERMCAP_us" "" E "LESS_TERMCAP_vb" "g" E "LESS_TERMCAP_kr" "OC" E "LESS_TERMCAP_kl" "OD" E "LESS_TERMCAP_ku" "OA" E "LESS_TERMCAP_kd" "OB" E "LESS_TERMCAP_kh" "OH" E "LESS_TERMCAP_@7" "OF" E "COLUMNS" "116" E "LINES" "41" E "LESSCHARSET" "utf8" E "LANG" "C" T "table-50x200" A "table-50x200" F "table-50x200" 60200 00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 00100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 00121 00122 00123 00124 00125 00126 00127 00128 00129 00130 00131 00132 00133 00134 00135 00136 00137 00138 00139 00140 00141 00142 00143 00144 00145 00146 00147 00148 00149 00200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 00219 00220 00221 00222 00223 00224 00225 00226 00227 00228 00229 00230 00231 00232 00233 00234 00235 00236 00237 00238 00239 00240 00241 00242 00243 00244 00245 00246 00247 00248 00249 00300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 00319 00320 00321 00322 00323 00324 00325 00326 00327 00328 00329 00330 00331 00332 00333 00334 00335 00336 00337 00338 00339 00340 00341 00342 00343 00344 00345 00346 00347 00348 00349 00400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 00419 00420 00421 00422 00423 00424 00425 00426 00427 00428 00429 00430 00431 00432 00433 00434 00435 00436 00437 00438 00439 00440 00441 00442 00443 00444 00445 00446 00447 00448 00449 00500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 00519 00520 00521 00522 00523 00524 00525 00526 00527 00528 00529 00530 00531 00532 00533 00534 00535 00536 00537 00538 00539 00540 00541 00542 00543 00544 00545 00546 00547 00548 00549 00600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 00619 00620 00621 00622 00623 00624 00625 00626 00627 00628 00629 00630 00631 00632 00633 00634 00635 00636 00637 00638 00639 00640 00641 00642 00643 00644 00645 00646 00647 00648 00649 00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723 00724 00725 00726 00727 00728 00729 00730 00731 00732 00733 00734 00735 00736 00737 00738 00739 00740 00741 00742 00743 00744 00745 00746 00747 00748 00749 00800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823 00824 00825 00826 00827 00828 00829 00830 00831 00832 00833 00834 00835 00836 00837 00838 00839 00840 00841 00842 00843 00844 00845 00846 00847 00848 00849 00900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 00921 00922 00923 00924 00925 00926 00927 00928 00929 00930 00931 00932 00933 00934 00935 00936 00937 00938 00939 00940 00941 00942 00943 00944 00945 00946 00947 00948 00949 01000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 01021 01022 01023 01024 01025 01026 01027 01028 01029 01030 01031 01032 01033 01034 01035 01036 01037 01038 01039 01040 01041 01042 01043 01044 01045 01046 01047 01048 01049 01100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 01121 01122 01123 01124 01125 01126 01127 01128 01129 01130 01131 01132 01133 01134 01135 01136 01137 01138 01139 01140 01141 01142 01143 01144 01145 01146 01147 01148 01149 01200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 01221 01222 01223 01224 01225 01226 01227 01228 01229 01230 01231 01232 01233 01234 01235 01236 01237 01238 01239 01240 01241 01242 01243 01244 01245 01246 01247 01248 01249 01300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320 01321 01322 01323 01324 01325 01326 01327 01328 01329 01330 01331 01332 01333 01334 01335 01336 01337 01338 01339 01340 01341 01342 01343 01344 01345 01346 01347 01348 01349 01400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420 01421 01422 01423 01424 01425 01426 01427 01428 01429 01430 01431 01432 01433 01434 01435 01436 01437 01438 01439 01440 01441 01442 01443 01444 01445 01446 01447 01448 01449 01500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520 01521 01522 01523 01524 01525 01526 01527 01528 01529 01530 01531 01532 01533 01534 01535 01536 01537 01538 01539 01540 01541 01542 01543 01544 01545 01546 01547 01548 01549 01600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620 01621 01622 01623 01624 01625 01626 01627 01628 01629 01630 01631 01632 01633 01634 01635 01636 01637 01638 01639 01640 01641 01642 01643 01644 01645 01646 01647 01648 01649 01700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720 01721 01722 01723 01724 01725 01726 01727 01728 01729 01730 01731 01732 01733 01734 01735 01736 01737 01738 01739 01740 01741 01742 01743 01744 01745 01746 01747 01748 01749 01800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 01821 01822 01823 01824 01825 01826 01827 01828 01829 01830 01831 01832 01833 01834 01835 01836 01837 01838 01839 01840 01841 01842 01843 01844 01845 01846 01847 01848 01849 01900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 01921 01922 01923 01924 01925 01926 01927 01928 01929 01930 01931 01932 01933 01934 01935 01936 01937 01938 01939 01940 01941 01942 01943 01944 01945 01946 01947 01948 01949 02000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 02021 02022 02023 02024 02025 02026 02027 02028 02029 02030 02031 02032 02033 02034 02035 02036 02037 02038 02039 02040 02041 02042 02043 02044 02045 02046 02047 02048 02049 02100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 02121 02122 02123 02124 02125 02126 02127 02128 02129 02130 02131 02132 02133 02134 02135 02136 02137 02138 02139 02140 02141 02142 02143 02144 02145 02146 02147 02148 02149 02200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 02221 02222 02223 02224 02225 02226 02227 02228 02229 02230 02231 02232 02233 02234 02235 02236 02237 02238 02239 02240 02241 02242 02243 02244 02245 02246 02247 02248 02249 02300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 02321 02322 02323 02324 02325 02326 02327 02328 02329 02330 02331 02332 02333 02334 02335 02336 02337 02338 02339 02340 02341 02342 02343 02344 02345 02346 02347 02348 02349 02400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 02421 02422 02423 02424 02425 02426 02427 02428 02429 02430 02431 02432 02433 02434 02435 02436 02437 02438 02439 02440 02441 02442 02443 02444 02445 02446 02447 02448 02449 02500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 02521 02522 02523 02524 02525 02526 02527 02528 02529 02530 02531 02532 02533 02534 02535 02536 02537 02538 02539 02540 02541 02542 02543 02544 02545 02546 02547 02548 02549 02600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 02623 02624 02625 02626 02627 02628 02629 02630 02631 02632 02633 02634 02635 02636 02637 02638 02639 02640 02641 02642 02643 02644 02645 02646 02647 02648 02649 02700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 02723 02724 02725 02726 02727 02728 02729 02730 02731 02732 02733 02734 02735 02736 02737 02738 02739 02740 02741 02742 02743 02744 02745 02746 02747 02748 02749 02800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 02823 02824 02825 02826 02827 02828 02829 02830 02831 02832 02833 02834 02835 02836 02837 02838 02839 02840 02841 02842 02843 02844 02845 02846 02847 02848 02849 02900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 02923 02924 02925 02926 02927 02928 02929 02930 02931 02932 02933 02934 02935 02936 02937 02938 02939 02940 02941 02942 02943 02944 02945 02946 02947 02948 02949 03000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03023 03024 03025 03026 03027 03028 03029 03030 03031 03032 03033 03034 03035 03036 03037 03038 03039 03040 03041 03042 03043 03044 03045 03046 03047 03048 03049 03100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03123 03124 03125 03126 03127 03128 03129 03130 03131 03132 03133 03134 03135 03136 03137 03138 03139 03140 03141 03142 03143 03144 03145 03146 03147 03148 03149 03200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03223 03224 03225 03226 03227 03228 03229 03230 03231 03232 03233 03234 03235 03236 03237 03238 03239 03240 03241 03242 03243 03244 03245 03246 03247 03248 03249 03300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03323 03324 03325 03326 03327 03328 03329 03330 03331 03332 03333 03334 03335 03336 03337 03338 03339 03340 03341 03342 03343 03344 03345 03346 03347 03348 03349 03400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03423 03424 03425 03426 03427 03428 03429 03430 03431 03432 03433 03434 03435 03436 03437 03438 03439 03440 03441 03442 03443 03444 03445 03446 03447 03448 03449 03500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03523 03524 03525 03526 03527 03528 03529 03530 03531 03532 03533 03534 03535 03536 03537 03538 03539 03540 03541 03542 03543 03544 03545 03546 03547 03548 03549 03600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03623 03624 03625 03626 03627 03628 03629 03630 03631 03632 03633 03634 03635 03636 03637 03638 03639 03640 03641 03642 03643 03644 03645 03646 03647 03648 03649 03700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03723 03724 03725 03726 03727 03728 03729 03730 03731 03732 03733 03734 03735 03736 03737 03738 03739 03740 03741 03742 03743 03744 03745 03746 03747 03748 03749 03800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03823 03824 03825 03826 03827 03828 03829 03830 03831 03832 03833 03834 03835 03836 03837 03838 03839 03840 03841 03842 03843 03844 03845 03846 03847 03848 03849 03900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03923 03924 03925 03926 03927 03928 03929 03930 03931 03932 03933 03934 03935 03936 03937 03938 03939 03940 03941 03942 03943 03944 03945 03946 03947 03948 03949 04000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020 04021 04022 04023 04024 04025 04026 04027 04028 04029 04030 04031 04032 04033 04034 04035 04036 04037 04038 04039 04040 04041 04042 04043 04044 04045 04046 04047 04048 04049 04100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120 04121 04122 04123 04124 04125 04126 04127 04128 04129 04130 04131 04132 04133 04134 04135 04136 04137 04138 04139 04140 04141 04142 04143 04144 04145 04146 04147 04148 04149 04200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220 04221 04222 04223 04224 04225 04226 04227 04228 04229 04230 04231 04232 04233 04234 04235 04236 04237 04238 04239 04240 04241 04242 04243 04244 04245 04246 04247 04248 04249 04300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320 04321 04322 04323 04324 04325 04326 04327 04328 04329 04330 04331 04332 04333 04334 04335 04336 04337 04338 04339 04340 04341 04342 04343 04344 04345 04346 04347 04348 04349 04400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420 04421 04422 04423 04424 04425 04426 04427 04428 04429 04430 04431 04432 04433 04434 04435 04436 04437 04438 04439 04440 04441 04442 04443 04444 04445 04446 04447 04448 04449 04500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 04514 04515 04516 04517 04518 04519 04520 04521 04522 04523 04524 04525 04526 04527 04528 04529 04530 04531 04532 04533 04534 04535 04536 04537 04538 04539 04540 04541 04542 04543 04544 04545 04546 04547 04548 04549 04600 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 04614 04615 04616 04617 04618 04619 04620 04621 04622 04623 04624 04625 04626 04627 04628 04629 04630 04631 04632 04633 04634 04635 04636 04637 04638 04639 04640 04641 04642 04643 04644 04645 04646 04647 04648 04649 04700 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 04714 04715 04716 04717 04718 04719 04720 04721 04722 04723 04724 04725 04726 04727 04728 04729 04730 04731 04732 04733 04734 04735 04736 04737 04738 04739 04740 04741 04742 04743 04744 04745 04746 04747 04748 04749 04800 04801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 04814 04815 04816 04817 04818 04819 04820 04821 04822 04823 04824 04825 04826 04827 04828 04829 04830 04831 04832 04833 04834 04835 04836 04837 04838 04839 04840 04841 04842 04843 04844 04845 04846 04847 04848 04849 04900 04901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 04914 04915 04916 04917 04918 04919 04920 04921 04922 04923 04924 04925 04926 04927 04928 04929 04930 04931 04932 04933 04934 04935 04936 04937 04938 04939 04940 04941 04942 04943 04944 04945 04946 04947 04948 04949 05000 05001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05023 05024 05025 05026 05027 05028 05029 05030 05031 05032 05033 05034 05035 05036 05037 05038 05039 05040 05041 05042 05043 05044 05045 05046 05047 05048 05049 05100 05101 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05123 05124 05125 05126 05127 05128 05129 05130 05131 05132 05133 05134 05135 05136 05137 05138 05139 05140 05141 05142 05143 05144 05145 05146 05147 05148 05149 05200 05201 05202 05203 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05223 05224 05225 05226 05227 05228 05229 05230 05231 05232 05233 05234 05235 05236 05237 05238 05239 05240 05241 05242 05243 05244 05245 05246 05247 05248 05249 05300 05301 05302 05303 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05323 05324 05325 05326 05327 05328 05329 05330 05331 05332 05333 05334 05335 05336 05337 05338 05339 05340 05341 05342 05343 05344 05345 05346 05347 05348 05349 05400 05401 05402 05403 05404 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05423 05424 05425 05426 05427 05428 05429 05430 05431 05432 05433 05434 05435 05436 05437 05438 05439 05440 05441 05442 05443 05444 05445 05446 05447 05448 05449 05500 05501 05502 05503 05504 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05523 05524 05525 05526 05527 05528 05529 05530 05531 05532 05533 05534 05535 05536 05537 05538 05539 05540 05541 05542 05543 05544 05545 05546 05547 05548 05549 05600 05601 05602 05603 05604 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05623 05624 05625 05626 05627 05628 05629 05630 05631 05632 05633 05634 05635 05636 05637 05638 05639 05640 05641 05642 05643 05644 05645 05646 05647 05648 05649 05700 05701 05702 05703 05704 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05723 05724 05725 05726 05727 05728 05729 05730 05731 05732 05733 05734 05735 05736 05737 05738 05739 05740 05741 05742 05743 05744 05745 05746 05747 05748 05749 05800 05801 05802 05803 05804 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05823 05824 05825 05826 05827 05828 05829 05830 05831 05832 05833 05834 05835 05836 05837 05838 05839 05840 05841 05842 05843 05844 05845 05846 05847 05848 05849 05900 05901 05902 05903 05904 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05923 05924 05925 05926 05927 05928 05929 05930 05931 05932 05933 05934 05935 05936 05937 05938 05939 05940 05941 05942 05943 05944 05945 05946 05947 05948 05949 06000 06001 06002 06003 06004 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06023 06024 06025 06026 06027 06028 06029 06030 06031 06032 06033 06034 06035 06036 06037 06038 06039 06040 06041 06042 06043 06044 06045 06046 06047 06048 06049 06100 06101 06102 06103 06104 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06123 06124 06125 06126 06127 06128 06129 06130 06131 06132 06133 06134 06135 06136 06137 06138 06139 06140 06141 06142 06143 06144 06145 06146 06147 06148 06149 06200 06201 06202 06203 06204 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06223 06224 06225 06226 06227 06228 06229 06230 06231 06232 06233 06234 06235 06236 06237 06238 06239 06240 06241 06242 06243 06244 06245 06246 06247 06248 06249 06300 06301 06302 06303 06304 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06323 06324 06325 06326 06327 06328 06329 06330 06331 06332 06333 06334 06335 06336 06337 06338 06339 06340 06341 06342 06343 06344 06345 06346 06347 06348 06349 06400 06401 06402 06403 06404 06405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 06423 06424 06425 06426 06427 06428 06429 06430 06431 06432 06433 06434 06435 06436 06437 06438 06439 06440 06441 06442 06443 06444 06445 06446 06447 06448 06449 06500 06501 06502 06503 06504 06505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 06523 06524 06525 06526 06527 06528 06529 06530 06531 06532 06533 06534 06535 06536 06537 06538 06539 06540 06541 06542 06543 06544 06545 06546 06547 06548 06549 06600 06601 06602 06603 06604 06605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 06623 06624 06625 06626 06627 06628 06629 06630 06631 06632 06633 06634 06635 06636 06637 06638 06639 06640 06641 06642 06643 06644 06645 06646 06647 06648 06649 06700 06701 06702 06703 06704 06705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 06723 06724 06725 06726 06727 06728 06729 06730 06731 06732 06733 06734 06735 06736 06737 06738 06739 06740 06741 06742 06743 06744 06745 06746 06747 06748 06749 06800 06801 06802 06803 06804 06805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 06823 06824 06825 06826 06827 06828 06829 06830 06831 06832 06833 06834 06835 06836 06837 06838 06839 06840 06841 06842 06843 06844 06845 06846 06847 06848 06849 06900 06901 06902 06903 06904 06905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 06923 06924 06925 06926 06927 06928 06929 06930 06931 06932 06933 06934 06935 06936 06937 06938 06939 06940 06941 06942 06943 06944 06945 06946 06947 06948 06949 07000 07001 07002 07003 07004 07005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 07023 07024 07025 07026 07027 07028 07029 07030 07031 07032 07033 07034 07035 07036 07037 07038 07039 07040 07041 07042 07043 07044 07045 07046 07047 07048 07049 07100 07101 07102 07103 07104 07105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 07123 07124 07125 07126 07127 07128 07129 07130 07131 07132 07133 07134 07135 07136 07137 07138 07139 07140 07141 07142 07143 07144 07145 07146 07147 07148 07149 07200 07201 07202 07203 07204 07205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 07223 07224 07225 07226 07227 07228 07229 07230 07231 07232 07233 07234 07235 07236 07237 07238 07239 07240 07241 07242 07243 07244 07245 07246 07247 07248 07249 07300 07301 07302 07303 07304 07305 07306 07307 07308 07309 07310 07311 07312 07313 07314 07315 07316 07317 07318 07319 07320 07321 07322 07323 07324 07325 07326 07327 07328 07329 07330 07331 07332 07333 07334 07335 07336 07337 07338 07339 07340 07341 07342 07343 07344 07345 07346 07347 07348 07349 07400 07401 07402 07403 07404 07405 07406 07407 07408 07409 07410 07411 07412 07413 07414 07415 07416 07417 07418 07419 07420 07421 07422 07423 07424 07425 07426 07427 07428 07429 07430 07431 07432 07433 07434 07435 07436 07437 07438 07439 07440 07441 07442 07443 07444 07445 07446 07447 07448 07449 07500 07501 07502 07503 07504 07505 07506 07507 07508 07509 07510 07511 07512 07513 07514 07515 07516 07517 07518 07519 07520 07521 07522 07523 07524 07525 07526 07527 07528 07529 07530 07531 07532 07533 07534 07535 07536 07537 07538 07539 07540 07541 07542 07543 07544 07545 07546 07547 07548 07549 07600 07601 07602 07603 07604 07605 07606 07607 07608 07609 07610 07611 07612 07613 07614 07615 07616 07617 07618 07619 07620 07621 07622 07623 07624 07625 07626 07627 07628 07629 07630 07631 07632 07633 07634 07635 07636 07637 07638 07639 07640 07641 07642 07643 07644 07645 07646 07647 07648 07649 07700 07701 07702 07703 07704 07705 07706 07707 07708 07709 07710 07711 07712 07713 07714 07715 07716 07717 07718 07719 07720 07721 07722 07723 07724 07725 07726 07727 07728 07729 07730 07731 07732 07733 07734 07735 07736 07737 07738 07739 07740 07741 07742 07743 07744 07745 07746 07747 07748 07749 07800 07801 07802 07803 07804 07805 07806 07807 07808 07809 07810 07811 07812 07813 07814 07815 07816 07817 07818 07819 07820 07821 07822 07823 07824 07825 07826 07827 07828 07829 07830 07831 07832 07833 07834 07835 07836 07837 07838 07839 07840 07841 07842 07843 07844 07845 07846 07847 07848 07849 07900 07901 07902 07903 07904 07905 07906 07907 07908 07909 07910 07911 07912 07913 07914 07915 07916 07917 07918 07919 07920 07921 07922 07923 07924 07925 07926 07927 07928 07929 07930 07931 07932 07933 07934 07935 07936 07937 07938 07939 07940 07941 07942 07943 07944 07945 07946 07947 07948 07949 08000 08001 08002 08003 08004 08005 08006 08007 08008 08009 08010 08011 08012 08013 08014 08015 08016 08017 08018 08019 08020 08021 08022 08023 08024 08025 08026 08027 08028 08029 08030 08031 08032 08033 08034 08035 08036 08037 08038 08039 08040 08041 08042 08043 08044 08045 08046 08047 08048 08049 08100 08101 08102 08103 08104 08105 08106 08107 08108 08109 08110 08111 08112 08113 08114 08115 08116 08117 08118 08119 08120 08121 08122 08123 08124 08125 08126 08127 08128 08129 08130 08131 08132 08133 08134 08135 08136 08137 08138 08139 08140 08141 08142 08143 08144 08145 08146 08147 08148 08149 08200 08201 08202 08203 08204 08205 08206 08207 08208 08209 08210 08211 08212 08213 08214 08215 08216 08217 08218 08219 08220 08221 08222 08223 08224 08225 08226 08227 08228 08229 08230 08231 08232 08233 08234 08235 08236 08237 08238 08239 08240 08241 08242 08243 08244 08245 08246 08247 08248 08249 08300 08301 08302 08303 08304 08305 08306 08307 08308 08309 08310 08311 08312 08313 08314 08315 08316 08317 08318 08319 08320 08321 08322 08323 08324 08325 08326 08327 08328 08329 08330 08331 08332 08333 08334 08335 08336 08337 08338 08339 08340 08341 08342 08343 08344 08345 08346 08347 08348 08349 08400 08401 08402 08403 08404 08405 08406 08407 08408 08409 08410 08411 08412 08413 08414 08415 08416 08417 08418 08419 08420 08421 08422 08423 08424 08425 08426 08427 08428 08429 08430 08431 08432 08433 08434 08435 08436 08437 08438 08439 08440 08441 08442 08443 08444 08445 08446 08447 08448 08449 08500 08501 08502 08503 08504 08505 08506 08507 08508 08509 08510 08511 08512 08513 08514 08515 08516 08517 08518 08519 08520 08521 08522 08523 08524 08525 08526 08527 08528 08529 08530 08531 08532 08533 08534 08535 08536 08537 08538 08539 08540 08541 08542 08543 08544 08545 08546 08547 08548 08549 08600 08601 08602 08603 08604 08605 08606 08607 08608 08609 08610 08611 08612 08613 08614 08615 08616 08617 08618 08619 08620 08621 08622 08623 08624 08625 08626 08627 08628 08629 08630 08631 08632 08633 08634 08635 08636 08637 08638 08639 08640 08641 08642 08643 08644 08645 08646 08647 08648 08649 08700 08701 08702 08703 08704 08705 08706 08707 08708 08709 08710 08711 08712 08713 08714 08715 08716 08717 08718 08719 08720 08721 08722 08723 08724 08725 08726 08727 08728 08729 08730 08731 08732 08733 08734 08735 08736 08737 08738 08739 08740 08741 08742 08743 08744 08745 08746 08747 08748 08749 08800 08801 08802 08803 08804 08805 08806 08807 08808 08809 08810 08811 08812 08813 08814 08815 08816 08817 08818 08819 08820 08821 08822 08823 08824 08825 08826 08827 08828 08829 08830 08831 08832 08833 08834 08835 08836 08837 08838 08839 08840 08841 08842 08843 08844 08845 08846 08847 08848 08849 08900 08901 08902 08903 08904 08905 08906 08907 08908 08909 08910 08911 08912 08913 08914 08915 08916 08917 08918 08919 08920 08921 08922 08923 08924 08925 08926 08927 08928 08929 08930 08931 08932 08933 08934 08935 08936 08937 08938 08939 08940 08941 08942 08943 08944 08945 08946 08947 08948 08949 09000 09001 09002 09003 09004 09005 09006 09007 09008 09009 09010 09011 09012 09013 09014 09015 09016 09017 09018 09019 09020 09021 09022 09023 09024 09025 09026 09027 09028 09029 09030 09031 09032 09033 09034 09035 09036 09037 09038 09039 09040 09041 09042 09043 09044 09045 09046 09047 09048 09049 09100 09101 09102 09103 09104 09105 09106 09107 09108 09109 09110 09111 09112 09113 09114 09115 09116 09117 09118 09119 09120 09121 09122 09123 09124 09125 09126 09127 09128 09129 09130 09131 09132 09133 09134 09135 09136 09137 09138 09139 09140 09141 09142 09143 09144 09145 09146 09147 09148 09149 09200 09201 09202 09203 09204 09205 09206 09207 09208 09209 09210 09211 09212 09213 09214 09215 09216 09217 09218 09219 09220 09221 09222 09223 09224 09225 09226 09227 09228 09229 09230 09231 09232 09233 09234 09235 09236 09237 09238 09239 09240 09241 09242 09243 09244 09245 09246 09247 09248 09249 09300 09301 09302 09303 09304 09305 09306 09307 09308 09309 09310 09311 09312 09313 09314 09315 09316 09317 09318 09319 09320 09321 09322 09323 09324 09325 09326 09327 09328 09329 09330 09331 09332 09333 09334 09335 09336 09337 09338 09339 09340 09341 09342 09343 09344 09345 09346 09347 09348 09349 09400 09401 09402 09403 09404 09405 09406 09407 09408 09409 09410 09411 09412 09413 09414 09415 09416 09417 09418 09419 09420 09421 09422 09423 09424 09425 09426 09427 09428 09429 09430 09431 09432 09433 09434 09435 09436 09437 09438 09439 09440 09441 09442 09443 09444 09445 09446 09447 09448 09449 09500 09501 09502 09503 09504 09505 09506 09507 09508 09509 09510 09511 09512 09513 09514 09515 09516 09517 09518 09519 09520 09521 09522 09523 09524 09525 09526 09527 09528 09529 09530 09531 09532 09533 09534 09535 09536 09537 09538 09539 09540 09541 09542 09543 09544 09545 09546 09547 09548 09549 09600 09601 09602 09603 09604 09605 09606 09607 09608 09609 09610 09611 09612 09613 09614 09615 09616 09617 09618 09619 09620 09621 09622 09623 09624 09625 09626 09627 09628 09629 09630 09631 09632 09633 09634 09635 09636 09637 09638 09639 09640 09641 09642 09643 09644 09645 09646 09647 09648 09649 09700 09701 09702 09703 09704 09705 09706 09707 09708 09709 09710 09711 09712 09713 09714 09715 09716 09717 09718 09719 09720 09721 09722 09723 09724 09725 09726 09727 09728 09729 09730 09731 09732 09733 09734 09735 09736 09737 09738 09739 09740 09741 09742 09743 09744 09745 09746 09747 09748 09749 09800 09801 09802 09803 09804 09805 09806 09807 09808 09809 09810 09811 09812 09813 09814 09815 09816 09817 09818 09819 09820 09821 09822 09823 09824 09825 09826 09827 09828 09829 09830 09831 09832 09833 09834 09835 09836 09837 09838 09839 09840 09841 09842 09843 09844 09845 09846 09847 09848 09849 09900 09901 09902 09903 09904 09905 09906 09907 09908 09909 09910 09911 09912 09913 09914 09915 09916 09917 09918 09919 09920 09921 09922 09923 09924 09925 09926 09927 09928 09929 09930 09931 09932 09933 09934 09935 09936 09937 09938 09939 09940 09941 09942 09943 09944 09945 09946 09947 09948 09949 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19832 19833 19834 19835 19836 19837 19838 19839 19840 19841 19842 19843 19844 19845 19846 19847 19848 19849 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 R =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 ________________________________________________00100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 00121 00122 00123 00124 00125 00126 00127 00128 00129 00130 00131 00132 00133 00134 00135 00136 00137 00138 00139 00140 00141 00142 00143 00144 00145 00146 00147 00148 00149 ________________________________________________00200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 00219 00220 00221 00222 00223 00224 00225 00226 00227 00228 00229 00230 00231 00232 00233 00234 00235 00236 00237 00238 00239 00240 00241 00242 00243 00244 00245 00246 00247 00248 00249 ________________________________________________00300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 00319 00320 00321 00322 00323 00324 00325 00326 00327 00328 00329 00330 00331 00332 00333 00334 00335 00336 00337 00338 00339 00340 00341 00342 00343 00344 00345 00346 00347 00348 00349 ________________________________________________00400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 00419 00420 00421 00422 00423 00424 00425 00426 00427 00428 00429 00430 00431 00432 00433 00434 00435 00436 00437 00438 00439 00440 00441 00442 00443 00444 00445 00446 00447 00448 00449 ________________________________________________00500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 00519 00520 00521 00522 00523 00524 00525 00526 00527 00528 00529 00530 00531 00532 00533 00534 00535 00536 00537 00538 00539 00540 00541 00542 00543 00544 00545 00546 00547 00548 00549 ________________________________________________00600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 00619 00620 00621 00622 00623 00624 00625 00626 00627 00628 00629 00630 00631 00632 00633 00634 00635 00636 00637 00638 00639 00640 00641 00642 00643 00644 00645 00646 00647 00648 00649 ________________________________________________00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723 00724 00725 00726 00727 00728 00729 00730 00731 00732 00733 00734 00735 00736 00737 00738 00739 00740 00741 00742 00743 00744 00745 00746 00747 00748 00749 ________________________________________________00800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823 00824 00825 00826 00827 00828 00829 00830 00831 00832 00833 00834 00835 00836 00837 00838 00839 00840 00841 00842 00843 00844 00845 00846 00847 00848 00849 ________________________________________________00900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 00921 00922 00923 00924 00925 00926 00927 00928 00929 00930 00931 00932 00933 00934 00935 00936 00937 00938 00939 00940 00941 00942 00943 00944 00945 00946 00947 00948 00949 ________________________________________________01000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 01021 01022 01023 01024 01025 01026 01027 01028 01029 01030 01031 01032 01033 01034 01035 01036 01037 01038 01039 01040 01041 01042 01043 01044 01045 01046 01047 01048 01049 ________________________________________________01100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 01121 01122 01123 01124 01125 01126 01127 01128 01129 01130 01131 01132 01133 01134 01135 01136 01137 01138 01139 01140 01141 01142 01143 01144 01145 01146 01147 01148 01149 ________________________________________________01200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 01221 01222 01223 01224 01225 01226 01227 01228 01229 01230 01231 01232 01233 01234 01235 01236 01237 01238 01239 01240 01241 01242 01243 01244 01245 01246 01247 01248 01249 ________________________________________________01300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01@04table-50x200@00#________________________________________________________________________________________________________ +2d =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 ________________________________________________00100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 00121 00122 00123 00124 00125 00126 00127 00128 00129 00130 00131 00132 00133 00134 00135 00136 00137 00138 00139 00140 00141 00142 00143 00144 00145 00146 00147 00148 00149 ________________________________________________00200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 00219 00220 00221 00222 00223 00224 00225 00226 00227 00228 00229 00230 00231 00232 00233 00234 00235 00236 00237 00238 00239 00240 00241 00242 00243 00244 00245 00246 00247 00248 00249 ________________________________________________00300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 00319 00320 00321 00322 00323 00324 00325 00326 00327 00328 00329 00330 00331 00332 00333 00334 00335 00336 00337 00338 00339 00340 00341 00342 00343 00344 00345 00346 00347 00348 00349 ________________________________________________00400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 00419 00420 00421 00422 00423 00424 00425 00426 00427 00428 00429 00430 00431 00432 00433 00434 00435 00436 00437 00438 00439 00440 00441 00442 00443 00444 00445 00446 00447 00448 00449 ________________________________________________00500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 00519 00520 00521 00522 00523 00524 00525 00526 00527 00528 00529 00530 00531 00532 00533 00534 00535 00536 00537 00538 00539 00540 00541 00542 00543 00544 00545 00546 00547 00548 00549 ________________________________________________00600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 00619 00620 00621 00622 00623 00624 00625 00626 00627 00628 00629 00630 00631 00632 00633 00634 00635 00636 00637 00638 00639 00640 00641 00642 00643 00644 00645 00646 00647 00648 00649 ________________________________________________00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723 00724 00725 00726 00727 00728 00729 00730 00731 00732 00733 00734 00735 00736 00737 00738 00739 00740 00741 00742 00743 00744 00745 00746 00747 00748 00749 ________________________________________________00800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823 00824 00825 00826 00827 00828 00829 00830 00831 00832 00833 00834 00835 00836 00837 00838 00839 00840 00841 00842 00843 00844 00845 00846 00847 00848 00849 ________________________________________________00900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 00921 00922 00923 00924 00925 00926 00927 00928 00929 00930 00931 00932 00933 00934 00935 00936 00937 00938 00939 00940 00941 00942 00943 00944 00945 00946 00947 00948 00949 ________________________________________________01000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 01021 01022 01023 01024 01025 01026 01027 01028 01029 01030 01031 01032 01033 01034 01035 01036 01037 01038 01039 01040 01041 01042 01043 01044 01045 01046 01047 01048 01049 ________________________________________________01100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 01121 01122 01123 01124 01125 01126 01127 01128 01129 01130 01131 01132 01133 01134 01135 01136 01137 01138 01139 01140 01141 01142 01143 01144 01145 01146 01147 01148 01149 ________________________________________________01200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 01221 01222 01223 01224 01225 01226 01227 01228 01229 01230 01231 01232 01233 01234 01235 01236 01237 01238 01239 01240 01241 01242 01243 01244 01245 01246 01247 01248 01249 ________________________________________________01300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01-#___________________________________________________________________________________________________________________ +53 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 ________________________________________________00100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 00121 00122 00123 00124 00125 00126 00127 00128 00129 00130 00131 00132 00133 00134 00135 00136 00137 00138 00139 00140 00141 00142 00143 00144 00145 00146 00147 00148 00149 ________________________________________________00200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 00219 00220 00221 00222 00223 00224 00225 00226 00227 00228 00229 00230 00231 00232 00233 00234 00235 00236 00237 00238 00239 00240 00241 00242 00243 00244 00245 00246 00247 00248 00249 ________________________________________________00300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 00319 00320 00321 00322 00323 00324 00325 00326 00327 00328 00329 00330 00331 00332 00333 00334 00335 00336 00337 00338 00339 00340 00341 00342 00343 00344 00345 00346 00347 00348 00349 ________________________________________________00400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 00419 00420 00421 00422 00423 00424 00425 00426 00427 00428 00429 00430 00431 00432 00433 00434 00435 00436 00437 00438 00439 00440 00441 00442 00443 00444 00445 00446 00447 00448 00449 ________________________________________________00500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 00519 00520 00521 00522 00523 00524 00525 00526 00527 00528 00529 00530 00531 00532 00533 00534 00535 00536 00537 00538 00539 00540 00541 00542 00543 00544 00545 00546 00547 00548 00549 ________________________________________________00600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 00619 00620 00621 00622 00623 00624 00625 00626 00627 00628 00629 00630 00631 00632 00633 00634 00635 00636 00637 00638 00639 00640 00641 00642 00643 00644 00645 00646 00647 00648 00649 ________________________________________________00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723 00724 00725 00726 00727 00728 00729 00730 00731 00732 00733 00734 00735 00736 00737 00738 00739 00740 00741 00742 00743 00744 00745 00746 00747 00748 00749 ________________________________________________00800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823 00824 00825 00826 00827 00828 00829 00830 00831 00832 00833 00834 00835 00836 00837 00838 00839 00840 00841 00842 00843 00844 00845 00846 00847 00848 00849 ________________________________________________00900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 00921 00922 00923 00924 00925 00926 00927 00928 00929 00930 00931 00932 00933 00934 00935 00936 00937 00938 00939 00940 00941 00942 00943 00944 00945 00946 00947 00948 00949 ________________________________________________01000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 01021 01022 01023 01024 01025 01026 01027 01028 01029 01030 01031 01032 01033 01034 01035 01036 01037 01038 01039 01040 01041 01042 01043 01044 01045 01046 01047 01048 01049 ________________________________________________01100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 01121 01122 01123 01124 01125 01126 01127 01128 01129 01130 01131 01132 01133 01134 01135 01136 01137 01138 01139 01140 01141 01142 01143 01144 01145 01146 01147 01148 01149 ________________________________________________01200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 01221 01222 01223 01224 01225 01226 01227 01228 01229 01230 01231 01232 01233 01234 01235 01236 01237 01238 01239 01240 01241 01242 01243 01244 01245 01246 01247 01248 01249 ________________________________________________01300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01@04Chop long lines (press RETURN)@00#_____________________________________________________________________________________ +a =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 0@04>@0000100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 0@04>@0000200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 0@04>@0000300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 0@04>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 0@04>@0001400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>@00:#___________________________________________________________________________________________________________________ +2d =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 0@04>@0000100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 0@04>@0000200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 0@04>@0000300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 0@04>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 0@04>@0001400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>@00-#___________________________________________________________________________________________________________________ +2d =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 0@04>@0000100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 0@04>@0000200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 0@04>@0000300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 0@04>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 0@04>@0001400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>@00--#__________________________________________________________________________________________________________________ +68 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 0@04>@0000100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 0@04>@0000200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 0@04>@0000300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 0@04>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 0@04>@0001400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>@00--h#_________________________________________________________________________________________________________________ +65 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 0@04>@0000100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 0@04>@0000200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 0@04>@0000300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 0@04>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 0@04>@0001400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>@00--he#________________________________________________________________________________________________________________ +61 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 0@04>@0000100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 0@04>@0000200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 0@04>@0000300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 0@04>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 0@04>@0001400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>@00--header#____________________________________________________________________________________________________________ +a =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 0@04>@0000100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 0@04>@0000200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 0@04>@0000300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 0@04>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 0@04>@0001400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>@00Header lines: #______________________________________________________________________________________________________ +32 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 0@04>@0000100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 0@04>@0000200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 0@04>@0000300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 0@04>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 0@04>@0001400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>@00Header lines: 2#_____________________________________________________________________________________________________ +a =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 0@04>@0000100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 0@04>@0000200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 0@04>@0000300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 0@04>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 0@04>@0001400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>@00:#___________________________________________________________________________________________________________________ +31 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 0@04>@0000100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 0@04>@0000200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 0@04>@0000300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 0@04>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 0@04>@0001400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>@00:1#__________________________________________________________________________________________________________________ +1b =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 0@04>@0000100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 0@04>@0000200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 0@04>@0000300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 0@04>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 0@04>@0001400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>@00:1#__________________________________________________________________________________________________________________ +4f =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 0@04>@0000100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 0@04>@0000200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 0@04>@0000300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 0@04>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 0@04>@0001400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>@00:1#__________________________________________________________________________________________________________________ +43 =0000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00@04>@000100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00@04>@000200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 00@04>@000300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 00@04>@000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 00@04>@000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 00@04>@000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 00@04>@000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00@04>@000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00@04>@000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00@04>@001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01@04>@001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01@04>@001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01@04>@001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01@04>@001400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01@04>@001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01@04>@001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01@04>@001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01@04>@001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01@04>@001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01@04>@002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02@04>@002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02@04>@002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02@04>@002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02@04>@002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02@04>@002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02@04>@002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02@04>@002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02@04>@002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02@04>@002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02@04>@003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03@04>@003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03@04>@003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03@04>@003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03@04>@003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03@04>@003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03@04>@003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03@04>@003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03@04>@003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03@04>@003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03@04>@00:#___________________________________________________________________________________________________________________ +1b =0000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00@04>@000100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00@04>@000200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 00@04>@000300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 00@04>@000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 00@04>@000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 00@04>@000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 00@04>@000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00@04>@000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00@04>@000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00@04>@001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01@04>@001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01@04>@001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01@04>@001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01@04>@001400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01@04>@001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01@04>@001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01@04>@001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01@04>@001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01@04>@001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01@04>@002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02@04>@002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02@04>@002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02@04>@002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02@04>@002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02@04>@002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02@04>@002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02@04>@002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02@04>@002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02@04>@002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02@04>@003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03@04>@003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03@04>@003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03@04>@003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03@04>@003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03@04>@003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03@04>@003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03@04>@003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03@04>@003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03@04>@003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00@04>@000100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00@04>@000200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 00@04>@000300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 00@04>@000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 00@04>@000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 00@04>@000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 00@04>@000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00@04>@000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00@04>@000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00@04>@001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01@04>@001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01@04>@001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01@04>@001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01@04>@001400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01@04>@001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01@04>@001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01@04>@001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01@04>@001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01@04>@001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01@04>@002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02@04>@002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02@04>@002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02@04>@002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02@04>@002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02@04>@002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02@04>@002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02@04>@002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02@04>@002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02@04>@002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02@04>@003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03@04>@003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03@04>@003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03@04>@003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03@04>@003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03@04>@003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03@04>@003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03@04>@003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03@04>@003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03@04>@003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 000@04>@00100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 001@04>@00200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 002@04>@00300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 003@04>@00400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 004@04>@00500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 005@04>@00600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 006@04>@00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 007@04>@00800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 008@04>@00900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 009@04>@00000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 010@04>@00100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 011@04>@00200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 012@04>@00300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 013@04>@00400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 014@04>@00500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 015@04>@00600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 016@04>@00700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 017@04>@00800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 018@04>@00900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 019@04>@00000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 020@04>@00100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 021@04>@00200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 022@04>@00300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 023@04>@00400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 024@04>@00500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 025@04>@00600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 026@04>@00700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 027@04>@00800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 028@04>@00900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 029@04>@00000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 030@04>@00100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 031@04>@00200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 032@04>@00300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 033@04>@00400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 034@04>@00500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 035@04>@00600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 036@04>@00700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 037@04>@00800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 038@04>@00900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 039@04>@00:#___________________________________________________________________________________________________________________ +1b =000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 000@04>@00100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 001@04>@00200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 002@04>@00300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 003@04>@00400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 004@04>@00500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 005@04>@00600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 006@04>@00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 007@04>@00800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 008@04>@00900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 009@04>@00000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 010@04>@00100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 011@04>@00200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 012@04>@00300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 013@04>@00400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 014@04>@00500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 015@04>@00600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 016@04>@00700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 017@04>@00800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 018@04>@00900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 019@04>@00000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 020@04>@00100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 021@04>@00200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 022@04>@00300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 023@04>@00400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 024@04>@00500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 025@04>@00600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 026@04>@00700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 027@04>@00800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 028@04>@00900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 029@04>@00000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 030@04>@00100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 031@04>@00200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 032@04>@00300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 033@04>@00400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 034@04>@00500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 035@04>@00600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 036@04>@00700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 037@04>@00800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 038@04>@00900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 039@04>@00 ESC#________________________________________________________________________________________________________________ +4f =000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 000@04>@00100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 001@04>@00200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 002@04>@00300 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 003@04>@00400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 004@04>@00500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 005@04>@00600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 006@04>@00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 007@04>@00800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 008@04>@00900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 009@04>@00000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 010@04>@00100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 011@04>@00200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 012@04>@00300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 013@04>@00400 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 014@04>@00500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 015@04>@00600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 016@04>@00700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 017@04>@00800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 018@04>@00900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 019@04>@00000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 020@04>@00100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 021@04>@00200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 022@04>@00300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 023@04>@00400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 024@04>@00500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 025@04>@00600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 026@04>@00700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 027@04>@00800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 028@04>@00900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 029@04>@00000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 030@04>@00100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 031@04>@00200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 032@04>@00300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 033@04>@00400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 034@04>@00500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 035@04>@00600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 036@04>@00700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 037@04>@00800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 038@04>@00900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 039@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 0001@04>@0000 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 0011@04>@0000 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 0021@04>@0000 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 0031@04>@0000 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 0041@04>@0000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 0051@04>@0000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 0061@04>@0000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0071@04>@0000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0081@04>@0000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 0091@04>@0000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 0101@04>@0000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 0111@04>@0000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 0121@04>@0000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 0131@04>@0000 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 0141@04>@0000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 0151@04>@0000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 0161@04>@0000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 0171@04>@0000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0181@04>@0000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0191@04>@0000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0201@04>@0000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0211@04>@0000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0221@04>@0000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0231@04>@0000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0241@04>@0000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0251@04>@0000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0261@04>@0000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0271@04>@0000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0281@04>@0000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0291@04>@0000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0301@04>@0000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0311@04>@0000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0321@04>@0000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0331@04>@0000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0341@04>@0000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0351@04>@0000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0361@04>@0000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0371@04>@0000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0381@04>@0000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0391@04>@00:#___________________________________________________________________________________________________________________ +1b =00 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 0001@04>@0000 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 0011@04>@0000 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 0021@04>@0000 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 0031@04>@0000 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 0041@04>@0000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 0051@04>@0000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 0061@04>@0000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0071@04>@0000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0081@04>@0000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 0091@04>@0000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 0101@04>@0000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 0111@04>@0000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 0121@04>@0000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 0131@04>@0000 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 0141@04>@0000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 0151@04>@0000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 0161@04>@0000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 0171@04>@0000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0181@04>@0000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0191@04>@0000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0201@04>@0000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0211@04>@0000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0221@04>@0000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0231@04>@0000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0241@04>@0000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0251@04>@0000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0261@04>@0000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0271@04>@0000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0281@04>@0000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0291@04>@0000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0301@04>@0000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0311@04>@0000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0321@04>@0000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0331@04>@0000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0341@04>@0000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0351@04>@0000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0361@04>@0000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0371@04>@0000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0381@04>@0000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0391@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 0001@04>@0000 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 0011@04>@0000 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 0021@04>@0000 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 0031@04>@0000 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 0041@04>@0000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 0051@04>@0000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 0061@04>@0000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0071@04>@0000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0081@04>@0000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 0091@04>@0000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 0101@04>@0000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 0111@04>@0000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 0121@04>@0000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 0131@04>@0000 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 0141@04>@0000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 0151@04>@0000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 0161@04>@0000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 0171@04>@0000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0181@04>@0000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0191@04>@0000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0201@04>@0000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0211@04>@0000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0221@04>@0000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0231@04>@0000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0241@04>@0000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0251@04>@0000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0261@04>@0000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0271@04>@0000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0281@04>@0000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0291@04>@0000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0301@04>@0000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0311@04>@0000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0321@04>@0000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0331@04>@0000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0341@04>@0000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0351@04>@0000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0361@04>@0000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0371@04>@0000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0381@04>@0000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0391@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019@04>@000 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119@04>@000 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 00219@04>@000 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 00319@04>@000 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 00419@04>@000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 00519@04>@000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 00619@04>@000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719@04>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319@04>@000 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919@04>@00:#___________________________________________________________________________________________________________________ +1b =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019@04>@000 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119@04>@000 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 00219@04>@000 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 00319@04>@000 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 00419@04>@000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 00519@04>@000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 00619@04>@000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719@04>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319@04>@000 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019@04>@000 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119@04>@000 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 00219@04>@000 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 00319@04>@000 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 00419@04>@000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 00519@04>@000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 00619@04>@000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719@04>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319@04>@000 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 = 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 @04>@00 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 @04>@00 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 00219 @04>@00 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 00319 @04>@00 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 00419 @04>@00 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 00519 @04>@00 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 00619 @04>@00 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 @04>@00 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 @04>@00 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 @04>@00 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 @04>@00 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 @04>@00 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 @04>@00 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 @04>@00 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 @04>@00 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 @04>@00 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 @04>@00 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 @04>@00 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 @04>@00 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 @04>@00 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 @04>@00 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 @04>@00 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 @04>@00 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 @04>@00 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 @04>@00 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 @04>@00 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 @04>@00 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 @04>@00 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 @04>@00 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 @04>@00 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 @04>@00 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 @04>@00 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 @04>@00 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 @04>@00 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 @04>@00 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 @04>@00 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 @04>@00 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 @04>@00 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 @04>@00 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 @04>@00:#___________________________________________________________________________________________________________________ +6a = 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 @04>@02 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 @06>@00 00301 00302 00303 00304 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 00318 00319 @04>@00 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 00419 @04>@00 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 00519 @04>@00 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 00619 @04>@00 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 @04>@00 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 @04>@00 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 @04>@00 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 @04>@00 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 @04>@00 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 @04>@00 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 @04>@00 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 @04>@00 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 @04>@00 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 @04>@00 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 @04>@00 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 @04>@00 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 @04>@00 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 @04>@00 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 @04>@00 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 @04>@00 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 @04>@00 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 @04>@00 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 @04>@00 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 @04>@00 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 @04>@00 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 @04>@00 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 @04>@00 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 @04>@00 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 @04>@00 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 @04>@00 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 @04>@00 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 @04>@00 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 @04>@00 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 @04>@00 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 @04>@00 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 @04>@00 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 @04>@00 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 @04>@00:#___________________________________________________________________________________________________________________ +6a = 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 @04>@02 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 @06>@00 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 00414 00415 00416 00417 00418 00419 @04>@00 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 00519 @04>@00 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 00619 @04>@00 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 @04>@00 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 @04>@00 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 @04>@00 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 @04>@00 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 @04>@00 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 @04>@00 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 @04>@00 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 @04>@00 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 @04>@00 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 @04>@00 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 @04>@00 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 @04>@00 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 @04>@00 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 @04>@00 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 @04>@00 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 @04>@00 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 @04>@00 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 @04>@00 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 @04>@00 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 @04>@00 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 @04>@00 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 @04>@00 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 @04>@00 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 @04>@00 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 @04>@00 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 @04>@00 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 @04>@00 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 @04>@00 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 @04>@00 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 @04>@00 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 @04>@00 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 @04>@00 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 @04>@00 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 @04>@00 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 @04>@00:#___________________________________________________________________________________________________________________ +6a = 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 @04>@02 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 @06>@00 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 00514 00515 00516 00517 00518 00519 @04>@00 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 00619 @04>@00 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 @04>@00 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 @04>@00 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 @04>@00 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 @04>@00 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 @04>@00 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 @04>@00 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 @04>@00 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 @04>@00 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 @04>@00 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 @04>@00 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 @04>@00 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 @04>@00 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 @04>@00 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 @04>@00 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 @04>@00 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 @04>@00 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 @04>@00 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 @04>@00 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 @04>@00 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 @04>@00 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 @04>@00 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 @04>@00 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 @04>@00 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 @04>@00 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 @04>@00 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 @04>@00 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 @04>@00 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 @04>@00 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 @04>@00 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 @04>@00 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 @04>@00 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 @04>@00 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 @04>@00 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 @04>@00 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 @04>@00 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 @04>@00:#___________________________________________________________________________________________________________________ +6a = 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 @04>@02 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 @06>@00 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 00614 00615 00616 00617 00618 00619 @04>@00 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 @04>@00 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 @04>@00 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 @04>@00 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 @04>@00 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 @04>@00 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 @04>@00 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 @04>@00 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 @04>@00 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 @04>@00 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 @04>@00 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 @04>@00 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 @04>@00 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 @04>@00 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 @04>@00 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 @04>@00 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 @04>@00 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 @04>@00 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 @04>@00 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 @04>@00 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 @04>@00 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 @04>@00 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 @04>@00 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 @04>@00 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 @04>@00 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 @04>@00 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 @04>@00 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 @04>@00 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 @04>@00 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 @04>@00 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 @04>@00 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 @04>@00 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 @04>@00 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 @04>@00 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 @04>@00 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 @04>@00 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 @04>@00 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 @04>@00:#___________________________________________________________________________________________________________________ +6a = 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 @04>@02 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 @06>@00 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 @04>@00 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 @04>@00 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 @04>@00 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 @04>@00 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 @04>@00 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 @04>@00 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 @04>@00 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 @04>@00 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 @04>@00 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 @04>@00 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 @04>@00 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 @04>@00 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 @04>@00 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 @04>@00 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 @04>@00 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 @04>@00 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 @04>@00 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 @04>@00 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 @04>@00 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 @04>@00 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 @04>@00 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 @04>@00 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 @04>@00 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 @04>@00 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 @04>@00 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 @04>@00 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 @04>@00 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 @04>@00 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 @04>@00 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 @04>@00 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 @04>@00 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 @04>@00 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 @04>@00 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 @04>@00 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 @04>@00 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 @04>@00 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 @04>@00 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 @04>@00:#___________________________________________________________________________________________________________________ +1b = 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 @04>@02 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 @06>@00 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 @04>@00 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 @04>@00 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 @04>@00 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 @04>@00 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 @04>@00 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 @04>@00 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 @04>@00 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 @04>@00 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 @04>@00 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 @04>@00 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 @04>@00 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 @04>@00 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 @04>@00 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 @04>@00 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 @04>@00 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 @04>@00 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 @04>@00 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 @04>@00 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 @04>@00 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 @04>@00 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 @04>@00 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 @04>@00 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 @04>@00 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 @04>@00 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 @04>@00 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 @04>@00 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 @04>@00 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 @04>@00 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 @04>@00 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 @04>@00 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 @04>@00 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 @04>@00 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 @04>@00 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 @04>@00 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 @04>@00 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 @04>@00 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 @04>@00 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 @04>@00 ESC#________________________________________________________________________________________________________________ +4f = 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 @04>@02 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 @06>@00 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 @04>@00 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 @04>@00 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 @04>@00 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 @04>@00 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 @04>@00 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 @04>@00 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 @04>@00 01401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 @04>@00 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 @04>@00 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 @04>@00 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 @04>@00 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 @04>@00 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 @04>@00 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 @04>@00 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 @04>@00 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 @04>@00 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 @04>@00 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 @04>@00 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 @04>@00 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 @04>@00 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 @04>@00 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 @04>@00 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 @04>@00 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 @04>@00 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 @04>@00 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 @04>@00 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 @04>@00 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 @04>@00 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 @04>@00 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 @04>@00 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 @04>@00 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 @04>@00 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 @04>@00 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 @04>@00 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 @04>@00 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 @04>@00 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 @04>@00 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 @04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 0@04>@0200101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 0@06>@0000701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 0@04>@0000801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 0@04>@0000901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 0@04>@0001001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 0@04>@0001101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 0@04>@0001201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 0@04>@0001301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 0@04>@0001401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 0@04>@0001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 0@04>@0001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 0@04>@0001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 0@04>@0001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 0@04>@0001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 0@04>@0002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 0@04>@0002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 0@04>@0002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 0@04>@0002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 0@04>@0002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 0@04>@0002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 0@04>@0002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 0@04>@0002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 0@04>@0002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 0@04>@0002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 0@04>@0003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 0@04>@0003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 0@04>@0003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 0@04>@0003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 0@04>@0003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 0@04>@0003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 0@04>@0003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 0@04>@0003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 0@04>@0003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 0@04>@0003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 0@04>@0004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 0@04>@0004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 0@04>@0004201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 0@04>@0004301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 0@04>@0004401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 0@04>@0200101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 0@06>@0000701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 0@04>@0000801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 0@04>@0000901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 0@04>@0001001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 0@04>@0001101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 0@04>@0001201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 0@04>@0001301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 0@04>@0001401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 0@04>@0001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 0@04>@0001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 0@04>@0001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 0@04>@0001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 0@04>@0001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 0@04>@0002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 0@04>@0002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 0@04>@0002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 0@04>@0002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 0@04>@0002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 0@04>@0002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 0@04>@0002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 0@04>@0002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 0@04>@0002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 0@04>@0002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 0@04>@0003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 0@04>@0003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 0@04>@0003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 0@04>@0003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 0@04>@0003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 0@04>@0003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 0@04>@0003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 0@04>@0003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 0@04>@0003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 0@04>@0003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 0@04>@0004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 0@04>@0004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 0@04>@0004201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 0@04>@0004301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 0@04>@0004401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 0@04>@0200101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 0@06>@0000701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 0@04>@0000801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 0@04>@0000901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 0@04>@0001001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 0@04>@0001101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 0@04>@0001201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 0@04>@0001301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 0@04>@0001401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 0@04>@0001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 0@04>@0001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 0@04>@0001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 0@04>@0001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 0@04>@0001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 0@04>@0002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 0@04>@0002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 0@04>@0002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 0@04>@0002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 0@04>@0002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 0@04>@0002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 0@04>@0002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 0@04>@0002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 0@04>@0002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 0@04>@0002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 0@04>@0003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 0@04>@0003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 0@04>@0003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 0@04>@0003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 0@04>@0003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 0@04>@0003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 0@04>@0003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 0@04>@0003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 0@04>@0003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 0@04>@0003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 0@04>@0004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 0@04>@0004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 0@04>@0004201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 0@04>@0004301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 0@04>@0004401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =0001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00@04>@020101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00@06>@000701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00@04>@000801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00@04>@000901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00@04>@001001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01@04>@001101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01@04>@001201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01@04>@001301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01@04>@001401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01@04>@001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01@04>@001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01@04>@001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01@04>@001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01@04>@001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01@04>@002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02@04>@002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02@04>@002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02@04>@002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02@04>@002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02@04>@002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02@04>@002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02@04>@002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02@04>@002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02@04>@002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02@04>@003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03@04>@003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03@04>@003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03@04>@003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03@04>@003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03@04>@003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03@04>@003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03@04>@003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03@04>@003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03@04>@003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03@04>@004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04@04>@004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04@04>@004201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04@04>@004301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04@04>@004401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04@04>@00:#___________________________________________________________________________________________________________________ +1b =0001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00@04>@020101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00@06>@000701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00@04>@000801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00@04>@000901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00@04>@001001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01@04>@001101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01@04>@001201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01@04>@001301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01@04>@001401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01@04>@001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01@04>@001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01@04>@001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01@04>@001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01@04>@001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01@04>@002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02@04>@002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02@04>@002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02@04>@002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02@04>@002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02@04>@002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02@04>@002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02@04>@002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02@04>@002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02@04>@002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02@04>@003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03@04>@003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03@04>@003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03@04>@003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03@04>@003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03@04>@003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03@04>@003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03@04>@003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03@04>@003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03@04>@003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03@04>@004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04@04>@004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04@04>@004201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04@04>@004301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04@04>@004401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00@04>@020101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00@06>@000701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00@04>@000801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00@04>@000901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00@04>@001001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01@04>@001101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01@04>@001201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01@04>@001301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01@04>@001401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01@04>@001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01@04>@001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01@04>@001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01@04>@001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01@04>@001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01@04>@002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02@04>@002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02@04>@002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02@04>@002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02@04>@002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02@04>@002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02@04>@002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02@04>@002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02@04>@002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02@04>@002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02@04>@003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03@04>@003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03@04>@003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03@04>@003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03@04>@003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03@04>@003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03@04>@003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03@04>@003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03@04>@003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03@04>@003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03@04>@004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04@04>@004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04@04>@004201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04@04>@004301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04@04>@004401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 000@04>@02101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 001@06>@00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 007@04>@00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 008@04>@00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 009@04>@00001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 010@04>@00101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 011@04>@00201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 012@04>@00301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 013@04>@00401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 014@04>@00501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 015@04>@00601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 016@04>@00701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 017@04>@00801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 018@04>@00901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 019@04>@00001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 020@04>@00101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 021@04>@00201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 022@04>@00301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 023@04>@00401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 024@04>@00501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 025@04>@00601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 026@04>@00701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 027@04>@00801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 028@04>@00901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 029@04>@00001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 030@04>@00101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 031@04>@00201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 032@04>@00301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 033@04>@00401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 034@04>@00501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 035@04>@00601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 036@04>@00701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 037@04>@00801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 038@04>@00901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 039@04>@00001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 040@04>@00101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 041@04>@00201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 042@04>@00301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 043@04>@00401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 044@04>@00:#___________________________________________________________________________________________________________________ +1b =001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 000@04>@02101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 001@06>@00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 007@04>@00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 008@04>@00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 009@04>@00001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 010@04>@00101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 011@04>@00201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 012@04>@00301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 013@04>@00401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 014@04>@00501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 015@04>@00601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 016@04>@00701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 017@04>@00801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 018@04>@00901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 019@04>@00001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 020@04>@00101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 021@04>@00201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 022@04>@00301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 023@04>@00401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 024@04>@00501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 025@04>@00601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 026@04>@00701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 027@04>@00801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 028@04>@00901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 029@04>@00001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 030@04>@00101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 031@04>@00201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 032@04>@00301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 033@04>@00401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 034@04>@00501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 035@04>@00601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 036@04>@00701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 037@04>@00801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 038@04>@00901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 039@04>@00001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 040@04>@00101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 041@04>@00201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 042@04>@00301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 043@04>@00401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 044@04>@00 ESC#________________________________________________________________________________________________________________ +4f =001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 000@04>@02101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 001@06>@00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 007@04>@00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 008@04>@00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 009@04>@00001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 010@04>@00101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 011@04>@00201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 012@04>@00301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 013@04>@00401 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 014@04>@00501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 015@04>@00601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 016@04>@00701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 017@04>@00801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 018@04>@00901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 019@04>@00001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 020@04>@00101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 021@04>@00201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 022@04>@00301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 023@04>@00401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 024@04>@00501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 025@04>@00601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 026@04>@00701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 027@04>@00801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 028@04>@00901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 029@04>@00001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 030@04>@00101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 031@04>@00201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 032@04>@00301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 033@04>@00401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 034@04>@00501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 035@04>@00601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 036@04>@00701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 037@04>@00801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 038@04>@00901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 039@04>@00001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 040@04>@00101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 041@04>@00201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 042@04>@00301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 043@04>@00401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 044@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =01 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 0002@04>@0201 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 0012@06>@0001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 0072@04>@0001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 0082@04>@0001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 0092@04>@0001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 0102@04>@0001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 0112@04>@0001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 0122@04>@0001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 0132@04>@0001 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 0142@04>@0001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 0152@04>@0001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 0162@04>@0001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 0172@04>@0001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 0182@04>@0001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 0192@04>@0001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 0202@04>@0001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 0212@04>@0001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 0222@04>@0001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 0232@04>@0001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 0242@04>@0001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 0252@04>@0001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 0262@04>@0001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 0272@04>@0001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 0282@04>@0001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 0292@04>@0001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 0302@04>@0001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 0312@04>@0001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 0322@04>@0001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 0332@04>@0001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 0342@04>@0001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 0352@04>@0001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 0362@04>@0001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 0372@04>@0001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 0382@04>@0001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 0392@04>@0001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 0402@04>@0001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 0412@04>@0001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 0422@04>@0001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 0432@04>@0001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 0442@04>@00:#___________________________________________________________________________________________________________________ +1b =01 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 0002@04>@0201 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 0012@06>@0001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 0072@04>@0001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 0082@04>@0001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 0092@04>@0001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 0102@04>@0001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 0112@04>@0001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 0122@04>@0001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 0132@04>@0001 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 0142@04>@0001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 0152@04>@0001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 0162@04>@0001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 0172@04>@0001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 0182@04>@0001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 0192@04>@0001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 0202@04>@0001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 0212@04>@0001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 0222@04>@0001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 0232@04>@0001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 0242@04>@0001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 0252@04>@0001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 0262@04>@0001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 0272@04>@0001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 0282@04>@0001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 0292@04>@0001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 0302@04>@0001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 0312@04>@0001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 0322@04>@0001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 0332@04>@0001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 0342@04>@0001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 0352@04>@0001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 0362@04>@0001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 0372@04>@0001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 0382@04>@0001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 0392@04>@0001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 0402@04>@0001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 0412@04>@0001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 0422@04>@0001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 0432@04>@0001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 0442@04>@00 ESC#________________________________________________________________________________________________________________ +4f =01 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 0002@04>@0201 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 0012@06>@0001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 0072@04>@0001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 0082@04>@0001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 0092@04>@0001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 0102@04>@0001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 0112@04>@0001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 0122@04>@0001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 0132@04>@0001 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 0142@04>@0001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 0152@04>@0001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 0162@04>@0001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 0172@04>@0001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 0182@04>@0001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 0192@04>@0001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 0202@04>@0001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 0212@04>@0001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 0222@04>@0001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 0232@04>@0001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 0242@04>@0001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 0252@04>@0001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 0262@04>@0001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 0272@04>@0001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 0282@04>@0001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 0292@04>@0001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 0302@04>@0001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 0312@04>@0001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 0322@04>@0001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 0332@04>@0001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 0342@04>@0001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 0352@04>@0001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 0362@04>@0001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 0372@04>@0001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 0382@04>@0001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 0392@04>@0001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 0402@04>@0001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 0412@04>@0001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 0422@04>@0001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 0432@04>@0001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 0442@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120@06>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320@04>@001 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420@04>@00:#___________________________________________________________________________________________________________________ +1b =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120@06>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320@04>@001 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420@04>@00 ESC#________________________________________________________________________________________________________________ +4f =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120@06>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320@04>@001 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 = 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 @04>@02 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 @06>@00 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 @04>@00 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 @04>@00 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 @04>@00 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 @04>@00 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 @04>@00 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 @04>@00 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320 @04>@00 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420 @04>@00 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520 @04>@00 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620 @04>@00 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720 @04>@00 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 @04>@00 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 @04>@00 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 @04>@00 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 @04>@00 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 @04>@00 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 @04>@00 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 @04>@00 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 @04>@00 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 @04>@00 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 @04>@00 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 @04>@00 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 @04>@00 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 @04>@00 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 @04>@00 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 @04>@00 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 @04>@00 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 @04>@00 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 @04>@00 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 @04>@00 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 @04>@00 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 @04>@00 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 @04>@00 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020 @04>@00 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120 @04>@00 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220 @04>@00 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320 @04>@00 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420 @04>@00:#___________________________________________________________________________________________________________________ +1b = 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 @04>@02 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 @06>@00 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 @04>@00 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 @04>@00 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 @04>@00 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 @04>@00 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 @04>@00 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 @04>@00 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320 @04>@00 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420 @04>@00 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520 @04>@00 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620 @04>@00 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720 @04>@00 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 @04>@00 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 @04>@00 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 @04>@00 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 @04>@00 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 @04>@00 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 @04>@00 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 @04>@00 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 @04>@00 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 @04>@00 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 @04>@00 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 @04>@00 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 @04>@00 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 @04>@00 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 @04>@00 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 @04>@00 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 @04>@00 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 @04>@00 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 @04>@00 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 @04>@00 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 @04>@00 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 @04>@00 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 @04>@00 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020 @04>@00 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120 @04>@00 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220 @04>@00 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320 @04>@00 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420 @04>@00 ESC#________________________________________________________________________________________________________________ +4f = 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 @04>@02 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 @06>@00 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 @04>@00 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 @04>@00 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 @04>@00 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 @04>@00 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 @04>@00 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 @04>@00 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320 @04>@00 01402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420 @04>@00 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520 @04>@00 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620 @04>@00 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720 @04>@00 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 @04>@00 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 @04>@00 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 @04>@00 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 @04>@00 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 @04>@00 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 @04>@00 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 @04>@00 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 @04>@00 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 @04>@00 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 @04>@00 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 @04>@00 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 @04>@00 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 @04>@00 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 @04>@00 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 @04>@00 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 @04>@00 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 @04>@00 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 @04>@00 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 @04>@00 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 @04>@00 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 @04>@00 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 @04>@00 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020 @04>@00 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120 @04>@00 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220 @04>@00 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320 @04>@00 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420 @04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 0@04>@0200102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 0@06>@0000702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 0@04>@0000802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 0@04>@0000902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 0@04>@0001002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 0@04>@0001102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 0@04>@0001202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 0@04>@0001302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320 0@04>@0001402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420 0@04>@0001502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520 0@04>@0001602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620 0@04>@0001702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720 0@04>@0001802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 0@04>@0001902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 0@04>@0002002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 0@04>@0002102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 0@04>@0002202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 0@04>@0002302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 0@04>@0002402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 0@04>@0002502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 0@04>@0002602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 0@04>@0002702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 0@04>@0002802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 0@04>@0002902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 0@04>@0003002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 0@04>@0003102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 0@04>@0003202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 0@04>@0003302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 0@04>@0003402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 0@04>@0003502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 0@04>@0003602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 0@04>@0003702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 0@04>@0003802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 0@04>@0003902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 0@04>@0004002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020 0@04>@0004102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120 0@04>@0004202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220 0@04>@0004302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320 0@04>@0004402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 0@04>@0200102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 0@06>@0000702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 0@04>@0000802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 0@04>@0000902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 0@04>@0001002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 0@04>@0001102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 0@04>@0001202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 0@04>@0001302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320 0@04>@0001402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420 0@04>@0001502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520 0@04>@0001602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620 0@04>@0001702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720 0@04>@0001802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 0@04>@0001902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 0@04>@0002002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 0@04>@0002102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 0@04>@0002202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 0@04>@0002302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 0@04>@0002402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 0@04>@0002502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 0@04>@0002602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 0@04>@0002702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 0@04>@0002802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 0@04>@0002902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 0@04>@0003002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 0@04>@0003102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 0@04>@0003202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 0@04>@0003302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 0@04>@0003402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 0@04>@0003502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 0@04>@0003602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 0@04>@0003702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 0@04>@0003802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 0@04>@0003902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 0@04>@0004002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020 0@04>@0004102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120 0@04>@0004202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220 0@04>@0004302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320 0@04>@0004402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 0@04>@0200102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 0@06>@0000702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 0@04>@0000802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 0@04>@0000902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 0@04>@0001002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 0@04>@0001102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 0@04>@0001202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 0@04>@0001302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320 0@04>@0001402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420 0@04>@0001502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520 0@04>@0001602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620 0@04>@0001702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720 0@04>@0001802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 0@04>@0001902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 0@04>@0002002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 0@04>@0002102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 0@04>@0002202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 0@04>@0002302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 0@04>@0002402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 0@04>@0002502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 0@04>@0002602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 0@04>@0002702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 0@04>@0002802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 0@04>@0002902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 0@04>@0003002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 0@04>@0003102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 0@04>@0003202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 0@04>@0003302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 0@04>@0003402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 0@04>@0003502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 0@04>@0003602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 0@04>@0003702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 0@04>@0003802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 0@04>@0003902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 0@04>@0004002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020 0@04>@0004102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120 0@04>@0004202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220 0@04>@0004302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320 0@04>@0004402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =0002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00@04>@020102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 00@06>@000702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00@04>@000802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00@04>@000902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 00@04>@001002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 01@04>@001102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 01@04>@001202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 01@04>@001302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320 01@04>@001402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420 01@04>@001502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520 01@04>@001602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620 01@04>@001702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720 01@04>@001802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 01@04>@001902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 01@04>@002002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 02@04>@002102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 02@04>@002202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 02@04>@002302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 02@04>@002402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 02@04>@002502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 02@04>@002602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02@04>@002702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02@04>@002802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02@04>@002902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02@04>@003002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03@04>@003102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03@04>@003202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03@04>@003302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03@04>@003402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03@04>@003502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03@04>@003602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03@04>@003702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03@04>@003802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03@04>@003902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03@04>@004002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020 04@04>@004102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120 04@04>@004202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220 04@04>@004302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320 04@04>@004402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420 04@04>@00:#___________________________________________________________________________________________________________________ +1b =0002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00@04>@020102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 00@06>@000702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00@04>@000802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00@04>@000902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 00@04>@001002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 01@04>@001102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 01@04>@001202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 01@04>@001302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320 01@04>@001402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420 01@04>@001502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520 01@04>@001602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620 01@04>@001702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720 01@04>@001802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 01@04>@001902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 01@04>@002002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 02@04>@002102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 02@04>@002202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 02@04>@002302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 02@04>@002402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 02@04>@002502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 02@04>@002602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02@04>@002702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02@04>@002802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02@04>@002902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02@04>@003002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03@04>@003102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03@04>@003202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03@04>@003302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03@04>@003402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03@04>@003502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03@04>@003602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03@04>@003702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03@04>@003802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03@04>@003902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03@04>@004002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020 04@04>@004102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120 04@04>@004202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220 04@04>@004302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320 04@04>@004402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420 04@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00@04>@020102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 00@06>@000702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00@04>@000802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00@04>@000902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 00@04>@001002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 01@04>@001102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 01@04>@001202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 01@04>@001302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320 01@04>@001402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420 01@04>@001502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520 01@04>@001602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620 01@04>@001702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720 01@04>@001802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 01@04>@001902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 01@04>@002002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 02@04>@002102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 02@04>@002202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 02@04>@002302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 02@04>@002402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 02@04>@002502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 02@04>@002602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02@04>@002702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02@04>@002802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02@04>@002902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02@04>@003002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03@04>@003102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03@04>@003202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03@04>@003302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03@04>@003402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03@04>@003502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03@04>@003602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03@04>@003702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03@04>@003802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03@04>@003902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03@04>@004002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020 04@04>@004102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120 04@04>@004202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220 04@04>@004302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320 04@04>@004402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420 04@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 000@04>@02102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 001@06>@00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@04>@00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 009@04>@00002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 010@04>@00102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 011@04>@00202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 012@04>@00302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320 013@04>@00402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420 014@04>@00502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520 015@04>@00602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620 016@04>@00702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720 017@04>@00802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 018@04>@00902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 019@04>@00002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 020@04>@00102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 021@04>@00202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@00302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@00402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@00502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@00602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@00702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@00802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@00902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@00002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@00102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@00202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@00302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@00402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@00502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@00602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@00702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@00802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@00902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>@00002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020 040@04>@00102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120 041@04>@00202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220 042@04>@00302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320 043@04>@00402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420 044@04>@00:#___________________________________________________________________________________________________________________ +2f =002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 000@04>@02102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 001@06>@00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@04>@00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 009@04>@00002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 010@04>@00102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 011@04>@00202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 012@04>@00302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320 013@04>@00402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420 014@04>@00502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520 015@04>@00602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620 016@04>@00702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720 017@04>@00802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 018@04>@00902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 019@04>@00002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 020@04>@00102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 021@04>@00202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@00302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@00402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@00502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@00602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@00702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@00802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@00902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@00002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@00102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@00202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@00302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@00402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@00502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@00602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@00702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@00802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@00902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>@00002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020 040@04>@00102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120 041@04>@00202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220 042@04>@00302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320 043@04>@00402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420 044@04>@00/#___________________________________________________________________________________________________________________ +31 =002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 000@04>@02102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 001@06>@00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@04>@00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 009@04>@00002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 010@04>@00102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 011@04>@00202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 012@04>@00302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320 013@04>@00402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420 014@04>@00502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520 015@04>@00602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620 016@04>@00702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720 017@04>@00802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 018@04>@00902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 019@04>@00002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 020@04>@00102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 021@04>@00202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@00302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@00402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@00502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@00602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@00702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@00802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@00902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@00002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@00102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@00202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@00302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@00402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@00502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@00602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@00702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@00802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@00902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>@00002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020 040@04>@00102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120 041@04>@00202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220 042@04>@00302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320 043@04>@00402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420 044@04>@00/1#__________________________________________________________________________________________________________________ +34 =002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 000@04>@02102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 00114 00115 00116 00117 00118 00119 00120 001@06>@00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@04>@00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 00914 00915 00916 00917 00918 00919 00920 009@04>@00002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 01014 01015 01016 01017 01018 01019 01020 010@04>@00102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 01114 01115 01116 01117 01118 01119 01120 011@04>@00202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 01214 01215 01216 01217 01218 01219 01220 012@04>@00302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 01314 01315 01316 01317 01318 01319 01320 013@04>@00402 01403 01404 01405 01406 01407 01408 01409 01410 01411 01412 01413 01414 01415 01416 01417 01418 01419 01420 014@04>@00502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 01514 01515 01516 01517 01518 01519 01520 015@04>@00602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 01614 01615 01616 01617 01618 01619 01620 016@04>@00702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 01714 01715 01716 01717 01718 01719 01720 017@04>@00802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 018@04>@00902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 019@04>@00002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 020@04>@00102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 021@04>@00202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@00302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@00402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@00502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@00602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@00702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@00802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@00902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@00002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@00102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@00202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@00302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@00402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@00502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@00602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@00702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@00802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@00902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>@00002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 04014 04015 04016 04017 04018 04019 04020 040@04>@00102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 04114 04115 04116 04117 04118 04119 04120 041@04>@00202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 04214 04215 04216 04217 04218 04219 04220 042@04>@00302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 04314 04315 04316 04317 04318 04319 04320 043@04>@00402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 04414 04415 04416 04417 04418 04419 04420 044@04>@00/14#_________________________________________________________________________________________________________________ +a =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =0000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00@04>@020100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00@06>@000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00@04>@000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00@04>@000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00@04>@000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00@04>@000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00@04>@001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01@04>@001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01@04>@001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01@04>@001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01@04>14@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@041>@001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01@04>@001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01@04>@001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01@04>@001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01@04>@001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01@04>@002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02@04>@002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02@04>@002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02@04>@002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02@04>@002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02@04>@002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02@04>@002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02@04>@002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02@04>@002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02@04>@002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02@04>@003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03@04>@003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03@04>@003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03@04>@003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03@04>@003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03@04>@003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03@04>@003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03@04>@003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03@04>@003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03@04>@003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03@04>@004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04@04>@004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04@04>@004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04@04>@00:#___________________________________________________________________________________________________________________ +1b =0000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00@04>@020100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00@06>@000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00@04>@000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00@04>@000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00@04>@000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00@04>@000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00@04>@001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01@04>@001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01@04>@001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01@04>@001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01@04>14@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@041>@001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01@04>@001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01@04>@001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01@04>@001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01@04>@001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01@04>@002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02@04>@002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02@04>@002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02@04>@002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02@04>@002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02@04>@002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02@04>@002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02@04>@002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02@04>@002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02@04>@002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02@04>@003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03@04>@003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03@04>@003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03@04>@003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03@04>@003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03@04>@003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03@04>@003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03@04>@003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03@04>@003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03@04>@003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03@04>@004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04@04>@004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04@04>@004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00@04>@020100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00@06>@000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00@04>@000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00@04>@000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00@04>@000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00@04>@000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00@04>@001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01@04>@001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01@04>@001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01@04>@001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01@04>14@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@041>@001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01@04>@001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01@04>@001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01@04>@001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01@04>@001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01@04>@002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02@04>@002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02@04>@002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02@04>@002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02@04>@002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02@04>@002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02@04>@002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02@04>@002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02@04>@002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02@04>@002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02@04>@003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03@04>@003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03@04>@003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03@04>@003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03@04>@003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03@04>@003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03@04>@003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03@04>@003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03@04>@003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03@04>@003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03@04>@004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04@04>@004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04@04>@004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 000@04>@02100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 001@06>@00500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 005@04>@00600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 006@04>@00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 007@04>@00800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 008@04>@00900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 009@04>@00000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 010@04>@00100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 011@04>@00200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 012@04>@00300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 013@04>4@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414>@00500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 015@04>@00600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 016@04>@00700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 017@04>@00800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 018@04>@00900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 019@04>@00000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 020@04>@00100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 021@04>@00200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 022@04>@00300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 023@04>@00400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 024@04>@00500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 025@04>@00600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 026@04>@00700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 027@04>@00800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 028@04>@00900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 029@04>@00000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 030@04>@00100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 031@04>@00200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 032@04>@00300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 033@04>@00400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 034@04>@00500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 035@04>@00600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 036@04>@00700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 037@04>@00800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 038@04>@00900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 039@04>@00000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 040@04>@00100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 041@04>@00200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 042@04>@00:#___________________________________________________________________________________________________________________ +1b =000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 000@04>@02100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 001@06>@00500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 005@04>@00600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 006@04>@00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 007@04>@00800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 008@04>@00900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 009@04>@00000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 010@04>@00100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 011@04>@00200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 012@04>@00300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 013@04>4@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414>@00500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 015@04>@00600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 016@04>@00700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 017@04>@00800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 018@04>@00900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 019@04>@00000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 020@04>@00100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 021@04>@00200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 022@04>@00300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 023@04>@00400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 024@04>@00500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 025@04>@00600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 026@04>@00700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 027@04>@00800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 028@04>@00900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 029@04>@00000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 030@04>@00100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 031@04>@00200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 032@04>@00300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 033@04>@00400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 034@04>@00500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 035@04>@00600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 036@04>@00700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 037@04>@00800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 038@04>@00900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 039@04>@00000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 040@04>@00100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 041@04>@00200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 042@04>@00 ESC#________________________________________________________________________________________________________________ +4f =000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 000@04>@02100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 001@06>@00500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 005@04>@00600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 006@04>@00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 007@04>@00800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 008@04>@00900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 009@04>@00000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 010@04>@00100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 011@04>@00200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 012@04>@00300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 013@04>4@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414>@00500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 015@04>@00600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 016@04>@00700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 017@04>@00800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 018@04>@00900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 019@04>@00000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 020@04>@00100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 021@04>@00200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 022@04>@00300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 023@04>@00400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 024@04>@00500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 025@04>@00600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 026@04>@00700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 027@04>@00800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 028@04>@00900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 029@04>@00000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 030@04>@00100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 031@04>@00200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 032@04>@00300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 033@04>@00400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 034@04>@00500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 035@04>@00600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 036@04>@00700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 037@04>@00800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 038@04>@00900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 039@04>@00000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 040@04>@00100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 041@04>@00200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 042@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0001@04>@0200 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0011@06>@0000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0051@04>@0000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0061@04>@0000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0071@04>@0000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0081@04>@0000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0091@04>@0000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0101@04>@0000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0111@04>@0000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0121@04>@0000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0131@04>@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@001@04>@0000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0151@04>@0000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0161@04>@0000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0171@04>@0000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0181@04>@0000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0191@04>@0000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0201@04>@0000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0211@04>@0000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0221@04>@0000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0231@04>@0000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0241@04>@0000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0251@04>@0000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0261@04>@0000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0271@04>@0000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0281@04>@0000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0291@04>@0000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0301@04>@0000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0311@04>@0000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0321@04>@0000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0331@04>@0000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0341@04>@0000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0351@04>@0000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0361@04>@0000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0371@04>@0000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0381@04>@0000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0391@04>@0000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0401@04>@0000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0411@04>@0000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0421@04>@00:#___________________________________________________________________________________________________________________ +1b =00 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0001@04>@0200 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0011@06>@0000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0051@04>@0000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0061@04>@0000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0071@04>@0000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0081@04>@0000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0091@04>@0000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0101@04>@0000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0111@04>@0000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0121@04>@0000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0131@04>@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@001@04>@0000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0151@04>@0000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0161@04>@0000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0171@04>@0000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0181@04>@0000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0191@04>@0000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0201@04>@0000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0211@04>@0000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0221@04>@0000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0231@04>@0000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0241@04>@0000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0251@04>@0000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0261@04>@0000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0271@04>@0000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0281@04>@0000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0291@04>@0000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0301@04>@0000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0311@04>@0000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0321@04>@0000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0331@04>@0000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0341@04>@0000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0351@04>@0000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0361@04>@0000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0371@04>@0000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0381@04>@0000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0391@04>@0000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0401@04>@0000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0411@04>@0000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0421@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0001@04>@0200 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0011@06>@0000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0051@04>@0000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0061@04>@0000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0071@04>@0000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0081@04>@0000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0091@04>@0000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0101@04>@0000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0111@04>@0000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0121@04>@0000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0131@04>@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@001@04>@0000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0151@04>@0000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0161@04>@0000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0171@04>@0000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0181@04>@0000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0191@04>@0000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0201@04>@0000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0211@04>@0000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0221@04>@0000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0231@04>@0000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0241@04>@0000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0251@04>@0000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0261@04>@0000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0271@04>@0000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0281@04>@0000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0291@04>@0000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0301@04>@0000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0311@04>@0000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0321@04>@0000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0331@04>@0000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0341@04>@0000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0351@04>@0000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0361@04>@0000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0371@04>@0000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0381@04>@0000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0391@04>@0000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0401@04>@0000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0411@04>@0000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0421@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519@04>@000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619@04>@000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719@04>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@00:#___________________________________________________________________________________________________________________ +1b =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519@04>@000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619@04>@000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719@04>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519@04>@000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619@04>@000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719@04>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619@04>@000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719@04>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@00:#___________________________________________________________________________________________________________________ +1b =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619@04>@000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719@04>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619@04>@000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719@04>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719@04>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@00:#___________________________________________________________________________________________________________________ +1b =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719@04>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719@04>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@00:#___________________________________________________________________________________________________________________ +1b =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@00:#___________________________________________________________________________________________________________________ +1b =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@000 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@00:#___________________________________________________________________________________________________________________ +1b =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@000 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@000 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@000 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@000 04801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819@04>@00:#___________________________________________________________________________________________________________________ +1b =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@000 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@000 04801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@000 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@000 04801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@000 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@000 04801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819@04>@000 04901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919@04>@00:#___________________________________________________________________________________________________________________ +1b =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@000 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@000 04801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819@04>@000 04901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@000 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@000 04801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819@04>@000 04901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@000 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@000 04801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819@04>@000 04901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919@04>@000 05001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019@04>@00:#___________________________________________________________________________________________________________________ +1b =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@000 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@000 04801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819@04>@000 04901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919@04>@000 05001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@000 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@000 04801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819@04>@000 04901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919@04>@000 05001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@000 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@000 04801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819@04>@000 04901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919@04>@000 05001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019@04>@000 05101 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119@04>@00:#___________________________________________________________________________________________________________________ +1b =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@000 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@000 04801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819@04>@000 04901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919@04>@000 05001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019@04>@000 05101 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@000 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@000 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@000 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@000 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@000 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@000 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@000 04801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819@04>@000 04901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919@04>@000 05001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019@04>@000 05101 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 = 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 @04>@02 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 @06>@00 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 @04>@00 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 @04>@00 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 @04>@00 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 @04>@00 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 @04>@00 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 @04>@00 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 @04>@00 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 @04>@00 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 @04>@00 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 @04>@00 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 @04>@00 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 @04>@00 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 @04>@00 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 @04>@00 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 @04>@00 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 @04>@00 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 @04>@00 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 @04>@00 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 @04>@00 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 @04>@00 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 @04>@00 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 @04>@00 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 @04>@00 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 @04>@00 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 @04>@00 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 @04>@00 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 @04>@00 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 @04>@00 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 @04>@00 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 @04>@00 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 @04>@00 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 @04>@00 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 @04>@00 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 @04>@00 04801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 @04>@00 04901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 @04>@00 05001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 @04>@00 05101 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 @04>@00:#___________________________________________________________________________________________________________________ +1b = 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 @04>@02 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 @06>@00 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 @04>@00 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 @04>@00 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 @04>@00 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 @04>@00 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 @04>@00 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 @04>@00 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 @04>@00 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 @04>@00 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 @04>@00 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 @04>@00 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 @04>@00 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 @04>@00 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 @04>@00 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 @04>@00 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 @04>@00 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 @04>@00 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 @04>@00 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 @04>@00 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 @04>@00 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 @04>@00 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 @04>@00 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 @04>@00 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 @04>@00 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 @04>@00 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 @04>@00 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 @04>@00 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 @04>@00 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 @04>@00 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 @04>@00 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 @04>@00 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 @04>@00 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 @04>@00 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 @04>@00 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 @04>@00 04801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 @04>@00 04901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 @04>@00 05001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 @04>@00 05101 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 @04>@00 ESC#________________________________________________________________________________________________________________ +4f = 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 @04>@02 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 @06>@00 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 @04>@00 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 @04>@00 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 @04>@00 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 @04>@00 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 @04>@00 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 @04>@00 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 @04>@00 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 @04>@00 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 @04>@00 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 @04>@00 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 @04>@00 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 @04>@00 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 @04>@00 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 @04>@00 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 @04>@00 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 @04>@00 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 @04>@00 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 @04>@00 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 @04>@00 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 @04>@00 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 @04>@00 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 @04>@00 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 @04>@00 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 @04>@00 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 @04>@00 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 @04>@00 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 @04>@00 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 @04>@00 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 @04>@00 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 @04>@00 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 @04>@00 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 @04>@00 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 @04>@00 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 @04>@00 04801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 @04>@00 04901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 @04>@00 05001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 @04>@00 05101 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 @04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 0@04>@0200101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 0@06>@000@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@04>@0001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0@04>@0001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0@04>@0001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0@04>@0001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0@04>@0001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0@04>@0002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0@04>@0002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0@04>@0002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0@04>@0002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0@04>@0002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0@04>@0002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0@04>@0002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0@04>@0002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0@04>@0002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0@04>@0002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0@04>@0003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0@04>@0003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0@04>@0003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0@04>@0003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0@04>@0003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0@04>@0003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0@04>@0003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0@04>@0003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0@04>@0003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0@04>@0003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0@04>@0004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0@04>@0004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0@04>@0004201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 0@04>@0004301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 0@04>@0004401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 0@04>@0004501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 0@04>@0004601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 0@04>@0004701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 0@04>@0004801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 0@04>@0004901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 0@04>@0005001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 0@04>@0005101 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 0@04>@0200101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 0@06>@000@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@04>@0001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0@04>@0001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0@04>@0001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0@04>@0001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0@04>@0001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0@04>@0002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0@04>@0002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0@04>@0002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0@04>@0002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0@04>@0002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0@04>@0002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0@04>@0002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0@04>@0002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0@04>@0002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0@04>@0002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0@04>@0003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0@04>@0003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0@04>@0003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0@04>@0003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0@04>@0003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0@04>@0003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0@04>@0003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0@04>@0003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0@04>@0003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0@04>@0003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0@04>@0004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0@04>@0004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0@04>@0004201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 0@04>@0004301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 0@04>@0004401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 0@04>@0004501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 0@04>@0004601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 0@04>@0004701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 0@04>@0004801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 0@04>@0004901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 0@04>@0005001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 0@04>@0005101 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 0@04>@0200101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 0@06>@000@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@04>@0001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0@04>@0001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0@04>@0001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0@04>@0001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0@04>@0001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0@04>@0002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0@04>@0002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0@04>@0002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0@04>@0002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0@04>@0002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0@04>@0002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0@04>@0002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0@04>@0002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0@04>@0002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0@04>@0002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0@04>@0003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0@04>@0003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0@04>@0003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0@04>@0003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0@04>@0003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0@04>@0003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0@04>@0003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0@04>@0003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0@04>@0003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0@04>@0003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0@04>@0004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0@04>@0004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0@04>@0004201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 0@04>@0004301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 0@04>@0004401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 0@04>@0004501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 0@04>@0004601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 0@04>@0004701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 0@04>@0004801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 0@04>@0004901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 0@04>@0005001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 0@04>@0005101 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =0001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00@04>@020101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00@06>@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@041>@001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01@04>@001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01@04>@001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01@04>@001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01@04>@001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01@04>@002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02@04>@002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02@04>@002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02@04>@002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02@04>@002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02@04>@002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02@04>@002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02@04>@002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02@04>@002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02@04>@002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02@04>@003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03@04>@003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03@04>@003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03@04>@003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03@04>@003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03@04>@003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03@04>@003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03@04>@003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03@04>@003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03@04>@003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03@04>@004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04@04>@004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04@04>@004201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04@04>@004301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04@04>@004401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04@04>@004501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04@04>@004601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04@04>@004701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04@04>@004801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04@04>@004901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04@04>@005001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05@04>@005101 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05@04>@00:#___________________________________________________________________________________________________________________ +1b =0001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00@04>@020101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00@06>@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@041>@001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01@04>@001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01@04>@001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01@04>@001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01@04>@001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01@04>@002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02@04>@002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02@04>@002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02@04>@002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02@04>@002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02@04>@002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02@04>@002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02@04>@002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02@04>@002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02@04>@002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02@04>@003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03@04>@003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03@04>@003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03@04>@003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03@04>@003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03@04>@003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03@04>@003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03@04>@003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03@04>@003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03@04>@003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03@04>@004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04@04>@004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04@04>@004201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04@04>@004301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04@04>@004401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04@04>@004501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04@04>@004601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04@04>@004701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04@04>@004801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04@04>@004901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04@04>@005001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05@04>@005101 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00@04>@020101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00@06>@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@041>@001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01@04>@001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01@04>@001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01@04>@001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01@04>@001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01@04>@002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02@04>@002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02@04>@002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02@04>@002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02@04>@002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02@04>@002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02@04>@002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02@04>@002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02@04>@002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02@04>@002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02@04>@003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03@04>@003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03@04>@003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03@04>@003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03@04>@003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03@04>@003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03@04>@003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03@04>@003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03@04>@003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03@04>@003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03@04>@004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04@04>@004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04@04>@004201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04@04>@004301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04@04>@004401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04@04>@004501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04@04>@004601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04@04>@004701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04@04>@004801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04@04>@004901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04@04>@005001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05@04>@005101 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 000@04>@02101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 001@06>@044@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414>@00501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 015@04>@00601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 016@04>@00701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 017@04>@00801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 018@04>@00901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 019@04>@00001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 020@04>@00101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 021@04>@00201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 022@04>@00301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 023@04>@00401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 024@04>@00501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 025@04>@00601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 026@04>@00701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 027@04>@00801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 028@04>@00901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 029@04>@00001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 030@04>@00101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 031@04>@00201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 032@04>@00301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 033@04>@00401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 034@04>@00501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 035@04>@00601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 036@04>@00701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 037@04>@00801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 038@04>@00901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 039@04>@00001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 040@04>@00101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 041@04>@00201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 042@04>@00301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 043@04>@00401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 044@04>@00501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 045@04>@00601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 046@04>@00701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 047@04>@00801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 048@04>@00901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 049@04>@00001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 050@04>@00101 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 051@04>@00:#___________________________________________________________________________________________________________________ +1b =001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 000@04>@02101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 001@06>@044@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414>@00501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 015@04>@00601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 016@04>@00701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 017@04>@00801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 018@04>@00901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 019@04>@00001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 020@04>@00101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 021@04>@00201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 022@04>@00301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 023@04>@00401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 024@04>@00501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 025@04>@00601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 026@04>@00701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 027@04>@00801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 028@04>@00901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 029@04>@00001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 030@04>@00101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 031@04>@00201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 032@04>@00301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 033@04>@00401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 034@04>@00501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 035@04>@00601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 036@04>@00701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 037@04>@00801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 038@04>@00901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 039@04>@00001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 040@04>@00101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 041@04>@00201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 042@04>@00301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 043@04>@00401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 044@04>@00501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 045@04>@00601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 046@04>@00701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 047@04>@00801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 048@04>@00901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 049@04>@00001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 050@04>@00101 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 051@04>@00 ESC#________________________________________________________________________________________________________________ +4f =001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 000@04>@02101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 001@06>@044@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414>@00501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 015@04>@00601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 016@04>@00701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 017@04>@00801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 018@04>@00901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 019@04>@00001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 020@04>@00101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 021@04>@00201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 022@04>@00301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 023@04>@00401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 024@04>@00501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 025@04>@00601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 026@04>@00701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 027@04>@00801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 028@04>@00901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 029@04>@00001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 030@04>@00101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 031@04>@00201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 032@04>@00301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 033@04>@00401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 034@04>@00501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 035@04>@00601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 036@04>@00701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 037@04>@00801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 038@04>@00901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 039@04>@00001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 040@04>@00101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 041@04>@00201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 042@04>@00301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 043@04>@00401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 044@04>@00501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 045@04>@00601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 046@04>@00701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 047@04>@00801 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 048@04>@00901 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 049@04>@00001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 050@04>@00101 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 051@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =01 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 0002@04>@0201 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 0012@06>@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@002@04>@0001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0152@04>@0001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0162@04>@0001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0172@04>@0001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0182@04>@0001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0192@04>@0001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0202@04>@0001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0212@04>@0001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0222@04>@0001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0232@04>@0001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0242@04>@0001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0252@04>@0001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0262@04>@0001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0272@04>@0001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0282@04>@0001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0292@04>@0001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0302@04>@0001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0312@04>@0001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0322@04>@0001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0332@04>@0001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0342@04>@0001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0352@04>@0001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0362@04>@0001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0372@04>@0001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0382@04>@0001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0392@04>@0001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0402@04>@0001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0412@04>@0001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 0422@04>@0001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 0432@04>@0001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 0442@04>@0001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 0452@04>@0001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 0462@04>@0001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 0472@04>@0001 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 0482@04>@0001 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 0492@04>@0001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 0502@04>@0001 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 0512@04>@00:#___________________________________________________________________________________________________________________ +1b =01 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 0002@04>@0201 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 0012@06>@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@002@04>@0001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0152@04>@0001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0162@04>@0001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0172@04>@0001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0182@04>@0001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0192@04>@0001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0202@04>@0001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0212@04>@0001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0222@04>@0001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0232@04>@0001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0242@04>@0001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0252@04>@0001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0262@04>@0001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0272@04>@0001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0282@04>@0001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0292@04>@0001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0302@04>@0001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0312@04>@0001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0322@04>@0001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0332@04>@0001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0342@04>@0001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0352@04>@0001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0362@04>@0001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0372@04>@0001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0382@04>@0001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0392@04>@0001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0402@04>@0001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0412@04>@0001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 0422@04>@0001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 0432@04>@0001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 0442@04>@0001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 0452@04>@0001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 0462@04>@0001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 0472@04>@0001 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 0482@04>@0001 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 0492@04>@0001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 0502@04>@0001 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 0512@04>@00 ESC#________________________________________________________________________________________________________________ +4f =01 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 0002@04>@0201 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 0012@06>@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@002@04>@0001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0152@04>@0001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0162@04>@0001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0172@04>@0001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0182@04>@0001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0192@04>@0001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0202@04>@0001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0212@04>@0001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0222@04>@0001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0232@04>@0001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0242@04>@0001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0252@04>@0001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0262@04>@0001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0272@04>@0001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0282@04>@0001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0292@04>@0001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0302@04>@0001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0312@04>@0001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0322@04>@0001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0332@04>@0001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0342@04>@0001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0352@04>@0001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0362@04>@0001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0372@04>@0001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0382@04>@0001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0392@04>@0001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0402@04>@0001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0412@04>@0001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 0422@04>@0001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 0432@04>@0001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 0442@04>@0001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 0452@04>@0001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 0462@04>@0001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 0472@04>@0001 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 0482@04>@0001 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 0492@04>@0001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 0502@04>@0001 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 0512@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@001 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820@04>@001 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920@04>@001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020@04>@001 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120@04>@00:#___________________________________________________________________________________________________________________ +1b =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@001 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820@04>@001 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920@04>@001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020@04>@001 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120@04>@00 ESC#________________________________________________________________________________________________________________ +4f =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@001 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820@04>@001 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920@04>@001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020@04>@001 05102 05103 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120@04>@00 ESCO#_______________________________________________________________________________________________________________ +41 =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@001 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820@04>@001 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920@04>@001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020@04>@00:#___________________________________________________________________________________________________________________ +1b =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@001 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820@04>@001 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920@04>@001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020@04>@00 ESC#________________________________________________________________________________________________________________ +4f =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@001 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820@04>@001 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920@04>@001 05002 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020@04>@00 ESCO#_______________________________________________________________________________________________________________ +41 =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@001 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820@04>@001 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920@04>@00:#___________________________________________________________________________________________________________________ +1b =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@001 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820@04>@001 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920@04>@00 ESC#________________________________________________________________________________________________________________ +4f =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@001 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820@04>@001 04902 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920@04>@00 ESCO#_______________________________________________________________________________________________________________ +41 =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@001 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820@04>@00:#___________________________________________________________________________________________________________________ +1b =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@001 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820@04>@00 ESC#________________________________________________________________________________________________________________ +4f =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@001 04802 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820@04>@00 ESCO#_______________________________________________________________________________________________________________ +41 =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@00:#___________________________________________________________________________________________________________________ +1b =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@00 ESC#________________________________________________________________________________________________________________ +4f =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@001 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@00 ESCO#_______________________________________________________________________________________________________________ +41 =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@00:#___________________________________________________________________________________________________________________ +1b =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@00 ESC#________________________________________________________________________________________________________________ +4f =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@001 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@00 ESCO#_______________________________________________________________________________________________________________ +41 =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@00:#___________________________________________________________________________________________________________________ +1b =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@00 ESC#________________________________________________________________________________________________________________ +4f =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@001 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@00 ESCO#_______________________________________________________________________________________________________________ +41 =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@00:#___________________________________________________________________________________________________________________ +1b =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@00 ESC#________________________________________________________________________________________________________________ +4f =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@001 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@00 ESCO#_______________________________________________________________________________________________________________ +41 =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 00620@04>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@00:#___________________________________________________________________________________________________________________ +1b =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 00620@04>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@00 ESC#________________________________________________________________________________________________________________ +4f =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 00620@04>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@001 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@00 ESCO#_______________________________________________________________________________________________________________ +41 =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 00520@04>@001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 00620@04>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@00:#___________________________________________________________________________________________________________________ +1b =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 00520@04>@001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 00620@04>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@00 ESC#________________________________________________________________________________________________________________ +4f =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 00520@04>@001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 00620@04>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@001 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@00 ESCO#_______________________________________________________________________________________________________________ +41 =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 00420@04>@001 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 00520@04>@001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 00620@04>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@00:#___________________________________________________________________________________________________________________ +1b =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 00420@04>@001 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 00520@04>@001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 00620@04>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@00 ESC#________________________________________________________________________________________________________________ +4f =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 00420@04>@001 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 00520@04>@001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 00620@04>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =01 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 0002@04>@0201 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 0012@06>@0001 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 0042@04>@0001 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 0052@04>@0001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 0062@04>@0001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 0072@04>@0001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 0082@04>@0001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 0092@04>@0001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 0102@04>@0001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 0112@04>@0001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 0122@04>@0001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 0132@04>@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@002@04>@0001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0152@04>@0001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0162@04>@0001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0172@04>@0001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0182@04>@0001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0192@04>@0001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0202@04>@0001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0212@04>@0001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0222@04>@0001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0232@04>@0001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0242@04>@0001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0252@04>@0001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0262@04>@0001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0272@04>@0001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0282@04>@0001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0292@04>@0001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0302@04>@0001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0312@04>@0001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0322@04>@0001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0332@04>@0001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0342@04>@0001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0352@04>@0001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0362@04>@0001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0372@04>@0001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0382@04>@0001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0392@04>@0001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0402@04>@0001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0412@04>@00:#___________________________________________________________________________________________________________________ +1b =01 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 0002@04>@0201 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 0012@06>@0001 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 0042@04>@0001 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 0052@04>@0001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 0062@04>@0001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 0072@04>@0001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 0082@04>@0001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 0092@04>@0001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 0102@04>@0001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 0112@04>@0001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 0122@04>@0001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 0132@04>@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@002@04>@0001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0152@04>@0001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0162@04>@0001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0172@04>@0001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0182@04>@0001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0192@04>@0001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0202@04>@0001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0212@04>@0001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0222@04>@0001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0232@04>@0001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0242@04>@0001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0252@04>@0001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0262@04>@0001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0272@04>@0001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0282@04>@0001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0292@04>@0001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0302@04>@0001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0312@04>@0001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0322@04>@0001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0332@04>@0001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0342@04>@0001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0352@04>@0001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0362@04>@0001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0372@04>@0001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0382@04>@0001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0392@04>@0001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0402@04>@0001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0412@04>@00 ESC#________________________________________________________________________________________________________________ +4f =01 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 0002@04>@0201 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 0012@06>@0001 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 0042@04>@0001 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 0052@04>@0001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 0062@04>@0001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 0072@04>@0001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 0082@04>@0001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 0092@04>@0001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 0102@04>@0001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 0112@04>@0001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 0122@04>@0001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 0132@04>@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@002@04>@0001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0152@04>@0001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0162@04>@0001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0172@04>@0001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0182@04>@0001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0192@04>@0001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0202@04>@0001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0212@04>@0001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0222@04>@0001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0232@04>@0001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0242@04>@0001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0252@04>@0001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0262@04>@0001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0272@04>@0001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0282@04>@0001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0292@04>@0001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0302@04>@0001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0312@04>@0001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0322@04>@0001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0332@04>@0001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0342@04>@0001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0352@04>@0001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0362@04>@0001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0372@04>@0001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0382@04>@0001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0392@04>@0001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0402@04>@0001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0412@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 00420@04>@001 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 00520@04>@001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 00620@04>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@00:#___________________________________________________________________________________________________________________ +1b =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 00420@04>@001 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 00520@04>@001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 00620@04>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@00 ESC#________________________________________________________________________________________________________________ +4f =1 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00020@04>@021 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00120@06>@001 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 00420@04>@001 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 00520@04>@001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 00620@04>@001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00820@04>@001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00920@04>@001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =01 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 0002@04>@0201 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 0012@06>@0001 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 0042@04>@0001 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 0052@04>@0001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 0062@04>@0001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 0072@04>@0001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 0082@04>@0001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 0092@04>@0001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 0102@04>@0001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 0112@04>@0001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 0122@04>@0001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 0132@04>@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@002@04>@0001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0152@04>@0001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0162@04>@0001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0172@04>@0001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0182@04>@0001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0192@04>@0001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0202@04>@0001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0212@04>@0001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0222@04>@0001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0232@04>@0001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0242@04>@0001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0252@04>@0001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0262@04>@0001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0272@04>@0001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0282@04>@0001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0292@04>@0001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0302@04>@0001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0312@04>@0001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0322@04>@0001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0332@04>@0001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0342@04>@0001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0352@04>@0001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0362@04>@0001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0372@04>@0001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0382@04>@0001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0392@04>@0001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0402@04>@0001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0412@04>@00:#___________________________________________________________________________________________________________________ +1b =01 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 0002@04>@0201 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 0012@06>@0001 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 0042@04>@0001 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 0052@04>@0001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 0062@04>@0001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 0072@04>@0001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 0082@04>@0001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 0092@04>@0001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 0102@04>@0001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 0112@04>@0001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 0122@04>@0001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 0132@04>@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@002@04>@0001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0152@04>@0001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0162@04>@0001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0172@04>@0001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0182@04>@0001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0192@04>@0001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0202@04>@0001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0212@04>@0001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0222@04>@0001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0232@04>@0001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0242@04>@0001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0252@04>@0001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0262@04>@0001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0272@04>@0001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0282@04>@0001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0292@04>@0001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0302@04>@0001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0312@04>@0001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0322@04>@0001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0332@04>@0001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0342@04>@0001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0352@04>@0001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0362@04>@0001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0372@04>@0001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0382@04>@0001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0392@04>@0001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0402@04>@0001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0412@04>@00 ESC#________________________________________________________________________________________________________________ +4f =01 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 0002@04>@0201 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 0012@06>@0001 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 0042@04>@0001 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 0052@04>@0001 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 0062@04>@0001 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 0072@04>@0001 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 0082@04>@0001 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 0092@04>@0001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 0102@04>@0001 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 0112@04>@0001 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 0122@04>@0001 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 0132@04>@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@002@04>@0001 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0152@04>@0001 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0162@04>@0001 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0172@04>@0001 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0182@04>@0001 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0192@04>@0001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0202@04>@0001 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0212@04>@0001 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0222@04>@0001 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0232@04>@0001 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0242@04>@0001 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0252@04>@0001 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0262@04>@0001 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0272@04>@0001 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0282@04>@0001 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0292@04>@0001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0302@04>@0001 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0312@04>@0001 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0322@04>@0001 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0332@04>@0001 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0342@04>@0001 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0352@04>@0001 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0362@04>@0001 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0372@04>@0001 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0382@04>@0001 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0392@04>@0001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0402@04>@0001 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0412@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 000@04>@02101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 001@06>@00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 004@04>@00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 005@04>@00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 006@04>@00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 007@04>@00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 008@04>@00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 009@04>@00001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 010@04>@00101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 011@04>@00201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 012@04>@00301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 013@04>4@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414>@00501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 015@04>@00601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 016@04>@00701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 017@04>@00801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 018@04>@00901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 019@04>@00001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 020@04>@00101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 021@04>@00201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 022@04>@00301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 023@04>@00401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 024@04>@00501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 025@04>@00601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 026@04>@00701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 027@04>@00801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 028@04>@00901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 029@04>@00001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 030@04>@00101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 031@04>@00201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 032@04>@00301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 033@04>@00401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 034@04>@00501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 035@04>@00601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 036@04>@00701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 037@04>@00801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 038@04>@00901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 039@04>@00001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 040@04>@00101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 041@04>@00:#___________________________________________________________________________________________________________________ +1b =001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 000@04>@02101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 001@06>@00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 004@04>@00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 005@04>@00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 006@04>@00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 007@04>@00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 008@04>@00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 009@04>@00001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 010@04>@00101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 011@04>@00201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 012@04>@00301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 013@04>4@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414>@00501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 015@04>@00601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 016@04>@00701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 017@04>@00801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 018@04>@00901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 019@04>@00001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 020@04>@00101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 021@04>@00201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 022@04>@00301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 023@04>@00401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 024@04>@00501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 025@04>@00601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 026@04>@00701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 027@04>@00801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 028@04>@00901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 029@04>@00001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 030@04>@00101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 031@04>@00201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 032@04>@00301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 033@04>@00401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 034@04>@00501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 035@04>@00601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 036@04>@00701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 037@04>@00801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 038@04>@00901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 039@04>@00001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 040@04>@00101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 041@04>@00 ESC#________________________________________________________________________________________________________________ +4f =001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 000@04>@02101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 001@06>@00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 004@04>@00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 005@04>@00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 006@04>@00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 007@04>@00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 008@04>@00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 009@04>@00001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 010@04>@00101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 011@04>@00201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 012@04>@00301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 013@04>4@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414>@00501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 015@04>@00601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 016@04>@00701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 017@04>@00801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 018@04>@00901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 019@04>@00001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 020@04>@00101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 021@04>@00201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 022@04>@00301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 023@04>@00401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 024@04>@00501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 025@04>@00601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 026@04>@00701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 027@04>@00801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 028@04>@00901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 029@04>@00001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 030@04>@00101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 031@04>@00201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 032@04>@00301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 033@04>@00401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 034@04>@00501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 035@04>@00601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 036@04>@00701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 037@04>@00801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 038@04>@00901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 039@04>@00001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 040@04>@00101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 041@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =0001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00@04>@020101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00@06>@000401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 00@04>@000501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 00@04>@000601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 00@04>@000701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00@04>@000801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00@04>@000901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00@04>@001001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01@04>@001101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01@04>@001201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01@04>@001301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01@04>14@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@041>@001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01@04>@001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01@04>@001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01@04>@001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01@04>@001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01@04>@002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02@04>@002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02@04>@002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02@04>@002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02@04>@002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02@04>@002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02@04>@002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02@04>@002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02@04>@002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02@04>@002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02@04>@003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03@04>@003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03@04>@003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03@04>@003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03@04>@003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03@04>@003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03@04>@003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03@04>@003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03@04>@003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03@04>@003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03@04>@004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04@04>@004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04@04>@00:#___________________________________________________________________________________________________________________ +1b =0001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00@04>@020101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00@06>@000401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 00@04>@000501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 00@04>@000601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 00@04>@000701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00@04>@000801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00@04>@000901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00@04>@001001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01@04>@001101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01@04>@001201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01@04>@001301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01@04>14@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@041>@001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01@04>@001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01@04>@001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01@04>@001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01@04>@001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01@04>@002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02@04>@002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02@04>@002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02@04>@002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02@04>@002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02@04>@002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02@04>@002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02@04>@002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02@04>@002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02@04>@002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02@04>@003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03@04>@003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03@04>@003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03@04>@003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03@04>@003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03@04>@003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03@04>@003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03@04>@003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03@04>@003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03@04>@003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03@04>@004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04@04>@004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 00@04>@020101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 00@06>@000401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 00@04>@000501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 00@04>@000601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 00@04>@000701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00@04>@000801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 00@04>@000901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 00@04>@001001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01@04>@001101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01@04>@001201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01@04>@001301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01@04>14@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@041>@001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01@04>@001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01@04>@001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01@04>@001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01@04>@001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01@04>@002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02@04>@002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02@04>@002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02@04>@002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02@04>@002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02@04>@002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02@04>@002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02@04>@002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02@04>@002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02@04>@002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02@04>@003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03@04>@003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03@04>@003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03@04>@003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03@04>@003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03@04>@003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03@04>@003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03@04>@003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03@04>@003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03@04>@003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03@04>@004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04@04>@004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 0@04>@0200101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 0@06>@0000401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 0@04>@0000501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 0@04>@0000601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 0@04>@0000701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 0@04>@0000801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 0@04>@0000901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 0@04>@0001001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 0@04>@0001101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 0@04>@0001201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 0@04>@0001301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 0@04>@000@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@04>@0001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0@04>@0001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0@04>@0001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0@04>@0001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0@04>@0001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0@04>@0002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0@04>@0002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0@04>@0002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0@04>@0002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0@04>@0002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0@04>@0002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0@04>@0002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0@04>@0002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0@04>@0002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0@04>@0002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0@04>@0003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0@04>@0003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0@04>@0003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0@04>@0003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0@04>@0003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0@04>@0003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0@04>@0003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0@04>@0003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0@04>@0003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0@04>@0003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0@04>@0004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0@04>@0004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 0@04>@0200101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 0@06>@0000401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 0@04>@0000501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 0@04>@0000601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 0@04>@0000701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 0@04>@0000801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 0@04>@0000901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 0@04>@0001001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 0@04>@0001101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 0@04>@0001201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 0@04>@0001301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 0@04>@000@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@04>@0001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0@04>@0001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0@04>@0001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0@04>@0001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0@04>@0001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0@04>@0002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0@04>@0002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0@04>@0002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0@04>@0002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0@04>@0002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0@04>@0002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0@04>@0002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0@04>@0002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0@04>@0002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0@04>@0002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0@04>@0003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0@04>@0003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0@04>@0003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0@04>@0003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0@04>@0003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0@04>@0003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0@04>@0003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0@04>@0003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0@04>@0003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0@04>@0003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0@04>@0004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0@04>@0004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 0@04>@0200101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 0@06>@0000401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 0@04>@0000501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 0@04>@0000601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 0@04>@0000701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 0@04>@0000801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 0@04>@0000901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 0@04>@0001001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 0@04>@0001101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 0@04>@0001201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 0@04>@0001301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 0@04>@000@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@04>@0001501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0@04>@0001601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0@04>@0001701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0@04>@0001801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0@04>@0001901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0@04>@0002001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0@04>@0002101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0@04>@0002201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0@04>@0002301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0@04>@0002401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0@04>@0002501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0@04>@0002601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0@04>@0002701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0@04>@0002801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0@04>@0002901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0@04>@0003001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0@04>@0003101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0@04>@0003201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0@04>@0003301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0@04>@0003401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0@04>@0003501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0@04>@0003601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0@04>@0003701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0@04>@0003801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0@04>@0003901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0@04>@0004001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0@04>@0004101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 = 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 @04>@02 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 @06>@00 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 @04>@00 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 @04>@00 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 @04>@00 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 @04>@00 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 @04>@00 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 @04>@00 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 @04>@00 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 @04>@00 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 @04>@00 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 @04>@00 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 @04>@00 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 @04>@00 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 @04>@00 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 @04>@00 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 @04>@00 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 @04>@00 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 @04>@00 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 @04>@00 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 @04>@00 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 @04>@00 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 @04>@00 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 @04>@00 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 @04>@00 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 @04>@00 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 @04>@00 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 @04>@00 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 @04>@00 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 @04>@00 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 @04>@00 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 @04>@00 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 @04>@00 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 @04>@00 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 @04>@00 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 @04>@00 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 @04>@00 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 @04>@00 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 @04>@00 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 @04>@00:#___________________________________________________________________________________________________________________ +1b = 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 @04>@02 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 @06>@00 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 @04>@00 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 @04>@00 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 @04>@00 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 @04>@00 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 @04>@00 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 @04>@00 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 @04>@00 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 @04>@00 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 @04>@00 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 @04>@00 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 @04>@00 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 @04>@00 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 @04>@00 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 @04>@00 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 @04>@00 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 @04>@00 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 @04>@00 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 @04>@00 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 @04>@00 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 @04>@00 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 @04>@00 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 @04>@00 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 @04>@00 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 @04>@00 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 @04>@00 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 @04>@00 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 @04>@00 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 @04>@00 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 @04>@00 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 @04>@00 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 @04>@00 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 @04>@00 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 @04>@00 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 @04>@00 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 @04>@00 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 @04>@00 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 @04>@00 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 @04>@00 ESC#________________________________________________________________________________________________________________ +4f = 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019 @04>@02 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119 @06>@00 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419 @04>@00 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519 @04>@00 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619 @04>@00 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 @04>@00 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819 @04>@00 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919 @04>@00 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 @04>@00 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 @04>@00 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 @04>@00 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 @04>@00 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 @04>@00 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 @04>@00 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 @04>@00 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 @04>@00 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 @04>@00 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 @04>@00 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 @04>@00 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 @04>@00 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 @04>@00 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 @04>@00 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 @04>@00 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 @04>@00 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 @04>@00 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 @04>@00 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 @04>@00 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 @04>@00 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 @04>@00 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 @04>@00 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 @04>@00 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 @04>@00 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 @04>@00 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 @04>@00 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 @04>@00 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 @04>@00 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 @04>@00 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 @04>@00 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 @04>@00 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 @04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419@04>@000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519@04>@000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619@04>@000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719@04>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@00:#___________________________________________________________________________________________________________________ +1b =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419@04>@000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519@04>@000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619@04>@000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719@04>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00019@04>@020 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00119@06>@000 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00419@04>@000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00519@04>@000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00619@04>@000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719@04>@000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00819@04>@000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00919@04>@000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =00 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0001@04>@0200 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0011@06>@0000 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0041@04>@0000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0051@04>@0000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0061@04>@0000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0071@04>@0000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0081@04>@0000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0091@04>@0000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0101@04>@0000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0111@04>@0000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0121@04>@0000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0131@04>@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@001@04>@0000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0151@04>@0000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0161@04>@0000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0171@04>@0000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0181@04>@0000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0191@04>@0000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0201@04>@0000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0211@04>@0000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0221@04>@0000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0231@04>@0000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0241@04>@0000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0251@04>@0000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0261@04>@0000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0271@04>@0000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0281@04>@0000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0291@04>@0000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0301@04>@0000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0311@04>@0000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0321@04>@0000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0331@04>@0000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0341@04>@0000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0351@04>@0000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0361@04>@0000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0371@04>@0000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0381@04>@0000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0391@04>@0000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0401@04>@0000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0411@04>@00:#___________________________________________________________________________________________________________________ +1b =00 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0001@04>@0200 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0011@06>@0000 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0041@04>@0000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0051@04>@0000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0061@04>@0000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0071@04>@0000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0081@04>@0000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0091@04>@0000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0101@04>@0000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0111@04>@0000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0121@04>@0000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0131@04>@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@001@04>@0000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0151@04>@0000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0161@04>@0000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0171@04>@0000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0181@04>@0000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0191@04>@0000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0201@04>@0000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0211@04>@0000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0221@04>@0000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0231@04>@0000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0241@04>@0000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0251@04>@0000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0261@04>@0000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0271@04>@0000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0281@04>@0000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0291@04>@0000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0301@04>@0000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0311@04>@0000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0321@04>@0000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0331@04>@0000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0341@04>@0000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0351@04>@0000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0361@04>@0000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0371@04>@0000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0381@04>@0000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0391@04>@0000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0401@04>@0000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0411@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0001@04>@0200 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0011@06>@0000 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0041@04>@0000 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0051@04>@0000 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0061@04>@0000 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0071@04>@0000 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0081@04>@0000 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0091@04>@0000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0101@04>@0000 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0111@04>@0000 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0121@04>@0000 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0131@04>@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@001@04>@0000 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0151@04>@0000 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0161@04>@0000 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0171@04>@0000 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0181@04>@0000 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0191@04>@0000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0201@04>@0000 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0211@04>@0000 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0221@04>@0000 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0231@04>@0000 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0241@04>@0000 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0251@04>@0000 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0261@04>@0000 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0271@04>@0000 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0281@04>@0000 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0291@04>@0000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0301@04>@0000 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0311@04>@0000 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0321@04>@0000 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0331@04>@0000 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0341@04>@0000 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0351@04>@0000 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0361@04>@0000 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0371@04>@0000 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0381@04>@0000 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0391@04>@0000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0401@04>@0000 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0411@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 000@04>@02100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 001@06>@00400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 004@04>@00500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 005@04>@00600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 006@04>@00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 007@04>@00800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 008@04>@00900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 009@04>@00000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 010@04>@00100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 011@04>@00200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 012@04>@00300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 013@04>4@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414>@00500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 015@04>@00600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 016@04>@00700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 017@04>@00800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 018@04>@00900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 019@04>@00000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 020@04>@00100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 021@04>@00200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 022@04>@00300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 023@04>@00400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 024@04>@00500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 025@04>@00600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 026@04>@00700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 027@04>@00800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 028@04>@00900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 029@04>@00000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 030@04>@00100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 031@04>@00200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 032@04>@00300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 033@04>@00400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 034@04>@00500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 035@04>@00600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 036@04>@00700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 037@04>@00800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 038@04>@00900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 039@04>@00000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 040@04>@00100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 041@04>@00:#___________________________________________________________________________________________________________________ +1b =000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 000@04>@02100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 001@06>@00400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 004@04>@00500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 005@04>@00600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 006@04>@00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 007@04>@00800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 008@04>@00900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 009@04>@00000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 010@04>@00100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 011@04>@00200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 012@04>@00300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 013@04>4@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414>@00500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 015@04>@00600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 016@04>@00700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 017@04>@00800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 018@04>@00900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 019@04>@00000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 020@04>@00100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 021@04>@00200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 022@04>@00300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 023@04>@00400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 024@04>@00500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 025@04>@00600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 026@04>@00700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 027@04>@00800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 028@04>@00900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 029@04>@00000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 030@04>@00100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 031@04>@00200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 032@04>@00300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 033@04>@00400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 034@04>@00500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 035@04>@00600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 036@04>@00700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 037@04>@00800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 038@04>@00900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 039@04>@00000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 040@04>@00100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 041@04>@00 ESC#________________________________________________________________________________________________________________ +4f =000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 000@04>@02100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 001@06>@00400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 004@04>@00500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 005@04>@00600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 006@04>@00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 007@04>@00800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 008@04>@00900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 009@04>@00000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 010@04>@00100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 011@04>@00200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 012@04>@00300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 013@04>4@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414>@00500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 015@04>@00600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 016@04>@00700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 017@04>@00800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 018@04>@00900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 019@04>@00000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 020@04>@00100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 021@04>@00200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 022@04>@00300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 023@04>@00400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 024@04>@00500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 025@04>@00600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 026@04>@00700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 027@04>@00800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 028@04>@00900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 029@04>@00000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 030@04>@00100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 031@04>@00200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 032@04>@00300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 033@04>@00400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 034@04>@00500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 035@04>@00600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 036@04>@00700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 037@04>@00800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 038@04>@00900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 039@04>@00000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 040@04>@00100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 041@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =0000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00@04>@020100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00@06>@000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00@04>@000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00@04>@000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00@04>@000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00@04>@000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00@04>@000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00@04>@001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01@04>@001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01@04>@001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01@04>@001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01@04>14@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@041>@001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01@04>@001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01@04>@001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01@04>@001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01@04>@001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01@04>@002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02@04>@002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02@04>@002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02@04>@002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02@04>@002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02@04>@002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02@04>@002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02@04>@002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02@04>@002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02@04>@002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02@04>@003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03@04>@003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03@04>@003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03@04>@003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03@04>@003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03@04>@003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03@04>@003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03@04>@003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03@04>@003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03@04>@003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03@04>@004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04@04>@004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04@04>@00:#___________________________________________________________________________________________________________________ +1b =0000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00@04>@020100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00@06>@000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00@04>@000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00@04>@000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00@04>@000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00@04>@000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00@04>@000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00@04>@001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01@04>@001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01@04>@001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01@04>@001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01@04>14@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@041>@001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01@04>@001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01@04>@001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01@04>@001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01@04>@001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01@04>@002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02@04>@002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02@04>@002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02@04>@002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02@04>@002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02@04>@002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02@04>@002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02@04>@002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02@04>@002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02@04>@002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02@04>@003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03@04>@003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03@04>@003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03@04>@003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03@04>@003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03@04>@003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03@04>@003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03@04>@003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03@04>@003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03@04>@003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03@04>@004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04@04>@004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04@04>@00 ESC#________________________________________________________________________________________________________________ +4f =0000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 00@04>@020100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 00@06>@000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 00@04>@000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 00@04>@000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 00@04>@000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00@04>@000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 00@04>@000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 00@04>@001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01@04>@001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01@04>@001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01@04>@001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01@04>14@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@041>@001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01@04>@001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01@04>@001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01@04>@001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01@04>@001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01@04>@002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02@04>@002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02@04>@002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02@04>@002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02@04>@002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02@04>@002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02@04>@002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02@04>@002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02@04>@002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02@04>@002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02@04>@003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03@04>@003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03@04>@003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03@04>@003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03@04>@003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03@04>@003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03@04>@003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03@04>@003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03@04>@003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03@04>@003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03@04>@004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04@04>@004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000400 00401 00402 00403 00404 00405 00406 00407 00408 00409 00410 00411 00412 00413 004@0414@00 00415 00416 00417 00418 0@04>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000500 00501 00502 00503 00504 00505 00506 00507 00508 00509 00510 00511 00512 00513 005@0414@00 00515 00516 00517 00518 0@04>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000600 00601 00602 00603 00604 00605 00606 00607 00608 00609 00610 00611 00612 00613 006@0414@00 00615 00616 00617 00618 0@04>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@0004600 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0@04>@00:#___________________________________________________________________________________________________________________ +2d =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@0004600 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0@04>@00-#___________________________________________________________________________________________________________________ +2d =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@0004600 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0@04>@00--#__________________________________________________________________________________________________________________ +68 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@0004600 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0@04>@00--h#_________________________________________________________________________________________________________________ +65 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@0004600 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0@04>@00--he#________________________________________________________________________________________________________________ +61 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@0004600 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0@04>@00--header#____________________________________________________________________________________________________________ +a =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@0004600 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0@04>@00Header lines: #______________________________________________________________________________________________________ +32 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@0004600 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0@04>@00Header lines: 2#_____________________________________________________________________________________________________ +2c =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@0004600 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0@04>@00Header lines: 2,#____________________________________________________________________________________________________ +36 =00000 00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 000@0414@00 00015 00016 00017 00018 0@04>@0200100 00101 00102 00103 00104 00105 00106 00107 00108 00109 00110 00111 00112 00113 001@0614@02 00115 00116 00117 00118 0@06>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@0004600 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0@04>@00Header lines: 2,6#___________________________________________________________________________________________________ +a =00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0000800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0414@00 00815 00816 00817 00818 0@04>@0000900 00901 00902 00903 00904 00905 00906 00907 00908 00909 00910 00911 00912 00913 009@0414@00 00915 00916 00917 00918 0@04>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@0004600 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0@04>@00:#___________________________________________________________________________________________________________________ +a =00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0200800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 0@06>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@0004600 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0@04>@0004700 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 0@04>@00:#___________________________________________________________________________________________________________________ +31 =00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0200800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 0@06>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@0004600 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0@04>@0004700 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 0@04>@00:1#__________________________________________________________________________________________________________________ +1b =00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0200800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 0@06>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@0004600 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0@04>@0004700 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 0@04>@00:1#__________________________________________________________________________________________________________________ +4f =00700 00701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0@04>@0200800 00801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 0@06>@0001000 01001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0@04>@0001100 01101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0@04>@0001200 01201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0@04>@0001300 01301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0@04>@000@0414@0000 0@0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@04>@0001500 01501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0@04>@0001600 01601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0@04>@0001700 01701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0@04>@0001800 01801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0@04>@0004000 04001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0@04>@0004100 04101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0@04>@0004200 04201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0@04>@0004300 04301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0@04>@0004400 04401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0@04>@0004500 04501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0@04>@0004600 04601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0@04>@0004700 04701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 0@04>@00:1#__________________________________________________________________________________________________________________ +43 =00700 0701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00@04>@0200800 0801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00@06>@0001000 1001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01@04>@0001100 1101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01@04>@0001200 1201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01@04>@0001300 1301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01@04>@000@0414@0000 @0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@041>@0001500 1501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01@04>@0001600 1601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01@04>@0001700 1701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01@04>@0001800 1801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01@04>@0001900 1901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01@04>@0002000 2001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02@04>@0002100 2101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02@04>@0002200 2201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02@04>@0002300 2301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02@04>@0002400 2401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02@04>@0002500 2501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02@04>@0002600 2601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02@04>@0002700 2701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02@04>@0002800 2801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02@04>@0002900 2901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02@04>@0003000 3001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03@04>@0003100 3101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03@04>@0003200 3201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03@04>@0003300 3301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03@04>@0003400 3401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03@04>@0003500 3501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03@04>@0003600 3601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03@04>@0003700 3701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03@04>@0003800 3801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03@04>@0003900 3901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03@04>@0004000 4001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04@04>@0004100 4101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04@04>@0004200 4201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04@04>@0004300 4301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04@04>@0004400 4401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04@04>@0004500 4501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04@04>@0004600 4601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04@04>@0004700 4701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 0701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00@04>@0200800 0801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00@06>@0001000 1001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01@04>@0001100 1101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01@04>@0001200 1201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01@04>@0001300 1301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01@04>@000@0414@0000 @0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@041>@0001500 1501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01@04>@0001600 1601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01@04>@0001700 1701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01@04>@0001800 1801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01@04>@0001900 1901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01@04>@0002000 2001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02@04>@0002100 2101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02@04>@0002200 2201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02@04>@0002300 2301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02@04>@0002400 2401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02@04>@0002500 2501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02@04>@0002600 2601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02@04>@0002700 2701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02@04>@0002800 2801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02@04>@0002900 2901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02@04>@0003000 3001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03@04>@0003100 3101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03@04>@0003200 3201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03@04>@0003300 3301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03@04>@0003400 3401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03@04>@0003500 3501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03@04>@0003600 3601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03@04>@0003700 3701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03@04>@0003800 3801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03@04>@0003900 3901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03@04>@0004000 4001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04@04>@0004100 4101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04@04>@0004200 4201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04@04>@0004300 4301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04@04>@0004400 4401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04@04>@0004500 4501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04@04>@0004600 4601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04@04>@0004700 4701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 0701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00@04>@0200800 0801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00@06>@0001000 1001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01@04>@0001100 1101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01@04>@0001200 1201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01@04>@0001300 1301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01@04>@000@0414@0000 @0414@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@041>@0001500 1501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01@04>@0001600 1601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01@04>@0001700 1701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01@04>@0001800 1801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01@04>@0001900 1901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01@04>@0002000 2001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02@04>@0002100 2101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02@04>@0002200 2201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02@04>@0002300 2301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02@04>@0002400 2401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02@04>@0002500 2501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02@04>@0002600 2601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02@04>@0002700 2701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02@04>@0002800 2801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02@04>@0002900 2901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02@04>@0003000 3001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03@04>@0003100 3101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03@04>@0003200 3201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03@04>@0003300 3301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03@04>@0003400 3401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03@04>@0003500 3501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03@04>@0003600 3601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03@04>@0003700 3701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03@04>@0003800 3801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03@04>@0003900 3901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03@04>@0004000 4001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04@04>@0004100 4101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04@04>@0004200 4201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04@04>@0004300 4301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04@04>@0004400 4401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04@04>@0004500 4501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04@04>@0004600 4601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04@04>@0004700 4701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 007@04>@0200800 801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 008@06>@0001000 001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 010@04>@0001100 101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 011@04>@0001200 201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 012@04>@0001300 301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 013@04>@000@0414@0000 @044@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414>@0001500 501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 015@04>@0001600 601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 016@04>@0001700 701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 017@04>@0001800 801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 018@04>@0001900 901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 019@04>@0002000 001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 020@04>@0002100 101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 021@04>@0002200 201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 022@04>@0002300 301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 023@04>@0002400 401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 024@04>@0002500 501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 025@04>@0002600 601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 026@04>@0002700 701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 027@04>@0002800 801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 028@04>@0002900 901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 029@04>@0003000 001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 030@04>@0003100 101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 031@04>@0003200 201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 032@04>@0003300 301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 033@04>@0003400 401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 034@04>@0003500 501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 035@04>@0003600 601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 036@04>@0003700 701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 037@04>@0003800 801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 038@04>@0003900 901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 039@04>@0004000 001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 040@04>@0004100 101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 041@04>@0004200 201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 042@04>@0004300 301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 043@04>@0004400 401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 044@04>@0004500 501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 045@04>@0004600 601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 046@04>@0004700 701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 047@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 007@04>@0200800 801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 008@06>@0001000 001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 010@04>@0001100 101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 011@04>@0001200 201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 012@04>@0001300 301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 013@04>@000@0414@0000 @044@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414>@0001500 501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 015@04>@0001600 601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 016@04>@0001700 701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 017@04>@0001800 801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 018@04>@0001900 901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 019@04>@0002000 001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 020@04>@0002100 101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 021@04>@0002200 201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 022@04>@0002300 301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 023@04>@0002400 401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 024@04>@0002500 501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 025@04>@0002600 601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 026@04>@0002700 701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 027@04>@0002800 801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 028@04>@0002900 901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 029@04>@0003000 001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 030@04>@0003100 101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 031@04>@0003200 201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 032@04>@0003300 301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 033@04>@0003400 401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 034@04>@0003500 501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 035@04>@0003600 601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 036@04>@0003700 701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 037@04>@0003800 801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 038@04>@0003900 901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 039@04>@0004000 001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 040@04>@0004100 101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 041@04>@0004200 201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 042@04>@0004300 301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 043@04>@0004400 401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 044@04>@0004500 501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 045@04>@0004600 601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 046@04>@0004700 701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 047@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 701 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 007@04>@0200800 801 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 008@06>@0001000 001 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 010@04>@0001100 101 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 011@04>@0001200 201 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 012@04>@0001300 301 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 013@04>@000@0414@0000 @044@0001 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414>@0001500 501 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 015@04>@0001600 601 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 016@04>@0001700 701 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 017@04>@0001800 801 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 018@04>@0001900 901 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 019@04>@0002000 001 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 020@04>@0002100 101 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 021@04>@0002200 201 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 022@04>@0002300 301 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 023@04>@0002400 401 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 024@04>@0002500 501 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 025@04>@0002600 601 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 026@04>@0002700 701 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 027@04>@0002800 801 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 028@04>@0002900 901 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 029@04>@0003000 001 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 030@04>@0003100 101 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 031@04>@0003200 201 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 032@04>@0003300 301 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 033@04>@0003400 401 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 034@04>@0003500 501 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 035@04>@0003600 601 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 036@04>@0003700 701 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 037@04>@0003800 801 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 038@04>@0003900 901 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 039@04>@0004000 001 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 040@04>@0004100 101 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 041@04>@0004200 201 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 042@04>@0004300 301 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 043@04>@0004400 401 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 044@04>@0004500 501 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 045@04>@0004600 601 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 046@04>@0004700 701 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 047@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 01 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0071@04>@0200800 01 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 0081@06>@0001000 01 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0101@04>@0001100 01 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0111@04>@0001200 01 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0121@04>@0001300 01 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0131@04>@000@0414@0000 01 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@001@04>@0001500 01 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0151@04>@0001600 01 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0161@04>@0001700 01 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0171@04>@0001800 01 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0181@04>@0001900 01 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0191@04>@0002000 01 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0201@04>@0002100 01 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0211@04>@0002200 01 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0221@04>@0002300 01 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0231@04>@0002400 01 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0241@04>@0002500 01 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0251@04>@0002600 01 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0261@04>@0002700 01 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0271@04>@0002800 01 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0281@04>@0002900 01 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0291@04>@0003000 01 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0301@04>@0003100 01 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0311@04>@0003200 01 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0321@04>@0003300 01 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0331@04>@0003400 01 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0341@04>@0003500 01 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0351@04>@0003600 01 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0361@04>@0003700 01 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0371@04>@0003800 01 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0381@04>@0003900 01 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0391@04>@0004000 01 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0401@04>@0004100 01 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0411@04>@0004200 01 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0421@04>@0004300 01 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0431@04>@0004400 01 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0441@04>@0004500 01 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0451@04>@0004600 01 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0461@04>@0004700 01 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 0471@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 01 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0071@04>@0200800 01 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 0081@06>@0001000 01 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0101@04>@0001100 01 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0111@04>@0001200 01 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0121@04>@0001300 01 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0131@04>@000@0414@0000 01 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@001@04>@0001500 01 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0151@04>@0001600 01 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0161@04>@0001700 01 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0171@04>@0001800 01 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0181@04>@0001900 01 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0191@04>@0002000 01 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0201@04>@0002100 01 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0211@04>@0002200 01 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0221@04>@0002300 01 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0231@04>@0002400 01 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0241@04>@0002500 01 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0251@04>@0002600 01 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0261@04>@0002700 01 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0271@04>@0002800 01 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0281@04>@0002900 01 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0291@04>@0003000 01 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0301@04>@0003100 01 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0311@04>@0003200 01 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0321@04>@0003300 01 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0331@04>@0003400 01 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0341@04>@0003500 01 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0351@04>@0003600 01 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0361@04>@0003700 01 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0371@04>@0003800 01 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0381@04>@0003900 01 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0391@04>@0004000 01 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0401@04>@0004100 01 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0411@04>@0004200 01 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0421@04>@0004300 01 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0431@04>@0004400 01 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0441@04>@0004500 01 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0451@04>@0004600 01 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0461@04>@0004700 01 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 0471@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 01 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 0071@04>@0200800 01 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 0081@06>@0001000 01 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 0101@04>@0001100 01 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 0111@04>@0001200 01 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 0121@04>@0001300 01 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 0131@04>@000@0414@0000 01 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@001@04>@0001500 01 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 0151@04>@0001600 01 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 0161@04>@0001700 01 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 0171@04>@0001800 01 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 0181@04>@0001900 01 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 0191@04>@0002000 01 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 0201@04>@0002100 01 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 0211@04>@0002200 01 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 0221@04>@0002300 01 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 0231@04>@0002400 01 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 0241@04>@0002500 01 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 0251@04>@0002600 01 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 0261@04>@0002700 01 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 0271@04>@0002800 01 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 0281@04>@0002900 01 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 0291@04>@0003000 01 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 0301@04>@0003100 01 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 0311@04>@0003200 01 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 0321@04>@0003300 01 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 0331@04>@0003400 01 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 0341@04>@0003500 01 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 0351@04>@0003600 01 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 0361@04>@0003700 01 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 0371@04>@0003800 01 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 0381@04>@0003900 01 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 0391@04>@0004000 01 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 0401@04>@0004100 01 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 0411@04>@0004200 01 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 0421@04>@0004300 01 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 0431@04>@0004400 01 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 0441@04>@0004500 01 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 0451@04>@0004600 01 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 0461@04>@0004700 01 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 0471@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 1 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719@04>@0200800 1 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819@06>@0001000 1 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@0001100 1 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@0001200 1 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@0001300 1 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000@0414@0000 1 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@0001500 1 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@0001600 1 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@0001700 1 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@0001800 1 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@0001900 1 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@0002000 1 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@0002100 1 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@0002200 1 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@0002300 1 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@0002400 1 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@0002500 1 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@0002600 1 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@0002700 1 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@0002800 1 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@0002900 1 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@0003000 1 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@0003100 1 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@0003200 1 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@0003300 1 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@0003400 1 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@0003500 1 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@0003600 1 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@0003700 1 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@0003800 1 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@0003900 1 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@0004000 1 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@0004100 1 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@0004200 1 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@0004300 1 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@0004400 1 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@0004500 1 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@0004600 1 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@0004700 1 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 1 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719@04>@0200800 1 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819@06>@0001000 1 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@0001100 1 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@0001200 1 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@0001300 1 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000@0414@0000 1 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@0001500 1 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@0001600 1 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@0001700 1 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@0001800 1 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@0001900 1 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@0002000 1 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@0002100 1 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@0002200 1 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@0002300 1 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@0002400 1 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@0002500 1 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@0002600 1 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@0002700 1 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@0002800 1 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@0002900 1 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@0003000 1 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@0003100 1 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@0003200 1 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@0003300 1 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@0003400 1 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@0003500 1 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@0003600 1 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@0003700 1 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@0003800 1 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@0003900 1 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@0004000 1 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@0004100 1 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@0004200 1 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@0004300 1 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@0004400 1 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@0004500 1 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@0004600 1 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@0004700 1 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 1 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719@04>@0200800 1 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819@06>@0001000 1 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019@04>@0001100 1 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119@04>@0001200 1 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219@04>@0001300 1 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319@04>@000@0414@0000 1 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019@04>@0001500 1 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519@04>@0001600 1 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619@04>@0001700 1 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719@04>@0001800 1 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819@04>@0001900 1 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919@04>@0002000 1 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019@04>@0002100 1 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119@04>@0002200 1 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219@04>@0002300 1 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319@04>@0002400 1 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419@04>@0002500 1 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519@04>@0002600 1 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619@04>@0002700 1 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719@04>@0002800 1 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819@04>@0002900 1 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919@04>@0003000 1 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019@04>@0003100 1 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119@04>@0003200 1 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219@04>@0003300 1 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319@04>@0003400 1 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419@04>@0003500 1 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519@04>@0003600 1 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619@04>@0003700 1 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719@04>@0003800 1 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819@04>@0003900 1 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919@04>@0004000 1 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019@04>@0004100 1 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119@04>@0004200 1 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219@04>@0004300 1 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319@04>@0004400 1 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419@04>@0004500 1 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519@04>@0004600 1 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619@04>@0004700 1 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 @04>@0200800 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 @06>@0001000 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 @04>@0001100 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 @04>@0001200 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 @04>@0001300 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 @04>@000@0414@0000 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 @04>@0001500 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 @04>@0001600 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 @04>@0001700 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 @04>@0001800 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 @04>@0001900 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 @04>@0002000 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 @04>@0002100 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 @04>@0002200 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 @04>@0002300 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 @04>@0002400 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 @04>@0002500 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 @04>@0002600 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 @04>@0002700 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 @04>@0002800 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 @04>@0002900 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 @04>@0003000 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 @04>@0003100 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 @04>@0003200 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 @04>@0003300 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 @04>@0003400 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 @04>@0003500 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 @04>@0003600 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 @04>@0003700 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 @04>@0003800 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 @04>@0003900 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 @04>@0004000 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 @04>@0004100 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 @04>@0004200 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 @04>@0004300 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 @04>@0004400 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 @04>@0004500 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 @04>@0004600 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 @04>@0004700 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 @04>@00:#___________________________________________________________________________________________________________________ +1b =00700 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 @04>@0200800 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 @06>@0001000 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 @04>@0001100 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 @04>@0001200 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 @04>@0001300 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 @04>@000@0414@0000 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 @04>@0001500 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 @04>@0001600 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 @04>@0001700 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 @04>@0001800 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 @04>@0001900 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 @04>@0002000 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 @04>@0002100 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 @04>@0002200 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 @04>@0002300 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 @04>@0002400 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 @04>@0002500 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 @04>@0002600 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 @04>@0002700 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 @04>@0002800 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 @04>@0002900 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 @04>@0003000 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 @04>@0003100 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 @04>@0003200 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 @04>@0003300 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 @04>@0003400 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 @04>@0003500 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 @04>@0003600 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 @04>@0003700 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 @04>@0003800 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 @04>@0003900 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 @04>@0004000 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 @04>@0004100 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 @04>@0004200 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 @04>@0004300 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 @04>@0004400 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 @04>@0004500 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 @04>@0004600 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 @04>@0004700 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 @04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 @04>@0200800 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 @06>@0001000 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 @04>@0001100 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 @04>@0001200 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 @04>@0001300 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 @04>@000@0414@0000 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 @04>@0001500 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 @04>@0001600 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 @04>@0001700 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 @04>@0001800 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 @04>@0001900 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 @04>@0002000 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 @04>@0002100 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 @04>@0002200 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 @04>@0002300 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 @04>@0002400 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 @04>@0002500 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 @04>@0002600 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 @04>@0002700 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 @04>@0002800 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 @04>@0002900 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 @04>@0003000 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 @04>@0003100 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 @04>@0003200 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 @04>@0003300 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 @04>@0003400 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 @04>@0003500 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 @04>@0003600 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 @04>@0003700 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 @04>@0003800 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 @04>@0003900 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 @04>@0004000 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 @04>@0004100 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 @04>@0004200 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 @04>@0004300 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 @04>@0004400 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 @04>@0004500 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 @04>@0004600 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 @04>@0004700 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 @04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 0@04>@0200800 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 0@06>@0001000 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 0@04>@0001100 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 0@04>@0001200 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 0@04>@0001300 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 0@04>@000@0414@0000 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@04>@0001500 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0@04>@0001600 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0@04>@0001700 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0@04>@0001800 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0@04>@0001900 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0@04>@0002000 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0@04>@0002100 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0@04>@0002200 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0@04>@0002300 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0@04>@0002400 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0@04>@0002500 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0@04>@0002600 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0@04>@0002700 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0@04>@0002800 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0@04>@0002900 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0@04>@0003000 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0@04>@0003100 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0@04>@0003200 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0@04>@0003300 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0@04>@0003400 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0@04>@0003500 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0@04>@0003600 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0@04>@0003700 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0@04>@0003800 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0@04>@0003900 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0@04>@0004000 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0@04>@0004100 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0@04>@0004200 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 0@04>@0004300 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 0@04>@0004400 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 0@04>@0004500 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 0@04>@0004600 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 0@04>@0004700 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 0@04>@0200800 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 0@06>@0001000 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 0@04>@0001100 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 0@04>@0001200 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 0@04>@0001300 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 0@04>@000@0414@0000 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@04>@0001500 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0@04>@0001600 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0@04>@0001700 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0@04>@0001800 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0@04>@0001900 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0@04>@0002000 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0@04>@0002100 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0@04>@0002200 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0@04>@0002300 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0@04>@0002400 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0@04>@0002500 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0@04>@0002600 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0@04>@0002700 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0@04>@0002800 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0@04>@0002900 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0@04>@0003000 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0@04>@0003100 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0@04>@0003200 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0@04>@0003300 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0@04>@0003400 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0@04>@0003500 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0@04>@0003600 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0@04>@0003700 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0@04>@0003800 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0@04>@0003900 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0@04>@0004000 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0@04>@0004100 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0@04>@0004200 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 0@04>@0004300 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 0@04>@0004400 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 0@04>@0004500 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 0@04>@0004600 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 0@04>@0004700 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 00702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 0@04>@0200800 00802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 0@06>@0001000 01002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 0@04>@0001100 01102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 0@04>@0001200 01202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 0@04>@0001300 01302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 0@04>@000@0414@0000 0@0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@04>@0001500 01502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0@04>@0001600 01602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0@04>@0001700 01702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0@04>@0001800 01802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0@04>@0001900 01902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0@04>@0002000 02002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0@04>@0002100 02102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0@04>@0002200 02202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0@04>@0002300 02302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0@04>@0002400 02402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0@04>@0002500 02502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0@04>@0002600 02602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0@04>@0002700 02702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0@04>@0002800 02802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0@04>@0002900 02902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0@04>@0003000 03002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0@04>@0003100 03102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0@04>@0003200 03202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0@04>@0003300 03302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0@04>@0003400 03402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0@04>@0003500 03502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0@04>@0003600 03602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0@04>@0003700 03702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0@04>@0003800 03802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0@04>@0003900 03902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0@04>@0004000 04002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0@04>@0004100 04102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0@04>@0004200 04202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 0@04>@0004300 04302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 0@04>@0004400 04402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 0@04>@0004500 04502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 0@04>@0004600 04602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 0@04>@0004700 04702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 0702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00@04>@0200800 0802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00@06>@0001000 1002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01@04>@0001100 1102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01@04>@0001200 1202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01@04>@0001300 1302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01@04>@000@0414@0000 @0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@041>@0001500 1502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01@04>@0001600 1602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01@04>@0001700 1702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01@04>@0001800 1802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01@04>@0001900 1902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01@04>@0002000 2002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02@04>@0002100 2102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02@04>@0002200 2202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02@04>@0002300 2302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02@04>@0002400 2402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02@04>@0002500 2502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02@04>@0002600 2602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02@04>@0002700 2702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02@04>@0002800 2802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02@04>@0002900 2902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02@04>@0003000 3002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03@04>@0003100 3102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03@04>@0003200 3202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03@04>@0003300 3302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03@04>@0003400 3402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03@04>@0003500 3502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03@04>@0003600 3602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03@04>@0003700 3702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03@04>@0003800 3802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03@04>@0003900 3902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03@04>@0004000 4002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04@04>@0004100 4102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04@04>@0004200 4202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04@04>@0004300 4302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04@04>@0004400 4402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04@04>@0004500 4502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04@04>@0004600 4602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04@04>@0004700 4702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 0702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00@04>@0200800 0802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00@06>@0001000 1002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01@04>@0001100 1102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01@04>@0001200 1202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01@04>@0001300 1302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01@04>@000@0414@0000 @0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@041>@0001500 1502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01@04>@0001600 1602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01@04>@0001700 1702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01@04>@0001800 1802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01@04>@0001900 1902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01@04>@0002000 2002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02@04>@0002100 2102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02@04>@0002200 2202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02@04>@0002300 2302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02@04>@0002400 2402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02@04>@0002500 2502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02@04>@0002600 2602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02@04>@0002700 2702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02@04>@0002800 2802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02@04>@0002900 2902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02@04>@0003000 3002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03@04>@0003100 3102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03@04>@0003200 3202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03@04>@0003300 3302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03@04>@0003400 3402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03@04>@0003500 3502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03@04>@0003600 3602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03@04>@0003700 3702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03@04>@0003800 3802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03@04>@0003900 3902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03@04>@0004000 4002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04@04>@0004100 4102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04@04>@0004200 4202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04@04>@0004300 4302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04@04>@0004400 4402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04@04>@0004500 4502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04@04>@0004600 4602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04@04>@0004700 4702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 0702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00@04>@0200800 0802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00@06>@0001000 1002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01@04>@0001100 1102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01@04>@0001200 1202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01@04>@0001300 1302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01@04>@000@0414@0000 @0414@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@041>@0001500 1502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01@04>@0001600 1602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01@04>@0001700 1702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01@04>@0001800 1802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01@04>@0001900 1902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01@04>@0002000 2002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02@04>@0002100 2102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02@04>@0002200 2202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02@04>@0002300 2302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02@04>@0002400 2402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02@04>@0002500 2502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02@04>@0002600 2602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02@04>@0002700 2702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02@04>@0002800 2802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02@04>@0002900 2902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02@04>@0003000 3002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03@04>@0003100 3102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03@04>@0003200 3202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03@04>@0003300 3302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03@04>@0003400 3402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03@04>@0003500 3502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03@04>@0003600 3602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03@04>@0003700 3702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03@04>@0003800 3802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03@04>@0003900 3902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03@04>@0004000 4002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04@04>@0004100 4102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04@04>@0004200 4202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04@04>@0004300 4302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04@04>@0004400 4402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04@04>@0004500 4502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04@04>@0004600 4602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04@04>@0004700 4702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 007@04>@0200800 802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 008@06>@0001000 002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 010@04>@0001100 102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 011@04>@0001200 202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 012@04>@0001300 302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 013@04>@000@0414@0000 @044@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414>@0001500 502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 015@04>@0001600 602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 016@04>@0001700 702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 017@04>@0001800 802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 018@04>@0001900 902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 019@04>@0002000 002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 020@04>@0002100 102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 021@04>@0002200 202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 022@04>@0002300 302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 023@04>@0002400 402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 024@04>@0002500 502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 025@04>@0002600 602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 026@04>@0002700 702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 027@04>@0002800 802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 028@04>@0002900 902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 029@04>@0003000 002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 030@04>@0003100 102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 031@04>@0003200 202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 032@04>@0003300 302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 033@04>@0003400 402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 034@04>@0003500 502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 035@04>@0003600 602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 036@04>@0003700 702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 037@04>@0003800 802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 038@04>@0003900 902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 039@04>@0004000 002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 040@04>@0004100 102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 041@04>@0004200 202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 042@04>@0004300 302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 043@04>@0004400 402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 044@04>@0004500 502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 045@04>@0004600 602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 046@04>@0004700 702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 047@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 007@04>@0200800 802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 008@06>@0001000 002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 010@04>@0001100 102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 011@04>@0001200 202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 012@04>@0001300 302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 013@04>@000@0414@0000 @044@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414>@0001500 502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 015@04>@0001600 602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 016@04>@0001700 702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 017@04>@0001800 802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 018@04>@0001900 902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 019@04>@0002000 002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 020@04>@0002100 102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 021@04>@0002200 202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 022@04>@0002300 302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 023@04>@0002400 402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 024@04>@0002500 502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 025@04>@0002600 602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 026@04>@0002700 702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 027@04>@0002800 802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 028@04>@0002900 902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 029@04>@0003000 002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 030@04>@0003100 102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 031@04>@0003200 202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 032@04>@0003300 302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 033@04>@0003400 402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 034@04>@0003500 502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 035@04>@0003600 602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 036@04>@0003700 702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 037@04>@0003800 802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 038@04>@0003900 902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 039@04>@0004000 002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 040@04>@0004100 102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 041@04>@0004200 202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 042@04>@0004300 302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 043@04>@0004400 402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 044@04>@0004500 502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 045@04>@0004600 602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 046@04>@0004700 702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 047@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 702 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 007@04>@0200800 802 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 008@06>@0001000 002 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 010@04>@0001100 102 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 011@04>@0001200 202 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 012@04>@0001300 302 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 013@04>@000@0414@0000 @044@0002 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414>@0001500 502 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 015@04>@0001600 602 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 016@04>@0001700 702 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 017@04>@0001800 802 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 018@04>@0001900 902 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 019@04>@0002000 002 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 020@04>@0002100 102 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 021@04>@0002200 202 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 022@04>@0002300 302 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 023@04>@0002400 402 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 024@04>@0002500 502 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 025@04>@0002600 602 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 026@04>@0002700 702 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 027@04>@0002800 802 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 028@04>@0002900 902 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 029@04>@0003000 002 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 030@04>@0003100 102 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 031@04>@0003200 202 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 032@04>@0003300 302 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 033@04>@0003400 402 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 034@04>@0003500 502 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 035@04>@0003600 602 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 036@04>@0003700 702 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 037@04>@0003800 802 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 038@04>@0003900 902 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 039@04>@0004000 002 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 040@04>@0004100 102 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 041@04>@0004200 202 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 042@04>@0004300 302 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 043@04>@0004400 402 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 044@04>@0004500 502 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 045@04>@0004600 602 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 046@04>@0004700 702 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 047@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 02 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 0072@04>@0200800 02 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 0082@06>@0001000 02 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 0102@04>@0001100 02 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 0112@04>@0001200 02 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 0122@04>@0001300 02 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 0132@04>@000@0414@0000 02 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@002@04>@0001500 02 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0152@04>@0001600 02 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0162@04>@0001700 02 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0172@04>@0001800 02 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0182@04>@0001900 02 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0192@04>@0002000 02 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0202@04>@0002100 02 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0212@04>@0002200 02 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0222@04>@0002300 02 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0232@04>@0002400 02 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0242@04>@0002500 02 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0252@04>@0002600 02 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0262@04>@0002700 02 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0272@04>@0002800 02 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0282@04>@0002900 02 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0292@04>@0003000 02 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0302@04>@0003100 02 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0312@04>@0003200 02 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0322@04>@0003300 02 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0332@04>@0003400 02 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0342@04>@0003500 02 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0352@04>@0003600 02 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0362@04>@0003700 02 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0372@04>@0003800 02 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0382@04>@0003900 02 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0392@04>@0004000 02 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0402@04>@0004100 02 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0412@04>@0004200 02 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 0422@04>@0004300 02 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 0432@04>@0004400 02 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 0442@04>@0004500 02 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 0452@04>@0004600 02 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 0462@04>@0004700 02 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 0472@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 02 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 0072@04>@0200800 02 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 0082@06>@0001000 02 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 0102@04>@0001100 02 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 0112@04>@0001200 02 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 0122@04>@0001300 02 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 0132@04>@000@0414@0000 02 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@002@04>@0001500 02 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0152@04>@0001600 02 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0162@04>@0001700 02 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0172@04>@0001800 02 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0182@04>@0001900 02 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0192@04>@0002000 02 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0202@04>@0002100 02 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0212@04>@0002200 02 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0222@04>@0002300 02 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0232@04>@0002400 02 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0242@04>@0002500 02 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0252@04>@0002600 02 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0262@04>@0002700 02 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0272@04>@0002800 02 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0282@04>@0002900 02 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0292@04>@0003000 02 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0302@04>@0003100 02 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0312@04>@0003200 02 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0322@04>@0003300 02 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0332@04>@0003400 02 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0342@04>@0003500 02 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0352@04>@0003600 02 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0362@04>@0003700 02 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0372@04>@0003800 02 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0382@04>@0003900 02 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0392@04>@0004000 02 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0402@04>@0004100 02 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0412@04>@0004200 02 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 0422@04>@0004300 02 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 0432@04>@0004400 02 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 0442@04>@0004500 02 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 0452@04>@0004600 02 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 0462@04>@0004700 02 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 0472@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 02 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 0072@04>@0200800 02 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 0082@06>@0001000 02 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 0102@04>@0001100 02 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 0112@04>@0001200 02 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 0122@04>@0001300 02 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 0132@04>@000@0414@0000 02 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@002@04>@0001500 02 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 0152@04>@0001600 02 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 0162@04>@0001700 02 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 0172@04>@0001800 02 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 0182@04>@0001900 02 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 0192@04>@0002000 02 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 0202@04>@0002100 02 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 0212@04>@0002200 02 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 0222@04>@0002300 02 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 0232@04>@0002400 02 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 0242@04>@0002500 02 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 0252@04>@0002600 02 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 0262@04>@0002700 02 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 0272@04>@0002800 02 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 0282@04>@0002900 02 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 0292@04>@0003000 02 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 0302@04>@0003100 02 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 0312@04>@0003200 02 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 0322@04>@0003300 02 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 0332@04>@0003400 02 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 0342@04>@0003500 02 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 0352@04>@0003600 02 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 0362@04>@0003700 02 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 0372@04>@0003800 02 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 0382@04>@0003900 02 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 0392@04>@0004000 02 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 0402@04>@0004100 02 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 0412@04>@0004200 02 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 0422@04>@0004300 02 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 0432@04>@0004400 02 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 0442@04>@0004500 02 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 0452@04>@0004600 02 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 0462@04>@0004700 02 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 0472@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 2 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@0200800 2 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820@06>@0001000 2 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@0001100 2 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@0001200 2 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@0001300 2 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@000@0414@0000 2 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@0001500 2 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@0001600 2 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@0001700 2 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@0001800 2 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@0001900 2 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@0002000 2 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@0002100 2 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@0002200 2 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@0002300 2 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@0002400 2 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@0002500 2 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@0002600 2 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@0002700 2 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@0002800 2 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@0002900 2 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@0003000 2 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@0003100 2 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@0003200 2 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@0003300 2 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@0003400 2 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@0003500 2 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@0003600 2 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@0003700 2 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@0003800 2 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@0003900 2 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@0004000 2 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@0004100 2 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@0004200 2 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@0004300 2 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@0004400 2 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@0004500 2 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@0004600 2 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@0004700 2 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 2 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@0200800 2 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820@06>@0001000 2 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@0001100 2 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@0001200 2 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@0001300 2 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@000@0414@0000 2 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@0001500 2 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@0001600 2 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@0001700 2 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@0001800 2 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@0001900 2 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@0002000 2 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@0002100 2 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@0002200 2 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@0002300 2 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@0002400 2 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@0002500 2 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@0002600 2 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@0002700 2 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@0002800 2 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@0002900 2 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@0003000 2 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@0003100 2 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@0003200 2 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@0003300 2 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@0003400 2 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@0003500 2 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@0003600 2 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@0003700 2 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@0003800 2 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@0003900 2 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@0004000 2 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@0004100 2 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@0004200 2 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@0004300 2 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@0004400 2 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@0004500 2 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@0004600 2 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@0004700 2 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 2 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720@04>@0200800 2 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820@06>@0001000 2 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020@04>@0001100 2 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120@04>@0001200 2 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220@04>@0001300 2 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320@04>@000@0414@0000 2 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020@04>@0001500 2 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520@04>@0001600 2 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620@04>@0001700 2 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720@04>@0001800 2 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820@04>@0001900 2 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920@04>@0002000 2 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020@04>@0002100 2 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120@04>@0002200 2 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220@04>@0002300 2 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320@04>@0002400 2 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420@04>@0002500 2 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520@04>@0002600 2 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620@04>@0002700 2 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720@04>@0002800 2 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820@04>@0002900 2 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920@04>@0003000 2 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020@04>@0003100 2 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120@04>@0003200 2 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220@04>@0003300 2 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320@04>@0003400 2 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420@04>@0003500 2 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520@04>@0003600 2 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620@04>@0003700 2 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720@04>@0003800 2 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820@04>@0003900 2 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920@04>@0004000 2 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020@04>@0004100 2 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120@04>@0004200 2 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220@04>@0004300 2 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320@04>@0004400 2 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420@04>@0004500 2 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520@04>@0004600 2 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620@04>@0004700 2 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 @04>@0200800 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 @06>@0001000 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020 @04>@0001100 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120 @04>@0001200 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220 @04>@0001300 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 @04>@000@0414@0000 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 @04>@0001500 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 @04>@0001600 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 @04>@0001700 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 @04>@0001800 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 @04>@0001900 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 @04>@0002000 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 @04>@0002100 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 @04>@0002200 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 @04>@0002300 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 @04>@0002400 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 @04>@0002500 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 @04>@0002600 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 @04>@0002700 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 @04>@0002800 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 @04>@0002900 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 @04>@0003000 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 @04>@0003100 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 @04>@0003200 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 @04>@0003300 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 @04>@0003400 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 @04>@0003500 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 @04>@0003600 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 @04>@0003700 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 @04>@0003800 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 @04>@0003900 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 @04>@0004000 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 @04>@0004100 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 @04>@0004200 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 @04>@0004300 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 @04>@0004400 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 @04>@0004500 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 @04>@0004600 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 @04>@0004700 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 @04>@00:#___________________________________________________________________________________________________________________ +1b =00700 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 @04>@0200800 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 @06>@0001000 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020 @04>@0001100 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120 @04>@0001200 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220 @04>@0001300 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 @04>@000@0414@0000 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 @04>@0001500 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 @04>@0001600 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 @04>@0001700 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 @04>@0001800 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 @04>@0001900 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 @04>@0002000 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 @04>@0002100 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 @04>@0002200 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 @04>@0002300 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 @04>@0002400 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 @04>@0002500 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 @04>@0002600 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 @04>@0002700 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 @04>@0002800 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 @04>@0002900 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 @04>@0003000 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 @04>@0003100 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 @04>@0003200 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 @04>@0003300 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 @04>@0003400 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 @04>@0003500 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 @04>@0003600 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 @04>@0003700 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 @04>@0003800 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 @04>@0003900 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 @04>@0004000 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 @04>@0004100 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 @04>@0004200 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 @04>@0004300 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 @04>@0004400 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 @04>@0004500 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 @04>@0004600 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 @04>@0004700 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 @04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 @04>@0200800 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 @06>@0001000 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020 @04>@0001100 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120 @04>@0001200 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220 @04>@0001300 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 @04>@000@0414@0000 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 @04>@0001500 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 @04>@0001600 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 @04>@0001700 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 @04>@0001800 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 @04>@0001900 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 @04>@0002000 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 @04>@0002100 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 @04>@0002200 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 @04>@0002300 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 @04>@0002400 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 @04>@0002500 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 @04>@0002600 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 @04>@0002700 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 @04>@0002800 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 @04>@0002900 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 @04>@0003000 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 @04>@0003100 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 @04>@0003200 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 @04>@0003300 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 @04>@0003400 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 @04>@0003500 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 @04>@0003600 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 @04>@0003700 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 @04>@0003800 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 @04>@0003900 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 @04>@0004000 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 @04>@0004100 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 @04>@0004200 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 @04>@0004300 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 @04>@0004400 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 @04>@0004500 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 @04>@0004600 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 @04>@0004700 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 @04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0@04>@0200800 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0@06>@0001000 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020 0@04>@0001100 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120 0@04>@0001200 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220 0@04>@0001300 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 0@04>@000@0414@0000 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@04>@0001500 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0@04>@0001600 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0@04>@0001700 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0@04>@0001800 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0@04>@0001900 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0@04>@0002000 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0@04>@0002100 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0@04>@0002200 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0@04>@0002300 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0@04>@0002400 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0@04>@0002500 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0@04>@0002600 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0@04>@0002700 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0@04>@0002800 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0@04>@0002900 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0@04>@0003000 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0@04>@0003100 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0@04>@0003200 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0@04>@0003300 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0@04>@0003400 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0@04>@0003500 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0@04>@0003600 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0@04>@0003700 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0@04>@0003800 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0@04>@0003900 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0@04>@0004000 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0@04>@0004100 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0@04>@0004200 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0@04>@0004300 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0@04>@0004400 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0@04>@0004500 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0@04>@0004600 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0@04>@0004700 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0@04>@0200800 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0@06>@0001000 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020 0@04>@0001100 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120 0@04>@0001200 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220 0@04>@0001300 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 0@04>@000@0414@0000 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@04>@0001500 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0@04>@0001600 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0@04>@0001700 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0@04>@0001800 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0@04>@0001900 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0@04>@0002000 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0@04>@0002100 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0@04>@0002200 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0@04>@0002300 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0@04>@0002400 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0@04>@0002500 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0@04>@0002600 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0@04>@0002700 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0@04>@0002800 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0@04>@0002900 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0@04>@0003000 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0@04>@0003100 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0@04>@0003200 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0@04>@0003300 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0@04>@0003400 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0@04>@0003500 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0@04>@0003600 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0@04>@0003700 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0@04>@0003800 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0@04>@0003900 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0@04>@0004000 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0@04>@0004100 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0@04>@0004200 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0@04>@0004300 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0@04>@0004400 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0@04>@0004500 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0@04>@0004600 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0@04>@0004700 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0@04>@0200800 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0@06>@0001000 01003 01004 01005 01006 01007 01008 01009 01010 01011 01012 01013 010@0414@00 01015 01016 01017 01018 01019 01020 0@04>@0001100 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120 0@04>@0001200 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220 0@04>@0001300 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 0@04>@000@0414@0000 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@04>@0001500 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0@04>@0001600 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0@04>@0001700 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0@04>@0001800 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0@04>@0001900 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0@04>@0002000 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0@04>@0002100 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0@04>@0002200 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0@04>@0002300 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0@04>@0002400 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0@04>@0002500 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0@04>@0002600 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0@04>@0002700 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0@04>@0002800 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0@04>@0002900 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0@04>@0003000 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0@04>@0003100 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0@04>@0003200 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0@04>@0003300 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0@04>@0003400 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0@04>@0003500 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0@04>@0003600 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0@04>@0003700 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0@04>@0003800 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0@04>@0003900 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0@04>@0004000 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0@04>@0004100 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0@04>@0004200 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0@04>@0004300 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0@04>@0004400 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0@04>@0004500 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0@04>@0004600 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0@04>@0004700 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0@04>@0200800 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0@06>@0001100 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120 0@04>@0001200 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220 0@04>@0001300 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 0@04>@000@0414@0000 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@04>@0001500 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0@04>@0001600 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0@04>@0001700 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0@04>@0001800 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0@04>@0001900 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0@04>@0002000 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0@04>@0002100 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0@04>@0002200 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0@04>@0002300 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0@04>@0002400 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0@04>@0002500 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0@04>@0002600 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0@04>@0002700 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0@04>@0002800 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0@04>@0002900 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0@04>@0003000 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0@04>@0003100 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0@04>@0003200 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0@04>@0003300 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0@04>@0003400 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0@04>@0003500 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0@04>@0003600 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0@04>@0003700 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0@04>@0003800 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0@04>@0003900 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0@04>@0004000 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0@04>@0004100 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0@04>@0004200 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0@04>@0004300 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0@04>@0004400 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0@04>@0004500 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0@04>@0004600 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0@04>@0004700 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0@04>@0004800 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0@04>@0200800 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0@06>@0001100 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120 0@04>@0001200 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220 0@04>@0001300 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 0@04>@000@0414@0000 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@04>@0001500 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0@04>@0001600 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0@04>@0001700 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0@04>@0001800 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0@04>@0001900 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0@04>@0002000 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0@04>@0002100 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0@04>@0002200 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0@04>@0002300 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0@04>@0002400 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0@04>@0002500 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0@04>@0002600 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0@04>@0002700 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0@04>@0002800 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0@04>@0002900 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0@04>@0003000 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0@04>@0003100 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0@04>@0003200 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0@04>@0003300 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0@04>@0003400 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0@04>@0003500 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0@04>@0003600 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0@04>@0003700 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0@04>@0003800 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0@04>@0003900 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0@04>@0004000 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0@04>@0004100 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0@04>@0004200 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0@04>@0004300 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0@04>@0004400 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0@04>@0004500 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0@04>@0004600 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0@04>@0004700 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0@04>@0004800 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0@04>@0200800 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0@06>@0001100 01103 01104 01105 01106 01107 01108 01109 01110 01111 01112 01113 011@0414@00 01115 01116 01117 01118 01119 01120 0@04>@0001200 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220 0@04>@0001300 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 0@04>@000@0414@0000 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@04>@0001500 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0@04>@0001600 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0@04>@0001700 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0@04>@0001800 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0@04>@0001900 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0@04>@0002000 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0@04>@0002100 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0@04>@0002200 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0@04>@0002300 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0@04>@0002400 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0@04>@0002500 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0@04>@0002600 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0@04>@0002700 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0@04>@0002800 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0@04>@0002900 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0@04>@0003000 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0@04>@0003100 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0@04>@0003200 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0@04>@0003300 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0@04>@0003400 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0@04>@0003500 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0@04>@0003600 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0@04>@0003700 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0@04>@0003800 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0@04>@0003900 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0@04>@0004000 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0@04>@0004100 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0@04>@0004200 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0@04>@0004300 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0@04>@0004400 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0@04>@0004500 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0@04>@0004600 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0@04>@0004700 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0@04>@0004800 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0@04>@0200800 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0@06>@0001200 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220 0@04>@0001300 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 0@04>@000@0414@0000 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@04>@0001500 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0@04>@0001600 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0@04>@0001700 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0@04>@0001800 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0@04>@0001900 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0@04>@0002000 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0@04>@0002100 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0@04>@0002200 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0@04>@0002300 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0@04>@0002400 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0@04>@0002500 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0@04>@0002600 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0@04>@0002700 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0@04>@0002800 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0@04>@0002900 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0@04>@0003000 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0@04>@0003100 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0@04>@0003200 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0@04>@0003300 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0@04>@0003400 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0@04>@0003500 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0@04>@0003600 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0@04>@0003700 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0@04>@0003800 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0@04>@0003900 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0@04>@0004000 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0@04>@0004100 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0@04>@0004200 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0@04>@0004300 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0@04>@0004400 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0@04>@0004500 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0@04>@0004600 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0@04>@0004700 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0@04>@0004800 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0@04>@0004900 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0@04>@0200800 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0@06>@0001200 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220 0@04>@0001300 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 0@04>@000@0414@0000 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@04>@0001500 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0@04>@0001600 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0@04>@0001700 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0@04>@0001800 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0@04>@0001900 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0@04>@0002000 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0@04>@0002100 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0@04>@0002200 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0@04>@0002300 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0@04>@0002400 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0@04>@0002500 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0@04>@0002600 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0@04>@0002700 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0@04>@0002800 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0@04>@0002900 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0@04>@0003000 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0@04>@0003100 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0@04>@0003200 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0@04>@0003300 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0@04>@0003400 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0@04>@0003500 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0@04>@0003600 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0@04>@0003700 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0@04>@0003800 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0@04>@0003900 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0@04>@0004000 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0@04>@0004100 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0@04>@0004200 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0@04>@0004300 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0@04>@0004400 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0@04>@0004500 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0@04>@0004600 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0@04>@0004700 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0@04>@0004800 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0@04>@0004900 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0@04>@0200800 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0@06>@0001200 01203 01204 01205 01206 01207 01208 01209 01210 01211 01212 01213 012@0414@00 01215 01216 01217 01218 01219 01220 0@04>@0001300 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 0@04>@000@0414@0000 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@04>@0001500 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0@04>@0001600 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0@04>@0001700 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0@04>@0001800 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0@04>@0001900 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0@04>@0002000 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0@04>@0002100 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0@04>@0002200 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0@04>@0002300 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0@04>@0002400 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0@04>@0002500 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0@04>@0002600 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0@04>@0002700 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0@04>@0002800 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0@04>@0002900 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0@04>@0003000 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0@04>@0003100 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0@04>@0003200 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0@04>@0003300 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0@04>@0003400 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0@04>@0003500 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0@04>@0003600 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0@04>@0003700 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0@04>@0003800 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0@04>@0003900 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0@04>@0004000 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0@04>@0004100 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0@04>@0004200 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0@04>@0004300 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0@04>@0004400 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0@04>@0004500 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0@04>@0004600 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0@04>@0004700 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0@04>@0004800 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0@04>@0004900 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0@04>@0200800 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0@06>@0001300 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 0@04>@000@0414@0000 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@04>@0001500 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0@04>@0001600 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0@04>@0001700 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0@04>@0001800 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0@04>@0001900 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0@04>@0002000 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0@04>@0002100 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0@04>@0002200 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0@04>@0002300 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0@04>@0002400 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0@04>@0002500 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0@04>@0002600 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0@04>@0002700 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0@04>@0002800 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0@04>@0002900 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0@04>@0003000 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0@04>@0003100 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0@04>@0003200 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0@04>@0003300 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0@04>@0003400 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0@04>@0003500 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0@04>@0003600 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0@04>@0003700 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0@04>@0003800 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0@04>@0003900 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0@04>@0004000 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0@04>@0004100 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0@04>@0004200 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0@04>@0004300 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0@04>@0004400 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0@04>@0004500 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0@04>@0004600 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0@04>@0004700 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0@04>@0004800 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0@04>@0004900 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0@04>@0005000 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0@04>@0200800 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0@06>@0001300 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 0@04>@000@0414@0000 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@04>@0001500 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0@04>@0001600 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0@04>@0001700 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0@04>@0001800 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0@04>@0001900 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0@04>@0002000 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0@04>@0002100 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0@04>@0002200 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0@04>@0002300 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0@04>@0002400 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0@04>@0002500 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0@04>@0002600 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0@04>@0002700 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0@04>@0002800 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0@04>@0002900 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0@04>@0003000 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0@04>@0003100 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0@04>@0003200 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0@04>@0003300 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0@04>@0003400 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0@04>@0003500 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0@04>@0003600 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0@04>@0003700 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0@04>@0003800 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0@04>@0003900 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0@04>@0004000 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0@04>@0004100 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0@04>@0004200 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0@04>@0004300 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0@04>@0004400 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0@04>@0004500 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0@04>@0004600 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0@04>@0004700 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0@04>@0004800 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0@04>@0004900 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0@04>@0005000 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 00703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0@04>@0200800 00803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0@06>@0001300 01303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 0@04>@000@0414@0000 0@0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@04>@0001500 01503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0@04>@0001600 01603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0@04>@0001700 01703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0@04>@0001800 01803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0@04>@0001900 01903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0@04>@0002000 02003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0@04>@0002100 02103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0@04>@0002200 02203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0@04>@0002300 02303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0@04>@0002400 02403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0@04>@0002500 02503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0@04>@0002600 02603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0@04>@0002700 02703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0@04>@0002800 02803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0@04>@0002900 02903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0@04>@0003000 03003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0@04>@0003100 03103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0@04>@0003200 03203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0@04>@0003300 03303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0@04>@0003400 03403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0@04>@0003500 03503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0@04>@0003600 03603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0@04>@0003700 03703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0@04>@0003800 03803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0@04>@0003900 03903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0@04>@0004000 04003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0@04>@0004100 04103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0@04>@0004200 04203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0@04>@0004300 04303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0@04>@0004400 04403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0@04>@0004500 04503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0@04>@0004600 04603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0@04>@0004700 04703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0@04>@0004800 04803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0@04>@0004900 04903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0@04>@0005000 05003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 0703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 00@04>@0200800 0803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 00@06>@0001300 1303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 01@04>@000@0414@0000 @0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@041>@0001500 1503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 01@04>@0001600 1603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 01@04>@0001700 1703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 01@04>@0001800 1803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 01@04>@0001900 1903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 01@04>@0002000 2003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 02@04>@0002100 2103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 02@04>@0002200 2203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 02@04>@0002300 2303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 02@04>@0002400 2403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 02@04>@0002500 2503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 02@04>@0002600 2603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 02@04>@0002700 2703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 02@04>@0002800 2803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 02@04>@0002900 2903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 02@04>@0003000 3003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 03@04>@0003100 3103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 03@04>@0003200 3203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 03@04>@0003300 3303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 03@04>@0003400 3403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 03@04>@0003500 3503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 03@04>@0003600 3603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 03@04>@0003700 3703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 03@04>@0003800 3803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 03@04>@0003900 3903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 03@04>@0004000 4003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 04@04>@0004100 4103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 04@04>@0004200 4203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 04@04>@0004300 4303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 04@04>@0004400 4403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 04@04>@0004500 4503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 04@04>@0004600 4603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 04@04>@0004700 4703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 04@04>@0004800 4803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 04@04>@0004900 4903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 04@04>@0005000 5003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 05@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 0703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 00@04>@0200800 0803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 00@06>@0001300 1303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 01@04>@000@0414@0000 @0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@041>@0001500 1503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 01@04>@0001600 1603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 01@04>@0001700 1703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 01@04>@0001800 1803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 01@04>@0001900 1903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 01@04>@0002000 2003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 02@04>@0002100 2103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 02@04>@0002200 2203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 02@04>@0002300 2303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 02@04>@0002400 2403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 02@04>@0002500 2503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 02@04>@0002600 2603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 02@04>@0002700 2703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 02@04>@0002800 2803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 02@04>@0002900 2903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 02@04>@0003000 3003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 03@04>@0003100 3103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 03@04>@0003200 3203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 03@04>@0003300 3303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 03@04>@0003400 3403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 03@04>@0003500 3503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 03@04>@0003600 3603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 03@04>@0003700 3703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 03@04>@0003800 3803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 03@04>@0003900 3903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 03@04>@0004000 4003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 04@04>@0004100 4103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 04@04>@0004200 4203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 04@04>@0004300 4303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 04@04>@0004400 4403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 04@04>@0004500 4503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 04@04>@0004600 4603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 04@04>@0004700 4703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 04@04>@0004800 4803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 04@04>@0004900 4903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 04@04>@0005000 5003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 05@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 0703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 00@04>@0200800 0803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 00@06>@0001300 1303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 01@04>@000@0414@0000 @0414@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@041>@0001500 1503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 01@04>@0001600 1603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 01@04>@0001700 1703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 01@04>@0001800 1803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 01@04>@0001900 1903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 01@04>@0002000 2003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 02@04>@0002100 2103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 02@04>@0002200 2203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 02@04>@0002300 2303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 02@04>@0002400 2403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 02@04>@0002500 2503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 02@04>@0002600 2603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 02@04>@0002700 2703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 02@04>@0002800 2803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 02@04>@0002900 2903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 02@04>@0003000 3003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 03@04>@0003100 3103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 03@04>@0003200 3203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 03@04>@0003300 3303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 03@04>@0003400 3403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 03@04>@0003500 3503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 03@04>@0003600 3603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 03@04>@0003700 3703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 03@04>@0003800 3803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 03@04>@0003900 3903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 03@04>@0004000 4003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 04@04>@0004100 4103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 04@04>@0004200 4203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 04@04>@0004300 4303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 04@04>@0004400 4403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 04@04>@0004500 4503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 04@04>@0004600 4603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 04@04>@0004700 4703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 04@04>@0004800 4803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 04@04>@0004900 4903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 04@04>@0005000 5003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 05@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 008@06>@0001300 303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 013@04>@000@0414@0000 @044@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@0414>@0001500 503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 015@04>@0001600 603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 016@04>@0001700 703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 017@04>@0001800 803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 018@04>@0001900 903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 019@04>@0002000 003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 020@04>@0002100 103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 021@04>@0002200 203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 039@04>@0004000 003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 040@04>@0004100 103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 041@04>@0004200 203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 042@04>@0004300 303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 043@04>@0004400 403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 044@04>@0004500 503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 045@04>@0004600 603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 046@04>@0004700 703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 047@04>@0004800 803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 048@04>@0004900 903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 049@04>@0005000 003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 050@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 008@06>@0001300 303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 013@04>@000@0414@0000 @044@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@0414>@0001500 503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 015@04>@0001600 603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 016@04>@0001700 703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 017@04>@0001800 803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 018@04>@0001900 903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 019@04>@0002000 003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 020@04>@0002100 103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 021@04>@0002200 203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 039@04>@0004000 003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 040@04>@0004100 103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 041@04>@0004200 203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 042@04>@0004300 303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 043@04>@0004400 403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 044@04>@0004500 503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 045@04>@0004600 603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 046@04>@0004700 703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 047@04>@0004800 803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 048@04>@0004900 903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 049@04>@0005000 003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 050@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 703 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 008@06>@0001300 303 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 013@04>@000@0414@0000 @044@0003 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@0414>@0001500 503 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 015@04>@0001600 603 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 016@04>@0001700 703 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 017@04>@0001800 803 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 018@04>@0001900 903 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 019@04>@0002000 003 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 020@04>@0002100 103 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 021@04>@0002200 203 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 039@04>@0004000 003 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 040@04>@0004100 103 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 041@04>@0004200 203 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 042@04>@0004300 303 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 043@04>@0004400 403 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 044@04>@0004500 503 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 045@04>@0004600 603 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 046@04>@0004700 703 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 047@04>@0004800 803 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 048@04>@0004900 903 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 049@04>@0005000 003 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 050@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001300 03 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 0132@04>@000@0414@0000 03 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@0414@002@04>@0001500 03 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0152@04>@0001600 03 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0162@04>@0001700 03 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0172@04>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001300 03 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 0132@04>@000@0414@0000 03 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@0414@002@04>@0001500 03 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0152@04>@0001600 03 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0162@04>@0001700 03 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0172@04>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001300 03 01304 01305 01306 01307 01308 01309 01310 01311 01312 01313 013@0414@00 01315 01316 01317 01318 01319 01320 0132@04>@000@0414@0000 03 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@0414@002@04>@0001500 03 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0152@04>@0001600 03 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0162@04>@0001700 03 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0172@04>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@000@0414@0000 03 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@0414@002@04>@0001500 03 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0152@04>@0001600 03 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0162@04>@0001700 03 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0172@04>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@000@0414@0000 03 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@0414@002@04>@0001500 03 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0152@04>@0001600 03 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0162@04>@0001700 03 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0172@04>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@000@0414@0000 03 0@0414@0004 0@0414@0005 0@0414@0006 0@0414@0007 0@0414@0008 0@0414@0009 0@0414@0010 0@0414@0011 0@0414@0012 0@0414@0013 0@041414@00 0@0414@0015 0@0414@0016 0@0414@0017 0@0414@0018 0@0414@0019 0@0414@0020 0@0414@002@04>@0001500 03 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0152@04>@0001600 03 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0162@04>@0001700 03 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0172@04>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001500 03 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0152@04>@0001600 03 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0162@04>@0001700 03 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0172@04>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001500 03 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0152@04>@0001600 03 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0162@04>@0001700 03 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0172@04>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001500 03 01504 01505 01506 01507 01508 01509 01510 01511 01512 01513 015@0414@00 01515 01516 01517 01518 01519 01520 0152@04>@0001600 03 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0162@04>@0001700 03 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0172@04>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001600 03 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0162@04>@0001700 03 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0172@04>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 053@0414@00 05315 05316 05317 05318 05319 05320 0532@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001600 03 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0162@04>@0001700 03 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0172@04>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 053@0414@00 05315 05316 05317 05318 05319 05320 0532@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001600 03 01604 01605 01606 01607 01608 01609 01610 01611 01612 01613 016@0414@00 01615 01616 01617 01618 01619 01620 0162@04>@0001700 03 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0172@04>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 053@0414@00 05315 05316 05317 05318 05319 05320 0532@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001700 03 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0172@04>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 053@0414@00 05315 05316 05317 05318 05319 05320 0532@04>@0005400 03 05404 05405 05406 05407 05408 05409 05410 05411 05412 05413 054@0414@00 05415 05416 05417 05418 05419 05420 0542@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001700 03 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0172@04>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 053@0414@00 05315 05316 05317 05318 05319 05320 0532@04>@0005400 03 05404 05405 05406 05407 05408 05409 05410 05411 05412 05413 054@0414@00 05415 05416 05417 05418 05419 05420 0542@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001700 03 01704 01705 01706 01707 01708 01709 01710 01711 01712 01713 017@0414@00 01715 01716 01717 01718 01719 01720 0172@04>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 053@0414@00 05315 05316 05317 05318 05319 05320 0532@04>@0005400 03 05404 05405 05406 05407 05408 05409 05410 05411 05412 05413 054@0414@00 05415 05416 05417 05418 05419 05420 0542@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 053@0414@00 05315 05316 05317 05318 05319 05320 0532@04>@0005400 03 05404 05405 05406 05407 05408 05409 05410 05411 05412 05413 054@0414@00 05415 05416 05417 05418 05419 05420 0542@04>@0005500 03 05504 05505 05506 05507 05508 05509 05510 05511 05512 05513 055@0414@00 05515 05516 05517 05518 05519 05520 0552@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 053@0414@00 05315 05316 05317 05318 05319 05320 0532@04>@0005400 03 05404 05405 05406 05407 05408 05409 05410 05411 05412 05413 054@0414@00 05415 05416 05417 05418 05419 05420 0542@04>@0005500 03 05504 05505 05506 05507 05508 05509 05510 05511 05512 05513 055@0414@00 05515 05516 05517 05518 05519 05520 0552@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001800 03 01804 01805 01806 01807 01808 01809 01810 01811 01812 01813 018@0414@00 01815 01816 01817 01818 01819 01820 0182@04>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 053@0414@00 05315 05316 05317 05318 05319 05320 0532@04>@0005400 03 05404 05405 05406 05407 05408 05409 05410 05411 05412 05413 054@0414@00 05415 05416 05417 05418 05419 05420 0542@04>@0005500 03 05504 05505 05506 05507 05508 05509 05510 05511 05512 05513 055@0414@00 05515 05516 05517 05518 05519 05520 0552@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 053@0414@00 05315 05316 05317 05318 05319 05320 0532@04>@0005400 03 05404 05405 05406 05407 05408 05409 05410 05411 05412 05413 054@0414@00 05415 05416 05417 05418 05419 05420 0542@04>@0005500 03 05504 05505 05506 05507 05508 05509 05510 05511 05512 05513 055@0414@00 05515 05516 05517 05518 05519 05520 0552@04>@0005600 03 05604 05605 05606 05607 05608 05609 05610 05611 05612 05613 056@0414@00 05615 05616 05617 05618 05619 05620 0562@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 053@0414@00 05315 05316 05317 05318 05319 05320 0532@04>@0005400 03 05404 05405 05406 05407 05408 05409 05410 05411 05412 05413 054@0414@00 05415 05416 05417 05418 05419 05420 0542@04>@0005500 03 05504 05505 05506 05507 05508 05509 05510 05511 05512 05513 055@0414@00 05515 05516 05517 05518 05519 05520 0552@04>@0005600 03 05604 05605 05606 05607 05608 05609 05610 05611 05612 05613 056@0414@00 05615 05616 05617 05618 05619 05620 0562@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0001900 03 01904 01905 01906 01907 01908 01909 01910 01911 01912 01913 019@0414@00 01915 01916 01917 01918 01919 01920 0192@04>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 053@0414@00 05315 05316 05317 05318 05319 05320 0532@04>@0005400 03 05404 05405 05406 05407 05408 05409 05410 05411 05412 05413 054@0414@00 05415 05416 05417 05418 05419 05420 0542@04>@0005500 03 05504 05505 05506 05507 05508 05509 05510 05511 05512 05513 055@0414@00 05515 05516 05517 05518 05519 05520 0552@04>@0005600 03 05604 05605 05606 05607 05608 05609 05610 05611 05612 05613 056@0414@00 05615 05616 05617 05618 05619 05620 0562@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 053@0414@00 05315 05316 05317 05318 05319 05320 0532@04>@0005400 03 05404 05405 05406 05407 05408 05409 05410 05411 05412 05413 054@0414@00 05415 05416 05417 05418 05419 05420 0542@04>@0005500 03 05504 05505 05506 05507 05508 05509 05510 05511 05512 05513 055@0414@00 05515 05516 05517 05518 05519 05520 0552@04>@0005600 03 05604 05605 05606 05607 05608 05609 05610 05611 05612 05613 056@0414@00 05615 05616 05617 05618 05619 05620 0562@04>@0005700 03 05704 05705 05706 05707 05708 05709 05710 05711 05712 05713 057@0414@00 05715 05716 05717 05718 05719 05720 0572@04>@00:#___________________________________________________________________________________________________________________ +2f =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 053@0414@00 05315 05316 05317 05318 05319 05320 0532@04>@0005400 03 05404 05405 05406 05407 05408 05409 05410 05411 05412 05413 054@0414@00 05415 05416 05417 05418 05419 05420 0542@04>@0005500 03 05504 05505 05506 05507 05508 05509 05510 05511 05512 05513 055@0414@00 05515 05516 05517 05518 05519 05520 0552@04>@0005600 03 05604 05605 05606 05607 05608 05609 05610 05611 05612 05613 056@0414@00 05615 05616 05617 05618 05619 05620 0562@04>@0005700 03 05704 05705 05706 05707 05708 05709 05710 05711 05712 05713 057@0414@00 05715 05716 05717 05718 05719 05720 0572@04>@00/#___________________________________________________________________________________________________________________ +30 =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 053@0414@00 05315 05316 05317 05318 05319 05320 0532@04>@0005400 03 05404 05405 05406 05407 05408 05409 05410 05411 05412 05413 054@0414@00 05415 05416 05417 05418 05419 05420 0542@04>@0005500 03 05504 05505 05506 05507 05508 05509 05510 05511 05512 05513 055@0414@00 05515 05516 05517 05518 05519 05520 0552@04>@0005600 03 05604 05605 05606 05607 05608 05609 05610 05611 05612 05613 056@0414@00 05615 05616 05617 05618 05619 05620 0562@04>@0005700 03 05704 05705 05706 05707 05708 05709 05710 05711 05712 05713 057@0414@00 05715 05716 05717 05718 05719 05720 0572@04>@00/0#__________________________________________________________________________________________________________________ +34 =00700 03 00704 00705 00706 00707 00708 00709 00710 00711 00712 00713 007@0414@00 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 00804 00805 00806 00807 00808 00809 00810 00811 00812 00813 008@0614@02 00815 00816 00817 00818 00819 00820 0082@06>@0002000 03 02004 02005 02006 02007 02008 02009 02010 02011 02012 02013 020@0414@00 02015 02016 02017 02018 02019 02020 0202@04>@0002100 03 02104 02105 02106 02107 02108 02109 02110 02111 02112 02113 021@0414@00 02115 02116 02117 02118 02119 02120 0212@04>@0002200 03 02204 02205 02206 02207 02208 02209 02210 02211 02212 02213 022@0414@00 02215 02216 02217 02218 02219 02220 0222@04>@0002300 03 02304 02305 02306 02307 02308 02309 02310 02311 02312 02313 023@0414@00 02315 02316 02317 02318 02319 02320 0232@04>@0002400 03 02404 02405 02406 02407 02408 02409 02410 02411 02412 02413 024@0414@00 02415 02416 02417 02418 02419 02420 0242@04>@0002500 03 02504 02505 02506 02507 02508 02509 02510 02511 02512 02513 025@0414@00 02515 02516 02517 02518 02519 02520 0252@04>@0002600 03 02604 02605 02606 02607 02608 02609 02610 02611 02612 02613 026@0414@00 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 02704 02705 02706 02707 02708 02709 02710 02711 02712 02713 027@0414@00 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 02804 02805 02806 02807 02808 02809 02810 02811 02812 02813 028@0414@00 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 02904 02905 02906 02907 02908 02909 02910 02911 02912 02913 029@0414@00 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 03004 03005 03006 03007 03008 03009 03010 03011 03012 03013 030@0414@00 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 03104 03105 03106 03107 03108 03109 03110 03111 03112 03113 031@0414@00 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 03204 03205 03206 03207 03208 03209 03210 03211 03212 03213 032@0414@00 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 03304 03305 03306 03307 03308 03309 03310 03311 03312 03313 033@0414@00 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 03404 03405 03406 03407 03408 03409 03410 03411 03412 03413 034@0414@00 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 03504 03505 03506 03507 03508 03509 03510 03511 03512 03513 035@0414@00 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 03604 03605 03606 03607 03608 03609 03610 03611 03612 03613 036@0414@00 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 03704 03705 03706 03707 03708 03709 03710 03711 03712 03713 037@0414@00 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 03804 03805 03806 03807 03808 03809 03810 03811 03812 03813 038@0414@00 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 03904 03905 03906 03907 03908 03909 03910 03911 03912 03913 039@0414@00 03915 03916 03917 03918 03919 03920 0392@04>@0004000 03 04004 04005 04006 04007 04008 04009 04010 04011 04012 04013 040@0414@00 04015 04016 04017 04018 04019 04020 0402@04>@0004100 03 04104 04105 04106 04107 04108 04109 04110 04111 04112 04113 041@0414@00 04115 04116 04117 04118 04119 04120 0412@04>@0004200 03 04204 04205 04206 04207 04208 04209 04210 04211 04212 04213 042@0414@00 04215 04216 04217 04218 04219 04220 0422@04>@0004300 03 04304 04305 04306 04307 04308 04309 04310 04311 04312 04313 043@0414@00 04315 04316 04317 04318 04319 04320 0432@04>@0004400 03 04404 04405 04406 04407 04408 04409 04410 04411 04412 04413 044@0414@00 04415 04416 04417 04418 04419 04420 0442@04>@0004500 03 04504 04505 04506 04507 04508 04509 04510 04511 04512 04513 045@0414@00 04515 04516 04517 04518 04519 04520 0452@04>@0004600 03 04604 04605 04606 04607 04608 04609 04610 04611 04612 04613 046@0414@00 04615 04616 04617 04618 04619 04620 0462@04>@0004700 03 04704 04705 04706 04707 04708 04709 04710 04711 04712 04713 047@0414@00 04715 04716 04717 04718 04719 04720 0472@04>@0004800 03 04804 04805 04806 04807 04808 04809 04810 04811 04812 04813 048@0414@00 04815 04816 04817 04818 04819 04820 0482@04>@0004900 03 04904 04905 04906 04907 04908 04909 04910 04911 04912 04913 049@0414@00 04915 04916 04917 04918 04919 04920 0492@04>@0005000 03 05004 05005 05006 05007 05008 05009 05010 05011 05012 05013 050@0414@00 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 05104 05105 05106 05107 05108 05109 05110 05111 05112 05113 051@0414@00 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 05204 05205 05206 05207 05208 05209 05210 05211 05212 05213 052@0414@00 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 05304 05305 05306 05307 05308 05309 05310 05311 05312 05313 053@0414@00 05315 05316 05317 05318 05319 05320 0532@04>@0005400 03 05404 05405 05406 05407 05408 05409 05410 05411 05412 05413 054@0414@00 05415 05416 05417 05418 05419 05420 0542@04>@0005500 03 05504 05505 05506 05507 05508 05509 05510 05511 05512 05513 055@0414@00 05515 05516 05517 05518 05519 05520 0552@04>@0005600 03 05604 05605 05606 05607 05608 05609 05610 05611 05612 05613 056@0414@00 05615 05616 05617 05618 05619 05620 0562@04>@0005700 03 05704 05705 05706 05707 05708 05709 05710 05711 05712 05713 057@0414@00 05715 05716 05717 05718 05719 05720 0572@04>@00/04#_________________________________________________________________________________________________________________ +a =00700 00701 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0200800 00801 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@06>@0001800 01801 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>04@00000 @0404@00001 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @040>04@00100 @0404@00101 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @040>04@00200 @0404@00201 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @040>04@00300 @0404@00301 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @040>04@00400 @0404@00401 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @040>04@00500 @0404@00501 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @040>04@00600 @0404@00601 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @040>04@00700 @0404@00701 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @040>04@00800 @0404@00801 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @040>04@00900 @0404@00901 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @040>@0005000 05001 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 0@04>@0005100 05101 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 0@04>@0005200 05201 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 0@04>@0005300 05301 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 0@04>@0005400 05401 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 0@04>@0005500 05501 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 00701 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0200800 00801 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@06>@0001800 01801 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>04@00000 @0404@00001 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @040>04@00100 @0404@00101 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @040>04@00200 @0404@00201 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @040>04@00300 @0404@00301 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @040>04@00400 @0404@00401 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @040>04@00500 @0404@00501 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @040>04@00600 @0404@00601 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @040>04@00700 @0404@00701 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @040>04@00800 @0404@00801 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @040>04@00900 @0404@00901 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @040>@0005000 05001 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 0@04>@0005100 05101 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 0@04>@0005200 05201 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 0@04>@0005300 05301 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 0@04>@0005400 05401 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 0@04>@0005500 05501 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 00701 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0200800 00801 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@06>@0001800 01801 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>04@00000 @0404@00001 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @040>04@00100 @0404@00101 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @040>04@00200 @0404@00201 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @040>04@00300 @0404@00301 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @040>04@00400 @0404@00401 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @040>04@00500 @0404@00501 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @040>04@00600 @0404@00601 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @040>04@00700 @0404@00701 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @040>04@00800 @0404@00801 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @040>04@00900 @0404@00901 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @040>@0005000 05001 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 0@04>@0005100 05101 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 0@04>@0005200 05201 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 0@04>@0005300 05301 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 0@04>@0005400 05401 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 0@04>@0005500 05501 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =00700 00701 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0200800 00801 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@06>@0001800 01801 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>04@00000 @0404@00001 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @040>04@00100 @0404@00101 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @040>04@00200 @0404@00201 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @040>04@00300 @0404@00301 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @040>04@00400 @0404@00401 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @040>04@00500 @0404@00501 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @040>04@00600 @0404@00601 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @040>04@00700 @0404@00701 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @040>04@00800 @0404@00801 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @040>04@00900 @0404@00901 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @040>@0005000 05001 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 0@04>@0005100 05101 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 0@04>@0005200 05201 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 0@04>@0005300 05301 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 0@04>@0005400 05401 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 0@04>@0005500 05501 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 00701 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0200800 00801 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@06>@0001800 01801 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>04@00000 @0404@00001 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @040>04@00100 @0404@00101 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @040>04@00200 @0404@00201 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @040>04@00300 @0404@00301 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @040>04@00400 @0404@00401 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @040>04@00500 @0404@00501 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @040>04@00600 @0404@00601 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @040>04@00700 @0404@00701 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @040>04@00800 @0404@00801 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @040>04@00900 @0404@00901 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @040>@0005000 05001 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 0@04>@0005100 05101 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 0@04>@0005200 05201 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 0@04>@0005300 05301 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 0@04>@0005400 05401 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 0@04>@0005500 05501 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 00701 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0200800 00801 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@06>@0001800 01801 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>04@00000 @0404@00001 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @040>04@00100 @0404@00101 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @040>04@00200 @0404@00201 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @040>04@00300 @0404@00301 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @040>04@00400 @0404@00401 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @040>04@00500 @0404@00501 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @040>04@00600 @0404@00601 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @040>04@00700 @0404@00701 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @040>04@00800 @0404@00801 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @040>04@00900 @0404@00901 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @040>@0005000 05001 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 0@04>@0005100 05101 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 0@04>@0005200 05201 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 0@04>@0005300 05301 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 0@04>@0005400 05401 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 0@04>@0005500 05501 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =00700 00701 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0200800 00801 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@06>@0001800 01801 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>04@00000 @0404@00001 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @040>04@00100 @0404@00101 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @040>04@00200 @0404@00201 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @040>04@00300 @0404@00301 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @040>04@00400 @0404@00401 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @040>04@00500 @0404@00501 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @040>04@00600 @0404@00601 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @040>04@00700 @0404@00701 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @040>04@00800 @0404@00801 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @040>04@00900 @0404@00901 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @040>@0005000 05001 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 0@04>@0005100 05101 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 0@04>@0005200 05201 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 0@04>@0005300 05301 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 0@04>@0005400 05401 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 0@04>@0005500 05501 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 00701 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0200800 00801 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@06>@0001800 01801 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>04@00000 @0404@00001 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @040>04@00100 @0404@00101 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @040>04@00200 @0404@00201 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @040>04@00300 @0404@00301 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @040>04@00400 @0404@00401 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @040>04@00500 @0404@00501 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @040>04@00600 @0404@00601 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @040>04@00700 @0404@00701 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @040>04@00800 @0404@00801 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @040>04@00900 @0404@00901 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @040>@0005000 05001 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 0@04>@0005100 05101 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 0@04>@0005200 05201 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 0@04>@0005300 05301 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 0@04>@0005400 05401 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 0@04>@0005500 05501 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 00701 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0@04>@0200800 00801 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0@06>@0001800 01801 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0@04>@0001900 01901 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0@04>@0002000 02001 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0@04>@0002100 02101 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0@04>@0002200 02201 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0@04>@0002300 02301 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0@04>@0002400 02401 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0@04>@0002500 02501 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0@04>@0002600 02601 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0@04>@0002700 02701 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0@04>@0002800 02801 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0@04>@0002900 02901 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0@04>@0003000 03001 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0@04>@0003100 03101 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0@04>@0003200 03201 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0@04>@0003300 03301 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0@04>@0003400 03401 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0@04>@0003500 03501 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0@04>@0003600 03601 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0@04>@0003700 03701 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0@04>@0003800 03801 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0@04>@0003900 03901 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0@04>04@00000 @0404@00001 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @040>04@00100 @0404@00101 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @040>04@00200 @0404@00201 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @040>04@00300 @0404@00301 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @040>04@00400 @0404@00401 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @040>04@00500 @0404@00501 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @040>04@00600 @0404@00601 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @040>04@00700 @0404@00701 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @040>04@00800 @0404@00801 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @040>04@00900 @0404@00901 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @040>@0005000 05001 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 0@04>@0005100 05101 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 0@04>@0005200 05201 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 0@04>@0005300 05301 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 0@04>@0005400 05401 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 0@04>@0005500 05501 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 0701 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00@04>@0200800 0801 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00@06>@0001800 1801 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01@04>@0001900 1901 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01@04>@0002000 2001 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02@04>@0002100 2101 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02@04>@0002200 2201 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02@04>@0002300 2301 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02@04>@0002400 2401 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02@04>@0002500 2501 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02@04>@0002600 2601 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02@04>@0002700 2701 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02@04>@0002800 2801 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02@04>@0002900 2901 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02@04>@0003000 3001 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03@04>@0003100 3101 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03@04>@0003200 3201 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03@04>@0003300 3301 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03@04>@0003400 3401 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03@04>@0003500 3501 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03@04>@0003600 3601 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03@04>@0003700 3701 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03@04>@0003800 3801 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03@04>@0003900 3901 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03@04>04@00000 @044@00001 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404>04@00100 @044@00101 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404>04@00200 @044@00201 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404>04@00300 @044@00301 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404>04@00400 @044@00401 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404>04@00500 @044@00501 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404>04@00600 @044@00601 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404>04@00700 @044@00701 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404>04@00800 @044@00801 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404>04@00900 @044@00901 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404>@0005000 5001 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05@04>@0005100 5101 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05@04>@0005200 5201 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05@04>@0005300 5301 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05@04>@0005400 5401 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05@04>@0005500 5501 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 0701 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00@04>@0200800 0801 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00@06>@0001800 1801 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01@04>@0001900 1901 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01@04>@0002000 2001 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02@04>@0002100 2101 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02@04>@0002200 2201 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02@04>@0002300 2301 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02@04>@0002400 2401 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02@04>@0002500 2501 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02@04>@0002600 2601 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02@04>@0002700 2701 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02@04>@0002800 2801 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02@04>@0002900 2901 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02@04>@0003000 3001 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03@04>@0003100 3101 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03@04>@0003200 3201 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03@04>@0003300 3301 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03@04>@0003400 3401 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03@04>@0003500 3501 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03@04>@0003600 3601 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03@04>@0003700 3701 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03@04>@0003800 3801 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03@04>@0003900 3901 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03@04>04@00000 @044@00001 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404>04@00100 @044@00101 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404>04@00200 @044@00201 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404>04@00300 @044@00301 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404>04@00400 @044@00401 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404>04@00500 @044@00501 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404>04@00600 @044@00601 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404>04@00700 @044@00701 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404>04@00800 @044@00801 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404>04@00900 @044@00901 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404>@0005000 5001 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05@04>@0005100 5101 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05@04>@0005200 5201 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05@04>@0005300 5301 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05@04>@0005400 5401 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05@04>@0005500 5501 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 0701 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00@04>@0200800 0801 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00@06>@0001800 1801 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01@04>@0001900 1901 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01@04>@0002000 2001 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02@04>@0002100 2101 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02@04>@0002200 2201 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02@04>@0002300 2301 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02@04>@0002400 2401 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02@04>@0002500 2501 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02@04>@0002600 2601 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02@04>@0002700 2701 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02@04>@0002800 2801 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02@04>@0002900 2901 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02@04>@0003000 3001 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03@04>@0003100 3101 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03@04>@0003200 3201 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03@04>@0003300 3301 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03@04>@0003400 3401 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03@04>@0003500 3501 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03@04>@0003600 3601 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03@04>@0003700 3701 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03@04>@0003800 3801 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03@04>@0003900 3901 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03@04>04@00000 @044@00001 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404>04@00100 @044@00101 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404>04@00200 @044@00201 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404>04@00300 @044@00301 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404>04@00400 @044@00401 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404>04@00500 @044@00501 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404>04@00600 @044@00601 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404>04@00700 @044@00701 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404>04@00800 @044@00801 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404>04@00900 @044@00901 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404>@0005000 5001 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05@04>@0005100 5101 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05@04>@0005200 5201 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05@04>@0005300 5301 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05@04>@0005400 5401 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05@04>@0005500 5501 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 701 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 007@04>@0200800 801 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 008@06>@0001800 801 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 018@04>@0001900 901 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 019@04>@0002000 001 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 020@04>@0002100 101 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 021@04>@0002200 201 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 022@04>@0002300 301 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 023@04>@0002400 401 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 024@04>@0002500 501 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 025@04>@0002600 601 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 026@04>@0002700 701 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 027@04>@0002800 801 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 028@04>@0002900 901 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 029@04>@0003000 001 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 030@04>@0003100 101 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 031@04>@0003200 201 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 032@04>@0003300 301 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 033@04>@0003400 401 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 034@04>@0003500 501 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 035@04>@0003600 601 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 036@04>@0003700 701 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 037@04>@0003800 801 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 038@04>@0003900 901 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 039@04>04@00000 001 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@000@04>04@00100 101 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@001@04>04@00200 201 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@002@04>04@00300 301 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@003@04>04@00400 401 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@004@04>04@00500 501 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@005@04>04@00600 601 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@006@04>04@00700 701 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@007@04>04@00800 801 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@008@04>04@00900 901 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@009@04>@0005000 001 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 050@04>@0005100 101 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 051@04>@0005200 201 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 052@04>@0005300 301 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 053@04>@0005400 401 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 054@04>@0005500 501 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 055@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 701 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 007@04>@0200800 801 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 008@06>@0001800 801 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 018@04>@0001900 901 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 019@04>@0002000 001 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 020@04>@0002100 101 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 021@04>@0002200 201 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 022@04>@0002300 301 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 023@04>@0002400 401 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 024@04>@0002500 501 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 025@04>@0002600 601 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 026@04>@0002700 701 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 027@04>@0002800 801 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 028@04>@0002900 901 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 029@04>@0003000 001 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 030@04>@0003100 101 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 031@04>@0003200 201 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 032@04>@0003300 301 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 033@04>@0003400 401 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 034@04>@0003500 501 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 035@04>@0003600 601 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 036@04>@0003700 701 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 037@04>@0003800 801 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 038@04>@0003900 901 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 039@04>04@00000 001 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@000@04>04@00100 101 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@001@04>04@00200 201 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@002@04>04@00300 301 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@003@04>04@00400 401 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@004@04>04@00500 501 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@005@04>04@00600 601 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@006@04>04@00700 701 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@007@04>04@00800 801 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@008@04>04@00900 901 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@009@04>@0005000 001 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 050@04>@0005100 101 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 051@04>@0005200 201 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 052@04>@0005300 301 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 053@04>@0005400 401 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 054@04>@0005500 501 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 055@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 701 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 007@04>@0200800 801 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 008@06>@0001800 801 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 018@04>@0001900 901 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 019@04>@0002000 001 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 020@04>@0002100 101 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 021@04>@0002200 201 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 022@04>@0002300 301 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 023@04>@0002400 401 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 024@04>@0002500 501 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 025@04>@0002600 601 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 026@04>@0002700 701 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 027@04>@0002800 801 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 028@04>@0002900 901 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 029@04>@0003000 001 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 030@04>@0003100 101 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 031@04>@0003200 201 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 032@04>@0003300 301 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 033@04>@0003400 401 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 034@04>@0003500 501 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 035@04>@0003600 601 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 036@04>@0003700 701 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 037@04>@0003800 801 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 038@04>@0003900 901 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 039@04>04@00000 001 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@000@04>04@00100 101 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@001@04>04@00200 201 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@002@04>04@00300 301 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@003@04>04@00400 401 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@004@04>04@00500 501 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@005@04>04@00600 601 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@006@04>04@00700 701 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@007@04>04@00800 801 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@008@04>04@00900 901 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@009@04>@0005000 001 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 050@04>@0005100 101 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 051@04>@0005200 201 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 052@04>@0005300 301 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 053@04>@0005400 401 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 054@04>@0005500 501 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 055@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 01 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0071@04>@0200800 01 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0081@06>@0001800 01 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0181@04>@0001900 01 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0191@04>@0002000 01 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0201@04>@0002100 01 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0211@04>@0002200 01 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0221@04>@0002300 01 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0231@04>@0002400 01 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0241@04>@0002500 01 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0251@04>@0002600 01 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0261@04>@0002700 01 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0271@04>@0002800 01 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0281@04>@0002900 01 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0291@04>@0003000 01 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0301@04>@0003100 01 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0311@04>@0003200 01 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0321@04>@0003300 01 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0331@04>@0003400 01 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0341@04>@0003500 01 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0351@04>@0003600 01 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0361@04>@0003700 01 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0371@04>@0003800 01 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0381@04>@0003900 01 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0391@04>04@00000 01 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@0001@04>04@00100 01 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@0011@04>04@00200 01 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@0021@04>04@00300 01 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@0031@04>04@00400 01 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@0041@04>04@00500 01 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@0051@04>04@00600 01 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@0061@04>04@00700 01 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@0071@04>04@00800 01 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@0081@04>04@00900 01 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@0091@04>@0005000 01 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 0501@04>@0005100 01 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 0511@04>@0005200 01 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 0521@04>@0005300 01 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 0531@04>@0005400 01 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 0541@04>@0005500 01 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 0551@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 01 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0071@04>@0200800 01 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0081@06>@0001800 01 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0181@04>@0001900 01 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0191@04>@0002000 01 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0201@04>@0002100 01 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0211@04>@0002200 01 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0221@04>@0002300 01 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0231@04>@0002400 01 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0241@04>@0002500 01 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0251@04>@0002600 01 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0261@04>@0002700 01 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0271@04>@0002800 01 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0281@04>@0002900 01 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0291@04>@0003000 01 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0301@04>@0003100 01 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0311@04>@0003200 01 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0321@04>@0003300 01 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0331@04>@0003400 01 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0341@04>@0003500 01 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0351@04>@0003600 01 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0361@04>@0003700 01 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0371@04>@0003800 01 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0381@04>@0003900 01 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0391@04>04@00000 01 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@0001@04>04@00100 01 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@0011@04>04@00200 01 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@0021@04>04@00300 01 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@0031@04>04@00400 01 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@0041@04>04@00500 01 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@0051@04>04@00600 01 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@0061@04>04@00700 01 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@0071@04>04@00800 01 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@0081@04>04@00900 01 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@0091@04>@0005000 01 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 0501@04>@0005100 01 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 0511@04>@0005200 01 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 0521@04>@0005300 01 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 0531@04>@0005400 01 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 0541@04>@0005500 01 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 0551@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 01 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 0071@04>@0200800 01 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 0081@06>@0001800 01 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 0181@04>@0001900 01 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 0191@04>@0002000 01 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 0201@04>@0002100 01 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 0211@04>@0002200 01 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 0221@04>@0002300 01 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 0231@04>@0002400 01 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 0241@04>@0002500 01 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 0251@04>@0002600 01 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 0261@04>@0002700 01 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 0271@04>@0002800 01 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 0281@04>@0002900 01 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 0291@04>@0003000 01 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 0301@04>@0003100 01 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 0311@04>@0003200 01 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 0321@04>@0003300 01 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 0331@04>@0003400 01 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 0341@04>@0003500 01 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 0351@04>@0003600 01 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 0361@04>@0003700 01 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 0371@04>@0003800 01 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 0381@04>@0003900 01 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 0391@04>04@00000 01 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@0001@04>04@00100 01 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@0011@04>04@00200 01 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@0021@04>04@00300 01 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@0031@04>04@00400 01 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@0041@04>04@00500 01 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@0051@04>04@00600 01 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@0061@04>04@00700 01 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@0071@04>04@00800 01 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@0081@04>04@00900 01 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@0091@04>@0005000 01 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 0501@04>@0005100 01 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 0511@04>@0005200 01 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 0521@04>@0005300 01 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 0531@04>@0005400 01 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 0541@04>@0005500 01 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 0551@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 1 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719@04>@0200800 1 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819@06>@0001800 1 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819@04>@0001900 1 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919@04>@0002000 1 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019@04>@0002100 1 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119@04>@0002200 1 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219@04>@0002300 1 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319@04>@0002400 1 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419@04>@0002500 1 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519@04>@0002600 1 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619@04>@0002700 1 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719@04>@0002800 1 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819@04>@0002900 1 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919@04>@0003000 1 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019@04>@0003100 1 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119@04>@0003200 1 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219@04>@0003300 1 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319@04>@0003400 1 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419@04>@0003500 1 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519@04>@0003600 1 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619@04>@0003700 1 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719@04>@0003800 1 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819@04>@0003900 1 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919@04>04@00000 1 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019@04>04@00100 1 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119@04>04@00200 1 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219@04>04@00300 1 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319@04>04@00400 1 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419@04>04@00500 1 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519@04>04@00600 1 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619@04>04@00700 1 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719@04>04@00800 1 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819@04>04@00900 1 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919@04>@0005000 1 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019@04>@0005100 1 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119@04>@0005200 1 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219@04>@0005300 1 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319@04>@0005400 1 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419@04>@0005500 1 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 1 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719@04>@0200800 1 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819@06>@0001800 1 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819@04>@0001900 1 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919@04>@0002000 1 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019@04>@0002100 1 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119@04>@0002200 1 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219@04>@0002300 1 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319@04>@0002400 1 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419@04>@0002500 1 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519@04>@0002600 1 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619@04>@0002700 1 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719@04>@0002800 1 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819@04>@0002900 1 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919@04>@0003000 1 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019@04>@0003100 1 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119@04>@0003200 1 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219@04>@0003300 1 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319@04>@0003400 1 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419@04>@0003500 1 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519@04>@0003600 1 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619@04>@0003700 1 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719@04>@0003800 1 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819@04>@0003900 1 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919@04>04@00000 1 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019@04>04@00100 1 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119@04>04@00200 1 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219@04>04@00300 1 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319@04>04@00400 1 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419@04>04@00500 1 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519@04>04@00600 1 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619@04>04@00700 1 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719@04>04@00800 1 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819@04>04@00900 1 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919@04>@0005000 1 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019@04>@0005100 1 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119@04>@0005200 1 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219@04>@0005300 1 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319@04>@0005400 1 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419@04>@0005500 1 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 1 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719@04>@0200800 1 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819@06>@0001800 1 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819@04>@0001900 1 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919@04>@0002000 1 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019@04>@0002100 1 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119@04>@0002200 1 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219@04>@0002300 1 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319@04>@0002400 1 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419@04>@0002500 1 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519@04>@0002600 1 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619@04>@0002700 1 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719@04>@0002800 1 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819@04>@0002900 1 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919@04>@0003000 1 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019@04>@0003100 1 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119@04>@0003200 1 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219@04>@0003300 1 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319@04>@0003400 1 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419@04>@0003500 1 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519@04>@0003600 1 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619@04>@0003700 1 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719@04>@0003800 1 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819@04>@0003900 1 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919@04>04@00000 1 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019@04>04@00100 1 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119@04>04@00200 1 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219@04>04@00300 1 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319@04>04@00400 1 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419@04>04@00500 1 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519@04>04@00600 1 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619@04>04@00700 1 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719@04>04@00800 1 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819@04>04@00900 1 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919@04>@0005000 1 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019@04>@0005100 1 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119@04>@0005200 1 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219@04>@0005300 1 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319@04>@0005400 1 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419@04>@0005500 1 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 @04>@0200800 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 @06>@0001800 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 @04>@0001900 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 @04>@0002000 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 @04>@0002100 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 @04>@0002200 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 @04>@0002300 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 @04>@0002400 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 @04>@0002500 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 @04>@0002600 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 @04>@0002700 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 @04>@0002800 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 @04>@0002900 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 @04>@0003000 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 @04>@0003100 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 @04>@0003200 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 @04>@0003300 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 @04>@0003400 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 @04>@0003500 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 @04>@0003600 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 @04>@0003700 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 @04>@0003800 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 @04>@0003900 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 @04>04@00000 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @04>04@00100 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @04>04@00200 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @04>04@00300 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @04>04@00400 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @04>04@00500 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @04>04@00600 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @04>04@00700 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @04>04@00800 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @04>04@00900 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @04>@0005000 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 @04>@0005100 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 @04>@0005200 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 @04>@0005300 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 @04>@0005400 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 @04>@0005500 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 @04>@00:#___________________________________________________________________________________________________________________ +1b =00700 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 @04>@0200800 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 @06>@0001800 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 @04>@0001900 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 @04>@0002000 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 @04>@0002100 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 @04>@0002200 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 @04>@0002300 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 @04>@0002400 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 @04>@0002500 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 @04>@0002600 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 @04>@0002700 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 @04>@0002800 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 @04>@0002900 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 @04>@0003000 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 @04>@0003100 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 @04>@0003200 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 @04>@0003300 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 @04>@0003400 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 @04>@0003500 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 @04>@0003600 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 @04>@0003700 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 @04>@0003800 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 @04>@0003900 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 @04>04@00000 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @04>04@00100 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @04>04@00200 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @04>04@00300 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @04>04@00400 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @04>04@00500 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @04>04@00600 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @04>04@00700 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @04>04@00800 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @04>04@00900 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @04>@0005000 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 @04>@0005100 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 @04>@0005200 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 @04>@0005300 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 @04>@0005400 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 @04>@0005500 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 @04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 @04>@0200800 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 @06>@0001800 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 @04>@0001900 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 @04>@0002000 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 @04>@0002100 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 @04>@0002200 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 @04>@0002300 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 @04>@0002400 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 @04>@0002500 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 @04>@0002600 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 @04>@0002700 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 @04>@0002800 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 @04>@0002900 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 @04>@0003000 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 @04>@0003100 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 @04>@0003200 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 @04>@0003300 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 @04>@0003400 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 @04>@0003500 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 @04>@0003600 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 @04>@0003700 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 @04>@0003800 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 @04>@0003900 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 @04>04@00000 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @04>04@00100 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @04>04@00200 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @04>04@00300 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @04>04@00400 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @04>04@00500 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @04>04@00600 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @04>04@00700 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @04>04@00800 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @04>04@00900 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @04>@0005000 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 @04>@0005100 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 @04>@0005200 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 @04>@0005300 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 @04>@0005400 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 @04>@0005500 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 @04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 0@04>@0200800 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 0@06>@0001800 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 0@04>@0001900 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 0@04>@0002000 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 0@04>@0002100 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 0@04>@0002200 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 0@04>@0002300 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 0@04>@0002400 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 0@04>@0002500 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 0@04>@0002600 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 0@04>@0002700 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 0@04>@0002800 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 0@04>@0002900 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 0@04>@0003000 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 0@04>@0003100 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 0@04>@0003200 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 0@04>@0003300 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 0@04>@0003400 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 0@04>@0003500 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 0@04>@0003600 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 0@04>@0003700 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 0@04>@0003800 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 0@04>@0003900 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 0@04>04@00000 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @040>04@00100 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @040>04@00200 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @040>04@00300 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @040>04@00400 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @040>04@00500 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @040>04@00600 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @040>04@00700 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @040>04@00800 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @040>04@00900 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @040>@0005000 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 0@04>@0005100 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 0@04>@0005200 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 0@04>@0005300 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 0@04>@0005400 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 0@04>@0005500 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 0@04>@0200800 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 0@06>@0001800 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 0@04>@0001900 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 0@04>@0002000 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 0@04>@0002100 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 0@04>@0002200 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 0@04>@0002300 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 0@04>@0002400 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 0@04>@0002500 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 0@04>@0002600 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 0@04>@0002700 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 0@04>@0002800 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 0@04>@0002900 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 0@04>@0003000 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 0@04>@0003100 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 0@04>@0003200 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 0@04>@0003300 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 0@04>@0003400 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 0@04>@0003500 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 0@04>@0003600 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 0@04>@0003700 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 0@04>@0003800 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 0@04>@0003900 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 0@04>04@00000 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @040>04@00100 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @040>04@00200 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @040>04@00300 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @040>04@00400 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @040>04@00500 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @040>04@00600 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @040>04@00700 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @040>04@00800 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @040>04@00900 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @040>@0005000 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 0@04>@0005100 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 0@04>@0005200 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 0@04>@0005300 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 0@04>@0005400 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 0@04>@0005500 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 00702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 0@04>@0200800 00802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 0@06>@0001800 01802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 0@04>@0001900 01902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 0@04>@0002000 02002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 0@04>@0002100 02102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 0@04>@0002200 02202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 0@04>@0002300 02302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 0@04>@0002400 02402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 0@04>@0002500 02502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 0@04>@0002600 02602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 0@04>@0002700 02702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 0@04>@0002800 02802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 0@04>@0002900 02902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 0@04>@0003000 03002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 0@04>@0003100 03102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 0@04>@0003200 03202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 0@04>@0003300 03302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 0@04>@0003400 03402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 0@04>@0003500 03502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 0@04>@0003600 03602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 0@04>@0003700 03702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 0@04>@0003800 03802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 0@04>@0003900 03902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 0@04>04@00000 @0404@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @040>04@00100 @0404@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @040>04@00200 @0404@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @040>04@00300 @0404@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @040>04@00400 @0404@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @040>04@00500 @0404@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @040>04@00600 @0404@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @040>04@00700 @0404@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @040>04@00800 @0404@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @040>04@00900 @0404@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @040>@0005000 05002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 0@04>@0005100 05102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 0@04>@0005200 05202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 0@04>@0005300 05302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 0@04>@0005400 05402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 0@04>@0005500 05502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 0702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00@04>@0200800 0802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00@06>@0001800 1802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01@04>@0001900 1902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01@04>@0002000 2002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02@04>@0002100 2102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02@04>@0002200 2202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02@04>@0002300 2302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02@04>@0002400 2402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02@04>@0002500 2502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02@04>@0002600 2602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02@04>@0002700 2702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02@04>@0002800 2802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02@04>@0002900 2902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02@04>@0003000 3002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03@04>@0003100 3102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03@04>@0003200 3202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03@04>@0003300 3302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03@04>@0003400 3402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03@04>@0003500 3502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03@04>@0003600 3602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03@04>@0003700 3702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03@04>@0003800 3802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03@04>@0003900 3902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03@04>04@00000 @044@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404>04@00100 @044@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404>04@00200 @044@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404>04@00300 @044@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404>04@00400 @044@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404>04@00500 @044@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404>04@00600 @044@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404>04@00700 @044@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404>04@00800 @044@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404>04@00900 @044@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404>@0005000 5002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05@04>@0005100 5102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05@04>@0005200 5202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05@04>@0005300 5302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05@04>@0005400 5402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05@04>@0005500 5502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 0702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00@04>@0200800 0802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00@06>@0001800 1802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01@04>@0001900 1902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01@04>@0002000 2002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02@04>@0002100 2102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02@04>@0002200 2202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02@04>@0002300 2302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02@04>@0002400 2402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02@04>@0002500 2502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02@04>@0002600 2602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02@04>@0002700 2702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02@04>@0002800 2802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02@04>@0002900 2902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02@04>@0003000 3002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03@04>@0003100 3102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03@04>@0003200 3202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03@04>@0003300 3302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03@04>@0003400 3402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03@04>@0003500 3502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03@04>@0003600 3602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03@04>@0003700 3702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03@04>@0003800 3802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03@04>@0003900 3902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03@04>04@00000 @044@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404>04@00100 @044@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404>04@00200 @044@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404>04@00300 @044@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404>04@00400 @044@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404>04@00500 @044@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404>04@00600 @044@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404>04@00700 @044@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404>04@00800 @044@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404>04@00900 @044@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404>@0005000 5002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05@04>@0005100 5102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05@04>@0005200 5202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05@04>@0005300 5302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05@04>@0005400 5402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05@04>@0005500 5502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 0702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00@04>@0200800 0802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00@06>@0001800 1802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01@04>@0001900 1902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01@04>@0002000 2002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02@04>@0002100 2102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02@04>@0002200 2202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02@04>@0002300 2302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02@04>@0002400 2402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02@04>@0002500 2502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02@04>@0002600 2602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02@04>@0002700 2702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02@04>@0002800 2802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02@04>@0002900 2902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02@04>@0003000 3002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03@04>@0003100 3102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03@04>@0003200 3202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03@04>@0003300 3302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03@04>@0003400 3402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03@04>@0003500 3502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03@04>@0003600 3602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03@04>@0003700 3702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03@04>@0003800 3802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03@04>@0003900 3902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03@04>04@00000 @044@00002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404>04@00100 @044@00102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404>04@00200 @044@00202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404>04@00300 @044@00302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404>04@00400 @044@00402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404>04@00500 @044@00502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404>04@00600 @044@00602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404>04@00700 @044@00702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404>04@00800 @044@00802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404>04@00900 @044@00902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404>@0005000 5002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05@04>@0005100 5102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05@04>@0005200 5202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05@04>@0005300 5302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05@04>@0005400 5402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05@04>@0005500 5502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 007@04>@0200800 802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 008@06>@0001800 802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 018@04>@0001900 902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 019@04>@0002000 002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 020@04>@0002100 102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 021@04>@0002200 202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 022@04>@0002300 302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 023@04>@0002400 402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 024@04>@0002500 502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 025@04>@0002600 602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 026@04>@0002700 702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 027@04>@0002800 802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 028@04>@0002900 902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 029@04>@0003000 002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 030@04>@0003100 102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 031@04>@0003200 202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 032@04>@0003300 302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 033@04>@0003400 402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 034@04>@0003500 502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 035@04>@0003600 602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 036@04>@0003700 702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 037@04>@0003800 802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 038@04>@0003900 902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 039@04>04@00000 002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@000@04>04@00100 102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@001@04>04@00200 202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@002@04>04@00300 302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@003@04>04@00400 402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@004@04>04@00500 502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@005@04>04@00600 602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@006@04>04@00700 702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@007@04>04@00800 802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@008@04>04@00900 902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@009@04>@0005000 002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 050@04>@0005100 102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 051@04>@0005200 202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 052@04>@0005300 302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 053@04>@0005400 402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 054@04>@0005500 502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 055@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 007@04>@0200800 802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 008@06>@0001800 802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 018@04>@0001900 902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 019@04>@0002000 002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 020@04>@0002100 102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 021@04>@0002200 202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 022@04>@0002300 302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 023@04>@0002400 402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 024@04>@0002500 502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 025@04>@0002600 602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 026@04>@0002700 702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 027@04>@0002800 802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 028@04>@0002900 902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 029@04>@0003000 002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 030@04>@0003100 102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 031@04>@0003200 202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 032@04>@0003300 302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 033@04>@0003400 402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 034@04>@0003500 502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 035@04>@0003600 602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 036@04>@0003700 702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 037@04>@0003800 802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 038@04>@0003900 902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 039@04>04@00000 002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@000@04>04@00100 102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@001@04>04@00200 202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@002@04>04@00300 302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@003@04>04@00400 402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@004@04>04@00500 502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@005@04>04@00600 602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@006@04>04@00700 702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@007@04>04@00800 802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@008@04>04@00900 902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@009@04>@0005000 002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 050@04>@0005100 102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 051@04>@0005200 202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 052@04>@0005300 302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 053@04>@0005400 402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 054@04>@0005500 502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 055@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 702 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 007@04>@0200800 802 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 008@06>@0001800 802 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 018@04>@0001900 902 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 019@04>@0002000 002 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 020@04>@0002100 102 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 021@04>@0002200 202 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 022@04>@0002300 302 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 023@04>@0002400 402 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 024@04>@0002500 502 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 025@04>@0002600 602 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 026@04>@0002700 702 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 027@04>@0002800 802 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 028@04>@0002900 902 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 029@04>@0003000 002 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 030@04>@0003100 102 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 031@04>@0003200 202 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 032@04>@0003300 302 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 033@04>@0003400 402 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 034@04>@0003500 502 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 035@04>@0003600 602 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 036@04>@0003700 702 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 037@04>@0003800 802 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 038@04>@0003900 902 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 039@04>04@00000 002 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@000@04>04@00100 102 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@001@04>04@00200 202 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@002@04>04@00300 302 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@003@04>04@00400 402 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@004@04>04@00500 502 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@005@04>04@00600 602 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@006@04>04@00700 702 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@007@04>04@00800 802 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@008@04>04@00900 902 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@009@04>@0005000 002 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 050@04>@0005100 102 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 051@04>@0005200 202 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 052@04>@0005300 302 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 053@04>@0005400 402 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 054@04>@0005500 502 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 055@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 02 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 0072@04>@0200800 02 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 0082@06>@0001800 02 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 0182@04>@0001900 02 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 0192@04>@0002000 02 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 0202@04>@0002100 02 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 0212@04>@0002200 02 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 0222@04>@0002300 02 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 0232@04>@0002400 02 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 0242@04>@0002500 02 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 0252@04>@0002600 02 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 0262@04>@0002700 02 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 0272@04>@0002800 02 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 0282@04>@0002900 02 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 0292@04>@0003000 02 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 0302@04>@0003100 02 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 0312@04>@0003200 02 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 0322@04>@0003300 02 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 0332@04>@0003400 02 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 0342@04>@0003500 02 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 0352@04>@0003600 02 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 0362@04>@0003700 02 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 0372@04>@0003800 02 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 0382@04>@0003900 02 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 0392@04>04@00000 02 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@0002@04>04@00100 02 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@0012@04>04@00200 02 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@0022@04>04@00300 02 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@0032@04>04@00400 02 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@0042@04>04@00500 02 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@0052@04>04@00600 02 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@0062@04>04@00700 02 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@0072@04>04@00800 02 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@0082@04>04@00900 02 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@0092@04>@0005000 02 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 0502@04>@0005100 02 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 0512@04>@0005200 02 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 0522@04>@0005300 02 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 0532@04>@0005400 02 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 0542@04>@0005500 02 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 0552@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 02 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 0072@04>@0200800 02 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 0082@06>@0001800 02 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 0182@04>@0001900 02 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 0192@04>@0002000 02 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 0202@04>@0002100 02 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 0212@04>@0002200 02 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 0222@04>@0002300 02 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 0232@04>@0002400 02 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 0242@04>@0002500 02 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 0252@04>@0002600 02 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 0262@04>@0002700 02 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 0272@04>@0002800 02 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 0282@04>@0002900 02 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 0292@04>@0003000 02 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 0302@04>@0003100 02 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 0312@04>@0003200 02 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 0322@04>@0003300 02 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 0332@04>@0003400 02 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 0342@04>@0003500 02 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 0352@04>@0003600 02 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 0362@04>@0003700 02 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 0372@04>@0003800 02 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 0382@04>@0003900 02 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 0392@04>04@00000 02 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@0002@04>04@00100 02 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@0012@04>04@00200 02 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@0022@04>04@00300 02 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@0032@04>04@00400 02 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@0042@04>04@00500 02 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@0052@04>04@00600 02 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@0062@04>04@00700 02 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@0072@04>04@00800 02 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@0082@04>04@00900 02 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@0092@04>@0005000 02 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 0502@04>@0005100 02 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 0512@04>@0005200 02 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 0522@04>@0005300 02 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 0532@04>@0005400 02 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 0542@04>@0005500 02 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 0552@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 02 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 0072@04>@0200800 02 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 0082@06>@0001800 02 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 0182@04>@0001900 02 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 0192@04>@0002000 02 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 0202@04>@0002100 02 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 0212@04>@0002200 02 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 0222@04>@0002300 02 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 0232@04>@0002400 02 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 0242@04>@0002500 02 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 0252@04>@0002600 02 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 0262@04>@0002700 02 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 0272@04>@0002800 02 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 0282@04>@0002900 02 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 0292@04>@0003000 02 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 0302@04>@0003100 02 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 0312@04>@0003200 02 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 0322@04>@0003300 02 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 0332@04>@0003400 02 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 0342@04>@0003500 02 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 0352@04>@0003600 02 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 0362@04>@0003700 02 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 0372@04>@0003800 02 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 0382@04>@0003900 02 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 0392@04>04@00000 02 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@0002@04>04@00100 02 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@0012@04>04@00200 02 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@0022@04>04@00300 02 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@0032@04>04@00400 02 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@0042@04>04@00500 02 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@0052@04>04@00600 02 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@0062@04>04@00700 02 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@0072@04>04@00800 02 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@0082@04>04@00900 02 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@0092@04>@0005000 02 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 0502@04>@0005100 02 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 0512@04>@0005200 02 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 0522@04>@0005300 02 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 0532@04>@0005400 02 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 0542@04>@0005500 02 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 0552@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 2 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720@04>@0200800 2 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820@06>@0001800 2 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820@04>@0001900 2 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920@04>@0002000 2 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020@04>@0002100 2 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120@04>@0002200 2 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220@04>@0002300 2 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320@04>@0002400 2 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420@04>@0002500 2 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520@04>@0002600 2 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620@04>@0002700 2 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720@04>@0002800 2 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820@04>@0002900 2 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920@04>@0003000 2 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020@04>@0003100 2 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120@04>@0003200 2 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220@04>@0003300 2 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320@04>@0003400 2 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420@04>@0003500 2 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520@04>@0003600 2 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620@04>@0003700 2 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720@04>@0003800 2 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820@04>@0003900 2 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920@04>04@00000 2 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020@04>04@00100 2 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120@04>04@00200 2 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220@04>04@00300 2 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320@04>04@00400 2 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420@04>04@00500 2 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520@04>04@00600 2 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620@04>04@00700 2 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720@04>04@00800 2 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820@04>04@00900 2 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920@04>@0005000 2 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020@04>@0005100 2 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120@04>@0005200 2 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220@04>@0005300 2 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320@04>@0005400 2 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420@04>@0005500 2 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 2 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720@04>@0200800 2 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820@06>@0001800 2 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820@04>@0001900 2 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920@04>@0002000 2 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020@04>@0002100 2 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120@04>@0002200 2 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220@04>@0002300 2 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320@04>@0002400 2 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420@04>@0002500 2 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520@04>@0002600 2 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620@04>@0002700 2 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720@04>@0002800 2 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820@04>@0002900 2 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920@04>@0003000 2 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020@04>@0003100 2 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120@04>@0003200 2 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220@04>@0003300 2 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320@04>@0003400 2 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420@04>@0003500 2 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520@04>@0003600 2 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620@04>@0003700 2 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720@04>@0003800 2 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820@04>@0003900 2 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920@04>04@00000 2 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020@04>04@00100 2 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120@04>04@00200 2 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220@04>04@00300 2 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320@04>04@00400 2 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420@04>04@00500 2 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520@04>04@00600 2 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620@04>04@00700 2 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720@04>04@00800 2 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820@04>04@00900 2 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920@04>@0005000 2 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020@04>@0005100 2 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120@04>@0005200 2 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220@04>@0005300 2 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320@04>@0005400 2 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420@04>@0005500 2 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 2 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720@04>@0200800 2 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820@06>@0001800 2 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820@04>@0001900 2 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920@04>@0002000 2 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020@04>@0002100 2 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120@04>@0002200 2 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220@04>@0002300 2 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320@04>@0002400 2 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420@04>@0002500 2 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520@04>@0002600 2 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620@04>@0002700 2 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720@04>@0002800 2 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820@04>@0002900 2 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920@04>@0003000 2 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020@04>@0003100 2 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120@04>@0003200 2 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220@04>@0003300 2 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320@04>@0003400 2 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420@04>@0003500 2 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520@04>@0003600 2 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620@04>@0003700 2 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720@04>@0003800 2 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820@04>@0003900 2 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920@04>04@00000 2 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020@04>04@00100 2 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120@04>04@00200 2 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220@04>04@00300 2 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320@04>04@00400 2 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420@04>04@00500 2 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520@04>04@00600 2 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620@04>04@00700 2 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720@04>04@00800 2 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820@04>04@00900 2 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920@04>@0005000 2 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020@04>@0005100 2 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120@04>@0005200 2 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220@04>@0005300 2 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320@04>@0005400 2 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420@04>@0005500 2 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 @04>@0200800 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 @06>@0001800 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 @04>@0001900 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 @04>@0002000 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 @04>@0002100 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 @04>@0002200 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 @04>@0002300 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 @04>@0002400 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 @04>@0002500 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 @04>@0002600 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 @04>@0002700 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 @04>@0002800 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 @04>@0002900 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 @04>@0003000 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 @04>@0003100 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 @04>@0003200 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 @04>@0003300 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 @04>@0003400 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 @04>@0003500 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 @04>@0003600 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 @04>@0003700 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 @04>@0003800 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 @04>@0003900 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 @04>04@00000 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @04>04@00100 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @04>04@00200 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @04>04@00300 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @04>04@00400 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @04>04@00500 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @04>04@00600 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @04>04@00700 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @04>04@00800 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @04>04@00900 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @04>@0005000 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 @04>@0005100 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 @04>@0005200 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 @04>@0005300 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 @04>@0005400 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 @04>@0005500 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 @04>@00:#___________________________________________________________________________________________________________________ +1b =00700 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 @04>@0200800 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 @06>@0001800 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 @04>@0001900 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 @04>@0002000 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 @04>@0002100 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 @04>@0002200 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 @04>@0002300 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 @04>@0002400 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 @04>@0002500 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 @04>@0002600 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 @04>@0002700 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 @04>@0002800 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 @04>@0002900 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 @04>@0003000 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 @04>@0003100 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 @04>@0003200 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 @04>@0003300 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 @04>@0003400 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 @04>@0003500 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 @04>@0003600 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 @04>@0003700 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 @04>@0003800 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 @04>@0003900 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 @04>04@00000 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @04>04@00100 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @04>04@00200 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @04>04@00300 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @04>04@00400 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @04>04@00500 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @04>04@00600 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @04>04@00700 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @04>04@00800 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @04>04@00900 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @04>@0005000 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 @04>@0005100 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 @04>@0005200 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 @04>@0005300 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 @04>@0005400 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 @04>@0005500 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 @04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 @04>@0200800 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 @06>@0001800 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 @04>@0001900 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 @04>@0002000 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 @04>@0002100 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 @04>@0002200 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 @04>@0002300 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 @04>@0002400 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 @04>@0002500 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 @04>@0002600 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 @04>@0002700 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 @04>@0002800 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 @04>@0002900 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 @04>@0003000 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 @04>@0003100 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 @04>@0003200 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 @04>@0003300 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 @04>@0003400 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 @04>@0003500 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 @04>@0003600 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 @04>@0003700 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 @04>@0003800 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 @04>@0003900 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 @04>04@00000 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @04>04@00100 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @04>04@00200 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @04>04@00300 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @04>04@00400 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @04>04@00500 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @04>04@00600 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @04>04@00700 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @04>04@00800 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @04>04@00900 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @04>@0005000 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 @04>@0005100 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 @04>@0005200 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 @04>@0005300 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 @04>@0005400 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 @04>@0005500 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 @04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 0@04>@0200800 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 0@06>@0001800 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 0@04>@0001900 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 0@04>@0002000 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 0@04>@0002100 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 0@04>@0002200 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 0@04>@0002300 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 0@04>@0002400 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 0@04>@0002500 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 0@04>@0002600 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 0@04>@0002700 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 0@04>@0002800 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 0@04>@0002900 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 0@04>@0003000 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 0@04>@0003100 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 0@04>@0003200 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 0@04>@0003300 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 0@04>@0003400 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 0@04>@0003500 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 0@04>@0003600 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 0@04>@0003700 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 0@04>@0003800 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 0@04>@0003900 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 0@04>04@00000 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @040>04@00100 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @040>04@00200 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @040>04@00300 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @040>04@00400 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @040>04@00500 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @040>04@00600 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @040>04@00700 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @040>04@00800 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @040>04@00900 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @040>@0005000 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 0@04>@0005100 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 0@04>@0005200 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 0@04>@0005300 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 0@04>@0005400 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 0@04>@0005500 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 0@04>@0200800 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 0@06>@0001800 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 0@04>@0001900 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 0@04>@0002000 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 0@04>@0002100 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 0@04>@0002200 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 0@04>@0002300 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 0@04>@0002400 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 0@04>@0002500 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 0@04>@0002600 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 0@04>@0002700 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 0@04>@0002800 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 0@04>@0002900 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 0@04>@0003000 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 0@04>@0003100 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 0@04>@0003200 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 0@04>@0003300 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 0@04>@0003400 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 0@04>@0003500 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 0@04>@0003600 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 0@04>@0003700 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 0@04>@0003800 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 0@04>@0003900 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 0@04>04@00000 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @040>04@00100 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @040>04@00200 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @040>04@00300 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @040>04@00400 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @040>04@00500 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @040>04@00600 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @040>04@00700 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @040>04@00800 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @040>04@00900 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @040>@0005000 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 0@04>@0005100 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 0@04>@0005200 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 0@04>@0005300 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 0@04>@0005400 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 0@04>@0005500 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 00703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 0@04>@0200800 00803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 0@06>@0001800 01803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 0@04>@0001900 01903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 0@04>@0002000 02003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 0@04>@0002100 02103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 0@04>@0002200 02203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 0@04>@0002300 02303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 0@04>@0002400 02403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 0@04>@0002500 02503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 0@04>@0002600 02603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 0@04>@0002700 02703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 0@04>@0002800 02803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 0@04>@0002900 02903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 0@04>@0003000 03003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 0@04>@0003100 03103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 0@04>@0003200 03203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 0@04>@0003300 03303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 0@04>@0003400 03403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 0@04>@0003500 03503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 0@04>@0003600 03603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 0@04>@0003700 03703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 0@04>@0003800 03803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 0@04>@0003900 03903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 0@04>04@00000 @0404@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @040>04@00100 @0404@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @040>04@00200 @0404@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @040>04@00300 @0404@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @040>04@00400 @0404@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @040>04@00500 @0404@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @040>04@00600 @0404@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @040>04@00700 @0404@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @040>04@00800 @0404@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @040>04@00900 @0404@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @040>@0005000 05003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 0@04>@0005100 05103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 0@04>@0005200 05203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 0@04>@0005300 05303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 0@04>@0005400 05403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 0@04>@0005500 05503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 0703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00@04>@0200800 0803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00@06>@0001800 1803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 01@04>@0001900 1903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 01@04>@0002000 2003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 02@04>@0002100 2103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 02@04>@0002200 2203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 02@04>@0002300 2303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 02@04>@0002400 2403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 02@04>@0002500 2503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 02@04>@0002600 2603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02@04>@0002700 2703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02@04>@0002800 2803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02@04>@0002900 2903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02@04>@0003000 3003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03@04>@0003100 3103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03@04>@0003200 3203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03@04>@0003300 3303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03@04>@0003400 3403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03@04>@0003500 3503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03@04>@0003600 3603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03@04>@0003700 3703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03@04>@0003800 3803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03@04>@0003900 3903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03@04>04@00000 @044@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404>04@00100 @044@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404>04@00200 @044@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404>04@00300 @044@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404>04@00400 @044@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404>04@00500 @044@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404>04@00600 @044@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404>04@00700 @044@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404>04@00800 @044@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404>04@00900 @044@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404>@0005000 5003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05@04>@0005100 5103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05@04>@0005200 5203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05@04>@0005300 5303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05@04>@0005400 5403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05@04>@0005500 5503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 0703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00@04>@0200800 0803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00@06>@0001800 1803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 01@04>@0001900 1903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 01@04>@0002000 2003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 02@04>@0002100 2103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 02@04>@0002200 2203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 02@04>@0002300 2303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 02@04>@0002400 2403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 02@04>@0002500 2503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 02@04>@0002600 2603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02@04>@0002700 2703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02@04>@0002800 2803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02@04>@0002900 2903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02@04>@0003000 3003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03@04>@0003100 3103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03@04>@0003200 3203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03@04>@0003300 3303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03@04>@0003400 3403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03@04>@0003500 3503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03@04>@0003600 3603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03@04>@0003700 3703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03@04>@0003800 3803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03@04>@0003900 3903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03@04>04@00000 @044@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404>04@00100 @044@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404>04@00200 @044@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404>04@00300 @044@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404>04@00400 @044@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404>04@00500 @044@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404>04@00600 @044@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404>04@00700 @044@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404>04@00800 @044@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404>04@00900 @044@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404>@0005000 5003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05@04>@0005100 5103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05@04>@0005200 5203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05@04>@0005300 5303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05@04>@0005400 5403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05@04>@0005500 5503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 0703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00@04>@0200800 0803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00@06>@0001800 1803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 01@04>@0001900 1903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 01@04>@0002000 2003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 02@04>@0002100 2103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 02@04>@0002200 2203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 02@04>@0002300 2303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 02@04>@0002400 2403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 02@04>@0002500 2503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 02@04>@0002600 2603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02@04>@0002700 2703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02@04>@0002800 2803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02@04>@0002900 2903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02@04>@0003000 3003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03@04>@0003100 3103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03@04>@0003200 3203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03@04>@0003300 3303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03@04>@0003400 3403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03@04>@0003500 3503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03@04>@0003600 3603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03@04>@0003700 3703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03@04>@0003800 3803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03@04>@0003900 3903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03@04>04@00000 @044@00003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404>04@00100 @044@00103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404>04@00200 @044@00203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404>04@00300 @044@00303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404>04@00400 @044@00403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404>04@00500 @044@00503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404>04@00600 @044@00603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404>04@00700 @044@00703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404>04@00800 @044@00803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404>04@00900 @044@00903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404>@0005000 5003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05@04>@0005100 5103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05@04>@0005200 5203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05@04>@0005300 5303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05@04>@0005400 5403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05@04>@0005500 5503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0001800 803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 018@04>@0001900 903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 019@04>@0002000 003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 020@04>@0002100 103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 021@04>@0002200 203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0001800 803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 018@04>@0001900 903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 019@04>@0002000 003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 020@04>@0002100 103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 021@04>@0002200 203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0001800 803 018@0404@00 01805 01806 01807 01808 01809 01810 01811 01812 01813 01814 01815 01816 01817 01818 01819 01820 018@04>@0001900 903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 019@04>@0002000 003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 020@04>@0002100 103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 021@04>@0002200 203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0001900 903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 019@04>@0002000 003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 020@04>@0002100 103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 021@04>@0002200 203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0001900 903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 019@04>@0002000 003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 020@04>@0002100 103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 021@04>@0002200 203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0001900 903 019@0404@00 01905 01906 01907 01908 01909 01910 01911 01912 01913 01914 01915 01916 01917 01918 01919 01920 019@04>@0002000 003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 020@04>@0002100 103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 021@04>@0002200 203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002000 003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 020@04>@0002100 103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 021@04>@0002200 203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002000 003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 020@04>@0002100 103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 021@04>@0002200 203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002000 003 020@0404@00 02005 02006 02007 02008 02009 02010 02011 02012 02013 02014 02015 02016 02017 02018 02019 02020 020@04>@0002100 103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 021@04>@0002200 203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002100 103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 021@04>@0002200 203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002100 103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 021@04>@0002200 203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002100 103 021@0404@00 02105 02106 02107 02108 02109 02110 02111 02112 02113 02114 02115 02116 02117 02118 02119 02120 021@04>@0002200 203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002200 203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@0005900 903 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 059@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002200 203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@0005900 903 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 059@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002200 203 022@0404@00 02205 02206 02207 02208 02209 02210 02211 02212 02213 02214 02215 02216 02217 02218 02219 02220 022@04>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@0005900 903 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 059@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@0005900 903 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 059@04>@0006000 003 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 060@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@0005900 903 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 059@04>@0006000 003 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 060@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002300 303 023@0404@00 02305 02306 02307 02308 02309 02310 02311 02312 02313 02314 02315 02316 02317 02318 02319 02320 023@04>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@0005900 903 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 059@04>@0006000 003 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 060@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@0005900 903 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 059@04>@0006000 003 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 060@04>@0006100 103 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 061@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@0005900 903 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 059@04>@0006000 003 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 060@04>@0006100 103 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 061@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002400 403 024@0404@00 02405 02406 02407 02408 02409 02410 02411 02412 02413 02414 02415 02416 02417 02418 02419 02420 024@04>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@0005900 903 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 059@04>@0006000 003 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 060@04>@0006100 103 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 061@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@0005900 903 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 059@04>@0006000 003 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 060@04>@0006100 103 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 061@04>@0006200 203 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 062@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@0005900 903 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 059@04>@0006000 003 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 060@04>@0006100 103 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 061@04>@0006200 203 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 062@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002500 503 025@0404@00 02505 02506 02507 02508 02509 02510 02511 02512 02513 02514 02515 02516 02517 02518 02519 02520 025@04>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@0005900 903 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 059@04>@0006000 003 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 060@04>@0006100 103 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 061@04>@0006200 203 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 062@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@0005900 903 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 059@04>@0006000 003 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 060@04>@0006100 103 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 061@04>@0006200 203 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 062@04>@0006300 303 063@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 063@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@0005900 903 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 059@04>@0006000 003 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 060@04>@0006100 103 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 061@04>@0006200 203 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 062@04>@0006300 303 063@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 063@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 703 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 007@04>@0200800 803 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 008@06>@0002600 603 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 026@04>@0002700 703 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 027@04>@0002800 803 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 028@04>@0002900 903 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 029@04>@0003000 003 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 030@04>@0003100 103 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 031@04>@0003200 203 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 032@04>@0003300 303 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 033@04>@0003400 403 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 034@04>@0003500 503 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 035@04>@0003600 603 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 036@04>@0003700 703 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 037@04>@0003800 803 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 038@04>@0003900 903 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 039@04>04@00000 003 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@000@04>04@00100 103 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@001@04>04@00200 203 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@002@04>04@00300 303 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@003@04>04@00400 403 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@004@04>04@00500 503 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@005@04>04@00600 603 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@006@04>04@00700 703 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@007@04>04@00800 803 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@008@04>04@00900 903 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@009@04>@0005000 003 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 050@04>@0005100 103 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 051@04>@0005200 203 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 052@04>@0005300 303 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 053@04>@0005400 403 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 054@04>@0005500 503 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 055@04>@0005600 603 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 056@04>@0005700 703 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 057@04>@0005800 803 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 058@04>@0005900 903 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 059@04>@0006000 003 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 060@04>@0006100 103 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 061@04>@0006200 203 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 062@04>@0006300 303 063@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 063@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 03 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 0082@06>@0002600 03 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 0392@04>04@00000 03 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@0002@04>04@00100 03 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@0012@04>04@00200 03 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@0022@04>04@00300 03 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@0032@04>04@00400 03 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@0042@04>04@00500 03 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@0052@04>04@00600 03 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@0062@04>04@00700 03 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@0072@04>04@00800 03 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@0082@04>04@00900 03 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@0092@04>@0005000 03 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 0532@04>@0005400 03 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 0542@04>@0005500 03 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 0552@04>@0005600 03 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 0562@04>@0005700 03 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 0572@04>@0005800 03 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 0582@04>@0005900 03 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 0592@04>@0006000 03 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 0602@04>@0006100 03 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 0612@04>@0006200 03 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 0622@04>@0006300 03 063@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 0632@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 03 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 0082@06>@0002600 03 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 0392@04>04@00000 03 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@0002@04>04@00100 03 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@0012@04>04@00200 03 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@0022@04>04@00300 03 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@0032@04>04@00400 03 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@0042@04>04@00500 03 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@0052@04>04@00600 03 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@0062@04>04@00700 03 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@0072@04>04@00800 03 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@0082@04>04@00900 03 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@0092@04>@0005000 03 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 0532@04>@0005400 03 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 0542@04>@0005500 03 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 0552@04>@0005600 03 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 0562@04>@0005700 03 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 0572@04>@0005800 03 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 0582@04>@0005900 03 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 0592@04>@0006000 03 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 0602@04>@0006100 03 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 0612@04>@0006200 03 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 0622@04>@0006300 03 063@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 0632@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 03 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 0072@04>@0200800 03 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 0082@06>@0002600 03 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 0262@04>@0002700 03 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 0272@04>@0002800 03 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 0282@04>@0002900 03 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 0292@04>@0003000 03 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 0302@04>@0003100 03 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 0312@04>@0003200 03 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 0322@04>@0003300 03 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 0332@04>@0003400 03 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 0342@04>@0003500 03 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 0352@04>@0003600 03 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 0362@04>@0003700 03 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 0372@04>@0003800 03 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 0382@04>@0003900 03 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 0392@04>04@00000 03 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@0002@04>04@00100 03 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@0012@04>04@00200 03 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@0022@04>04@00300 03 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@0032@04>04@00400 03 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@0042@04>04@00500 03 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@0052@04>04@00600 03 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@0062@04>04@00700 03 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@0072@04>04@00800 03 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@0082@04>04@00900 03 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@0092@04>@0005000 03 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 0502@04>@0005100 03 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 0512@04>@0005200 03 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 0522@04>@0005300 03 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 0532@04>@0005400 03 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 0542@04>@0005500 03 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 0552@04>@0005600 03 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 0562@04>@0005700 03 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 0572@04>@0005800 03 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 0582@04>@0005900 03 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 0592@04>@0006000 03 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 0602@04>@0006100 03 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 0612@04>@0006200 03 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 0622@04>@0006300 03 063@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 0632@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 3 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721@04>@0200800 3 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821@06>@0002600 3 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621@04>@0002700 3 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721@04>@0002800 3 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821@04>@0002900 3 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921@04>@0003000 3 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021@04>@0003100 3 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121@04>@0003200 3 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221@04>@0003300 3 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321@04>@0003400 3 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421@04>@0003500 3 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521@04>@0003600 3 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621@04>@0003700 3 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721@04>@0003800 3 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821@04>@0003900 3 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921@04>04@00000 3 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021@04>04@00100 3 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121@04>04@00200 3 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221@04>04@00300 3 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321@04>04@00400 3 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421@04>04@00500 3 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521@04>04@00600 3 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621@04>04@00700 3 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721@04>04@00800 3 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821@04>04@00900 3 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921@04>@0005000 3 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021@04>@0005100 3 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121@04>@0005200 3 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221@04>@0005300 3 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321@04>@0005400 3 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421@04>@0005500 3 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521@04>@0005600 3 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621@04>@0005700 3 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721@04>@0005800 3 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821@04>@0005900 3 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921@04>@0006000 3 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021@04>@0006100 3 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121@04>@0006200 3 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221@04>@0006300 3 063@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 3 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721@04>@0200800 3 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821@06>@0002600 3 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621@04>@0002700 3 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721@04>@0002800 3 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821@04>@0002900 3 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921@04>@0003000 3 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021@04>@0003100 3 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121@04>@0003200 3 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221@04>@0003300 3 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321@04>@0003400 3 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421@04>@0003500 3 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521@04>@0003600 3 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621@04>@0003700 3 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721@04>@0003800 3 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821@04>@0003900 3 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921@04>04@00000 3 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021@04>04@00100 3 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121@04>04@00200 3 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221@04>04@00300 3 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321@04>04@00400 3 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421@04>04@00500 3 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521@04>04@00600 3 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621@04>04@00700 3 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721@04>04@00800 3 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821@04>04@00900 3 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921@04>@0005000 3 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021@04>@0005100 3 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121@04>@0005200 3 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221@04>@0005300 3 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321@04>@0005400 3 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421@04>@0005500 3 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521@04>@0005600 3 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621@04>@0005700 3 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721@04>@0005800 3 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821@04>@0005900 3 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921@04>@0006000 3 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021@04>@0006100 3 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121@04>@0006200 3 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221@04>@0006300 3 063@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 3 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721@04>@0200800 3 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821@06>@0002600 3 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621@04>@0002700 3 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721@04>@0002800 3 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821@04>@0002900 3 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921@04>@0003000 3 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021@04>@0003100 3 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121@04>@0003200 3 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221@04>@0003300 3 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321@04>@0003400 3 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421@04>@0003500 3 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521@04>@0003600 3 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621@04>@0003700 3 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721@04>@0003800 3 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821@04>@0003900 3 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921@04>04@00000 3 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021@04>04@00100 3 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121@04>04@00200 3 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221@04>04@00300 3 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321@04>04@00400 3 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421@04>04@00500 3 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521@04>04@00600 3 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621@04>04@00700 3 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721@04>04@00800 3 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821@04>04@00900 3 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921@04>@0005000 3 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021@04>@0005100 3 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121@04>@0005200 3 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221@04>@0005300 3 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321@04>@0005400 3 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421@04>@0005500 3 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521@04>@0005600 3 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621@04>@0005700 3 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721@04>@0005800 3 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821@04>@0005900 3 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921@04>@0006000 3 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021@04>@0006100 3 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121@04>@0006200 3 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221@04>@0006300 3 063@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 @04>@0200800 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 @06>@0002600 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 @04>@0002700 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 @04>@0002800 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 @04>@0002900 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 @04>@0003000 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 @04>@0003100 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 @04>@0003200 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 @04>@0003300 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 @04>@0003400 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 @04>@0003500 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 @04>@0003600 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 @04>@0003700 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 @04>@0003800 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 @04>@0003900 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 @04>04@00000 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @04>04@00100 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @04>04@00200 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @04>04@00300 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @04>04@00400 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @04>04@00500 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @04>04@00600 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @04>04@00700 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @04>04@00800 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @04>04@00900 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @04>@0005000 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 @04>@0005100 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 @04>@0005200 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 @04>@0005300 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 @04>@0005400 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 @04>@0005500 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 @04>@0005600 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 @04>@0005700 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 @04>@0005800 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 @04>@0005900 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 @04>@0006000 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 @04>@0006100 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 @04>@0006200 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 @04>@0006300 063@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 @04>@00:#___________________________________________________________________________________________________________________ +1b =00700 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 @04>@0200800 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 @06>@0002600 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 @04>@0002700 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 @04>@0002800 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 @04>@0002900 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 @04>@0003000 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 @04>@0003100 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 @04>@0003200 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 @04>@0003300 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 @04>@0003400 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 @04>@0003500 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 @04>@0003600 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 @04>@0003700 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 @04>@0003800 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 @04>@0003900 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 @04>04@00000 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @04>04@00100 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @04>04@00200 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @04>04@00300 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @04>04@00400 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @04>04@00500 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @04>04@00600 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @04>04@00700 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @04>04@00800 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @04>04@00900 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @04>@0005000 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 @04>@0005100 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 @04>@0005200 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 @04>@0005300 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 @04>@0005400 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 @04>@0005500 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 @04>@0005600 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 @04>@0005700 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 @04>@0005800 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 @04>@0005900 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 @04>@0006000 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 @04>@0006100 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 @04>@0006200 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 @04>@0006300 063@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 @04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 @04>@0200800 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 @06>@0002600 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 @04>@0002700 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 @04>@0002800 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 @04>@0002900 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 @04>@0003000 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 @04>@0003100 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 @04>@0003200 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 @04>@0003300 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 @04>@0003400 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 @04>@0003500 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 @04>@0003600 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 @04>@0003700 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 @04>@0003800 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 @04>@0003900 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 @04>04@00000 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @04>04@00100 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @04>04@00200 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @04>04@00300 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @04>04@00400 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @04>04@00500 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @04>04@00600 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @04>04@00700 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @04>04@00800 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @04>04@00900 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @04>@0005000 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 @04>@0005100 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 @04>@0005200 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 @04>@0005300 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 @04>@0005400 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 @04>@0005500 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 @04>@0005600 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 @04>@0005700 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 @04>@0005800 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 @04>@0005900 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 @04>@0006000 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 @04>@0006100 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 @04>@0006200 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 @04>@0006300 063@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 @04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 0@04>@0200800 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 0@06>@0002600 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 0@04>@0002700 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 0@04>@0002800 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 0@04>@0002900 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 0@04>@0003000 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 0@04>@0003100 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 0@04>@0003200 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 0@04>@0003300 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 0@04>@0003400 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 0@04>@0003500 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 0@04>@0003600 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 0@04>@0003700 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 0@04>@0003800 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 0@04>@0003900 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 0@04>04@00000 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @040>04@00100 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @040>04@00200 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @040>04@00300 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @040>04@00400 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @040>04@00500 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @040>04@00600 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @040>04@00700 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @040>04@00800 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @040>04@00900 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @040>@0005000 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 0@04>@0005100 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 0@04>@0005200 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 0@04>@0005300 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 0@04>@0005400 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 0@04>@0005500 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 0@04>@0005600 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 0@04>@0005700 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 0@04>@0005800 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 0@04>@0005900 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 0@04>@0006000 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 0@04>@0006100 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 0@04>@0006200 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 0@04>@0006300 063@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 0@04>@0200800 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 0@06>@0002600 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 0@04>@0002700 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 0@04>@0002800 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 0@04>@0002900 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 0@04>@0003000 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 0@04>@0003100 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 0@04>@0003200 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 0@04>@0003300 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 0@04>@0003400 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 0@04>@0003500 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 0@04>@0003600 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 0@04>@0003700 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 0@04>@0003800 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 0@04>@0003900 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 0@04>04@00000 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @040>04@00100 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @040>04@00200 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @040>04@00300 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @040>04@00400 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @040>04@00500 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @040>04@00600 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @040>04@00700 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @040>04@00800 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @040>04@00900 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @040>@0005000 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 0@04>@0005100 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 0@04>@0005200 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 0@04>@0005300 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 0@04>@0005400 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 0@04>@0005500 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 0@04>@0005600 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 0@04>@0005700 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 0@04>@0005800 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 0@04>@0005900 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 0@04>@0006000 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 0@04>@0006100 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 0@04>@0006200 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 0@04>@0006300 063@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 007@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 0@04>@0200800 008@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 0@06>@0002600 026@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 0@04>@0002700 027@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 0@04>@0002800 028@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 0@04>@0002900 029@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 0@04>@0003000 030@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 0@04>@0003100 031@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 0@04>@0003200 032@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 0@04>@0003300 033@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 0@04>@0003400 034@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 0@04>@0003500 035@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 0@04>@0003600 036@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 0@04>@0003700 037@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 0@04>@0003800 038@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 0@04>@0003900 039@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 0@04>04@00000 @0404@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @040>04@00100 @0404@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @040>04@00200 @0404@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @040>04@00300 @0404@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @040>04@00400 @0404@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @040>04@00500 @0404@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @040>04@00600 @0404@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @040>04@00700 @0404@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @040>04@00800 @0404@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @040>04@00900 @0404@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @040>@0005000 050@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 0@04>@0005100 051@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 0@04>@0005200 052@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 0@04>@0005300 053@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 0@04>@0005400 054@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 0@04>@0005500 055@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 0@04>@0005600 056@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 0@04>@0005700 057@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 0@04>@0005800 058@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 0@04>@0005900 059@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 0@04>@0006000 060@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 0@04>@0006100 061@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 0@04>@0006200 062@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 0@04>@0006300 063@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 07@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00@04>@0200800 08@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00@06>@0002600 26@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02@04>@0002700 27@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02@04>@0002800 28@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02@04>@0002900 29@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02@04>@0003000 30@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03@04>@0003100 31@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03@04>@0003200 32@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03@04>@0003300 33@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03@04>@0003400 34@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03@04>@0003500 35@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03@04>@0003600 36@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03@04>@0003700 37@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03@04>@0003800 38@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03@04>@0003900 39@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03@04>04@00000 @044@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404>04@00100 @044@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404>04@00200 @044@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404>04@00300 @044@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404>04@00400 @044@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404>04@00500 @044@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404>04@00600 @044@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404>04@00700 @044@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404>04@00800 @044@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404>04@00900 @044@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404>@0005000 50@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05@04>@0005100 51@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05@04>@0005200 52@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05@04>@0005300 53@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05@04>@0005400 54@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05@04>@0005500 55@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05@04>@0005600 56@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05@04>@0005700 57@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05@04>@0005800 58@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05@04>@0005900 59@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05@04>@0006000 60@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06@04>@0006100 61@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06@04>@0006200 62@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06@04>@0006300 63@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 07@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00@04>@0200800 08@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00@06>@0002600 26@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02@04>@0002700 27@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02@04>@0002800 28@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02@04>@0002900 29@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02@04>@0003000 30@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03@04>@0003100 31@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03@04>@0003200 32@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03@04>@0003300 33@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03@04>@0003400 34@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03@04>@0003500 35@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03@04>@0003600 36@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03@04>@0003700 37@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03@04>@0003800 38@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03@04>@0003900 39@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03@04>04@00000 @044@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404>04@00100 @044@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404>04@00200 @044@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404>04@00300 @044@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404>04@00400 @044@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404>04@00500 @044@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404>04@00600 @044@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404>04@00700 @044@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404>04@00800 @044@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404>04@00900 @044@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404>@0005000 50@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05@04>@0005100 51@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05@04>@0005200 52@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05@04>@0005300 53@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05@04>@0005400 54@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05@04>@0005500 55@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05@04>@0005600 56@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05@04>@0005700 57@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05@04>@0005800 58@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05@04>@0005900 59@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05@04>@0006000 60@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06@04>@0006100 61@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06@04>@0006200 62@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06@04>@0006300 63@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 07@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00@04>@0200800 08@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00@06>@0002600 26@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02@04>@0002700 27@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02@04>@0002800 28@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02@04>@0002900 29@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02@04>@0003000 30@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03@04>@0003100 31@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03@04>@0003200 32@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03@04>@0003300 33@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03@04>@0003400 34@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03@04>@0003500 35@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03@04>@0003600 36@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03@04>@0003700 37@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03@04>@0003800 38@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03@04>@0003900 39@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03@04>04@00000 @044@000@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404>04@00100 @044@001@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404>04@00200 @044@002@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404>04@00300 @044@003@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404>04@00400 @044@004@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404>04@00500 @044@005@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404>04@00600 @044@006@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404>04@00700 @044@007@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404>04@00800 @044@008@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404>04@00900 @044@009@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404>@0005000 50@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05@04>@0005100 51@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05@04>@0005200 52@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05@04>@0005300 53@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05@04>@0005400 54@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05@04>@0005500 55@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05@04>@0005600 56@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05@04>@0005700 57@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05@04>@0005800 58@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05@04>@0005900 59@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05@04>@0006000 60@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06@04>@0006100 61@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06@04>@0006200 62@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06@04>@0006300 63@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 7@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 007@04>@0200800 8@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 008@06>@0002600 6@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 026@04>@0002700 7@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 027@04>@0002800 8@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 028@04>@0002900 9@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 029@04>@0003000 0@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 030@04>@0003100 1@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 031@04>@0003200 2@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 032@04>@0003300 3@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 033@04>@0003400 4@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 034@04>@0003500 5@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 035@04>@0003600 6@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 036@04>@0003700 7@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 037@04>@0003800 8@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 038@04>@0003900 9@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 039@04>04@00000 0@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@000@04>04@00100 1@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@001@04>04@00200 2@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@002@04>04@00300 3@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@003@04>04@00400 4@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@004@04>04@00500 5@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@005@04>04@00600 6@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@006@04>04@00700 7@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@007@04>04@00800 8@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@008@04>04@00900 9@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@009@04>@0005000 0@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 050@04>@0005100 1@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 051@04>@0005200 2@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 052@04>@0005300 3@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 053@04>@0005400 4@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 054@04>@0005500 5@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 055@04>@0005600 6@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 056@04>@0005700 7@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 057@04>@0005800 8@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 058@04>@0005900 9@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 059@04>@0006000 0@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 060@04>@0006100 1@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 061@04>@0006200 2@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 062@04>@0006300 3@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 063@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 7@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 007@04>@0200800 8@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 008@06>@0002600 6@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 026@04>@0002700 7@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 027@04>@0002800 8@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 028@04>@0002900 9@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 029@04>@0003000 0@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 030@04>@0003100 1@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 031@04>@0003200 2@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 032@04>@0003300 3@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 033@04>@0003400 4@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 034@04>@0003500 5@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 035@04>@0003600 6@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 036@04>@0003700 7@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 037@04>@0003800 8@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 038@04>@0003900 9@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 039@04>04@00000 0@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@000@04>04@00100 1@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@001@04>04@00200 2@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@002@04>04@00300 3@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@003@04>04@00400 4@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@004@04>04@00500 5@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@005@04>04@00600 6@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@006@04>04@00700 7@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@007@04>04@00800 8@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@008@04>04@00900 9@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@009@04>@0005000 0@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 050@04>@0005100 1@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 051@04>@0005200 2@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 052@04>@0005300 3@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 053@04>@0005400 4@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 054@04>@0005500 5@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 055@04>@0005600 6@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 056@04>@0005700 7@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 057@04>@0005800 8@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 058@04>@0005900 9@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 059@04>@0006000 0@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 060@04>@0006100 1@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 061@04>@0006200 2@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 062@04>@0006300 3@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 063@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 7@0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 007@04>@0200800 8@0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 008@06>@0002600 6@0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 026@04>@0002700 7@0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 027@04>@0002800 8@0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 028@04>@0002900 9@0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 029@04>@0003000 0@0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 030@04>@0003100 1@0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 031@04>@0003200 2@0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 032@04>@0003300 3@0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 033@04>@0003400 4@0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 034@04>@0003500 5@0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 035@04>@0003600 6@0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 036@04>@0003700 7@0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 037@04>@0003800 8@0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 038@04>@0003900 9@0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 039@04>04@00000 0@0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@000@04>04@00100 1@0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@001@04>04@00200 2@0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@002@04>04@00300 3@0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@003@04>04@00400 4@0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@004@04>04@00500 5@0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@005@04>04@00600 6@0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@006@04>04@00700 7@0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@007@04>04@00800 8@0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@008@04>04@00900 9@0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@009@04>@0005000 0@0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 050@04>@0005100 1@0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 051@04>@0005200 2@0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 052@04>@0005300 3@0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 053@04>@0005400 4@0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 054@04>@0005500 5@0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 055@04>@0005600 6@0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 056@04>@0005700 7@0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 057@04>@0005800 8@0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 058@04>@0005900 9@0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 059@04>@0006000 0@0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 060@04>@0006100 1@0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 061@04>@0006200 2@0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 062@04>@0006300 3@0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 063@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 @0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 0072@04>@0200800 @0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 0082@06>@0002600 @0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 0262@04>@0002700 @0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 0272@04>@0002800 @0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 0282@04>@0002900 @0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 0292@04>@0003000 @0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 0302@04>@0003100 @0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 0312@04>@0003200 @0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 0322@04>@0003300 @0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 0332@04>@0003400 @0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 0342@04>@0003500 @0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 0352@04>@0003600 @0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 0362@04>@0003700 @0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 0372@04>@0003800 @0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 0382@04>@0003900 @0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 0392@04>04@00000 @0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@0002@04>04@00100 @0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@0012@04>04@00200 @0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@0022@04>04@00300 @0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@0032@04>04@00400 @0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@0042@04>04@00500 @0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@0052@04>04@00600 @0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@0062@04>04@00700 @0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@0072@04>04@00800 @0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@0082@04>04@00900 @0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@0092@04>@0005000 @0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 0502@04>@0005100 @0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 0512@04>@0005200 @0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 0522@04>@0005300 @0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 0532@04>@0005400 @0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 0542@04>@0005500 @0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 0552@04>@0005600 @0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 0562@04>@0005700 @0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 0572@04>@0005800 @0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 0582@04>@0005900 @0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 0592@04>@0006000 @0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 0602@04>@0006100 @0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 0612@04>@0006200 @0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 0622@04>@0006300 @0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 0632@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 @0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 0072@04>@0200800 @0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 0082@06>@0002600 @0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 0262@04>@0002700 @0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 0272@04>@0002800 @0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 0282@04>@0002900 @0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 0292@04>@0003000 @0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 0302@04>@0003100 @0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 0312@04>@0003200 @0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 0322@04>@0003300 @0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 0332@04>@0003400 @0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 0342@04>@0003500 @0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 0352@04>@0003600 @0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 0362@04>@0003700 @0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 0372@04>@0003800 @0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 0382@04>@0003900 @0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 0392@04>04@00000 @0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@0002@04>04@00100 @0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@0012@04>04@00200 @0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@0022@04>04@00300 @0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@0032@04>04@00400 @0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@0042@04>04@00500 @0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@0052@04>04@00600 @0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@0062@04>04@00700 @0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@0072@04>04@00800 @0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@0082@04>04@00900 @0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@0092@04>@0005000 @0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 0502@04>@0005100 @0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 0512@04>@0005200 @0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 0522@04>@0005300 @0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 0532@04>@0005400 @0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 0542@04>@0005500 @0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 0552@04>@0005600 @0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 0562@04>@0005700 @0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 0572@04>@0005800 @0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 0582@04>@0005900 @0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 0592@04>@0006000 @0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 0602@04>@0006100 @0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 0612@04>@0006200 @0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 0622@04>@0006300 @0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 0632@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 @0404@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 0072@04>@0200800 @0604@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 0082@06>@0002600 @0404@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 0262@04>@0002700 @0404@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 0272@04>@0002800 @0404@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 0282@04>@0002900 @0404@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 0292@04>@0003000 @0404@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 0302@04>@0003100 @0404@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 0312@04>@0003200 @0404@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 0322@04>@0003300 @0404@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 0332@04>@0003400 @0404@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 0342@04>@0003500 @0404@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 0352@04>@0003600 @0404@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 0362@04>@0003700 @0404@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 0372@04>@0003800 @0404@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 0382@04>@0003900 @0404@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 0392@04>04@00000 @0404@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@0002@04>04@00100 @0404@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@0012@04>04@00200 @0404@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@0022@04>04@00300 @0404@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@0032@04>04@00400 @0404@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@0042@04>04@00500 @0404@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@0052@04>04@00600 @0404@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@0062@04>04@00700 @0404@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@0072@04>04@00800 @0404@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@0082@04>04@00900 @0404@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@0092@04>@0005000 @0404@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 0502@04>@0005100 @0404@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 0512@04>@0005200 @0404@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 0522@04>@0005300 @0404@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 0532@04>@0005400 @0404@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 0542@04>@0005500 @0404@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 0552@04>@0005600 @0404@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 0562@04>@0005700 @0404@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 0572@04>@0005800 @0404@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 0582@04>@0005900 @0404@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 0592@04>@0006000 @0404@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 0602@04>@0006100 @0404@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 0612@04>@0006200 @0404@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 0622@04>@0006300 @0404@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 0632@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 @044@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722@04>@0200800 @064@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822@06>@0002600 @044@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622@04>@0002700 @044@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722@04>@0002800 @044@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822@04>@0002900 @044@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922@04>@0003000 @044@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022@04>@0003100 @044@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122@04>@0003200 @044@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222@04>@0003300 @044@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322@04>@0003400 @044@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422@04>@0003500 @044@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522@04>@0003600 @044@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622@04>@0003700 @044@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722@04>@0003800 @044@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822@04>@0003900 @044@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922@04>04@00000 @044@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022@04>04@00100 @044@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122@04>04@00200 @044@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222@04>04@00300 @044@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322@04>04@00400 @044@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422@04>04@00500 @044@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522@04>04@00600 @044@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622@04>04@00700 @044@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722@04>04@00800 @044@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822@04>04@00900 @044@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922@04>@0005000 @044@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022@04>@0005100 @044@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122@04>@0005200 @044@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222@04>@0005300 @044@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322@04>@0005400 @044@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422@04>@0005500 @044@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522@04>@0005600 @044@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622@04>@0005700 @044@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722@04>@0005800 @044@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822@04>@0005900 @044@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922@04>@0006000 @044@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022@04>@0006100 @044@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122@04>@0006200 @044@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222@04>@0006300 @044@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 @044@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722@04>@0200800 @064@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822@06>@0002600 @044@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622@04>@0002700 @044@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722@04>@0002800 @044@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822@04>@0002900 @044@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922@04>@0003000 @044@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022@04>@0003100 @044@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122@04>@0003200 @044@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222@04>@0003300 @044@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322@04>@0003400 @044@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422@04>@0003500 @044@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522@04>@0003600 @044@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622@04>@0003700 @044@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722@04>@0003800 @044@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822@04>@0003900 @044@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922@04>04@00000 @044@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022@04>04@00100 @044@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122@04>04@00200 @044@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222@04>04@00300 @044@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322@04>04@00400 @044@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422@04>04@00500 @044@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522@04>04@00600 @044@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622@04>04@00700 @044@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722@04>04@00800 @044@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822@04>04@00900 @044@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922@04>@0005000 @044@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022@04>@0005100 @044@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122@04>@0005200 @044@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222@04>@0005300 @044@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322@04>@0005400 @044@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422@04>@0005500 @044@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522@04>@0005600 @044@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622@04>@0005700 @044@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722@04>@0005800 @044@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822@04>@0005900 @044@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922@04>@0006000 @044@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022@04>@0006100 @044@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122@04>@0006200 @044@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222@04>@0006300 @044@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 @044@00 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722@04>@0200800 @064@02 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822@06>@0002600 @044@00 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622@04>@0002700 @044@00 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722@04>@0002800 @044@00 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822@04>@0002900 @044@00 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922@04>@0003000 @044@00 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022@04>@0003100 @044@00 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122@04>@0003200 @044@00 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222@04>@0003300 @044@00 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322@04>@0003400 @044@00 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422@04>@0003500 @044@00 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522@04>@0003600 @044@00 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622@04>@0003700 @044@00 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722@04>@0003800 @044@00 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822@04>@0003900 @044@00 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922@04>04@00000 @044@00 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022@04>04@00100 @044@00 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122@04>04@00200 @044@00 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222@04>04@00300 @044@00 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322@04>04@00400 @044@00 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422@04>04@00500 @044@00 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522@04>04@00600 @044@00 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622@04>04@00700 @044@00 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722@04>04@00800 @044@00 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822@04>04@00900 @044@00 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922@04>@0005000 @044@00 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022@04>@0005100 @044@00 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122@04>@0005200 @044@00 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222@04>@0005300 @044@00 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322@04>@0005400 @044@00 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422@04>@0005500 @044@00 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522@04>@0005600 @044@00 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622@04>@0005700 @044@00 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722@04>@0005800 @044@00 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822@04>@0005900 @044@00 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922@04>@0006000 @044@00 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022@04>@0006100 @044@00 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122@04>@0006200 @044@00 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222@04>@0006300 @044@00 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 @04>@0200800 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 @06>@0002600 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 @04>@0002700 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 @04>@0002800 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 @04>@0002900 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 @04>@0003000 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 @04>@0003100 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 @04>@0003200 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 @04>@0003300 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 @04>@0003400 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 @04>@0003500 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 @04>@0003600 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 @04>@0003700 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 @04>@0003800 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 @04>@0003900 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 @04>04@00000 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @04>04@00100 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @04>04@00200 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @04>04@00300 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @04>04@00400 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @04>04@00500 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @04>04@00600 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @04>04@00700 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @04>04@00800 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @04>04@00900 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @04>@0005000 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 @04>@0005100 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 @04>@0005200 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 @04>@0005300 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 @04>@0005400 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 @04>@0005500 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 @04>@0005600 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 @04>@0005700 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 @04>@0005800 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 @04>@0005900 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 @04>@0006000 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 @04>@0006100 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 @04>@0006200 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 @04>@0006300 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 @04>@00:#___________________________________________________________________________________________________________________ +1b =00700 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 @04>@0200800 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 @06>@0002600 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 @04>@0002700 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 @04>@0002800 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 @04>@0002900 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 @04>@0003000 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 @04>@0003100 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 @04>@0003200 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 @04>@0003300 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 @04>@0003400 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 @04>@0003500 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 @04>@0003600 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 @04>@0003700 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 @04>@0003800 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 @04>@0003900 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 @04>04@00000 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @04>04@00100 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @04>04@00200 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @04>04@00300 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @04>04@00400 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @04>04@00500 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @04>04@00600 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @04>04@00700 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @04>04@00800 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @04>04@00900 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @04>@0005000 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 @04>@0005100 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 @04>@0005200 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 @04>@0005300 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 @04>@0005400 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 @04>@0005500 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 @04>@0005600 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 @04>@0005700 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 @04>@0005800 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 @04>@0005900 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 @04>@0006000 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 @04>@0006100 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 @04>@0006200 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 @04>@0006300 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 @04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 @04>@0200800 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 @06>@0002600 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 @04>@0002700 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 @04>@0002800 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 @04>@0002900 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 @04>@0003000 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 @04>@0003100 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 @04>@0003200 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 @04>@0003300 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 @04>@0003400 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 @04>@0003500 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 @04>@0003600 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 @04>@0003700 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 @04>@0003800 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 @04>@0003900 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 @04>04@00000 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @04>04@00100 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @04>04@00200 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @04>04@00300 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @04>04@00400 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @04>04@00500 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @04>04@00600 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @04>04@00700 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @04>04@00800 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @04>04@00900 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @04>@0005000 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 @04>@0005100 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 @04>@0005200 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 @04>@0005300 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 @04>@0005400 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 @04>@0005500 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 @04>@0005600 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 @04>@0005700 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 @04>@0005800 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 @04>@0005900 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 @04>@0006000 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 @04>@0006100 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 @04>@0006200 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 @04>@0006300 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 @04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 0@04>@0200800 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 0@06>@0002600 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 0@04>@0002700 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 0@04>@0002800 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 0@04>@0002900 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 0@04>@0003000 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 0@04>@0003100 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 0@04>@0003200 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 0@04>@0003300 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 0@04>@0003400 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 0@04>@0003500 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 0@04>@0003600 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 0@04>@0003700 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 0@04>@0003800 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 0@04>@0003900 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 0@04>04@00000 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @040>04@00100 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @040>04@00200 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @040>04@00300 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @040>04@00400 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @040>04@00500 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @040>04@00600 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @040>04@00700 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @040>04@00800 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @040>04@00900 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @040>@0005000 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 0@04>@0005100 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 0@04>@0005200 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 0@04>@0005300 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 0@04>@0005400 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 0@04>@0005500 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 0@04>@0005600 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 0@04>@0005700 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 0@04>@0005800 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 0@04>@0005900 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 0@04>@0006000 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 0@04>@0006100 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 0@04>@0006200 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 0@04>@0006300 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 0@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 0@04>@0200800 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 0@06>@0002600 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 0@04>@0002700 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 0@04>@0002800 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 0@04>@0002900 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 0@04>@0003000 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 0@04>@0003100 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 0@04>@0003200 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 0@04>@0003300 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 0@04>@0003400 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 0@04>@0003500 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 0@04>@0003600 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 0@04>@0003700 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 0@04>@0003800 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 0@04>@0003900 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 0@04>04@00000 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @040>04@00100 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @040>04@00200 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @040>04@00300 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @040>04@00400 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @040>04@00500 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @040>04@00600 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @040>04@00700 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @040>04@00800 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @040>04@00900 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @040>@0005000 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 0@04>@0005100 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 0@04>@0005200 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 0@04>@0005300 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 0@04>@0005400 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 0@04>@0005500 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 0@04>@0005600 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 0@04>@0005700 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 0@04>@0005800 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 0@04>@0005900 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 0@04>@0006000 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 0@04>@0006100 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 0@04>@0006200 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 0@04>@0006300 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 0@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 00705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 0@04>@0200800 00805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 0@06>@0002600 02605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 0@04>@0002700 02705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 0@04>@0002800 02805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 0@04>@0002900 02905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 0@04>@0003000 03005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 0@04>@0003100 03105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 0@04>@0003200 03205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 0@04>@0003300 03305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 0@04>@0003400 03405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 0@04>@0003500 03505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 0@04>@0003600 03605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 0@04>@0003700 03705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 0@04>@0003800 03805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 0@04>@0003900 03905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 0@04>04@00000 @0404@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @040>04@00100 @0404@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @040>04@00200 @0404@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @040>04@00300 @0404@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @040>04@00400 @0404@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @040>04@00500 @0404@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @040>04@00600 @0404@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @040>04@00700 @0404@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @040>04@00800 @0404@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @040>04@00900 @0404@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @040>@0005000 05005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 0@04>@0005100 05105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 0@04>@0005200 05205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 0@04>@0005300 05305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 0@04>@0005400 05405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 0@04>@0005500 05505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 0@04>@0005600 05605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 0@04>@0005700 05705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 0@04>@0005800 05805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 0@04>@0005900 05905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 0@04>@0006000 06005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 0@04>@0006100 06105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 0@04>@0006200 06205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 0@04>@0006300 06305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 0@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 0705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00@04>@0200800 0805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00@06>@0002600 2605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 02@04>@0002700 2705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 02@04>@0002800 2805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 02@04>@0002900 2905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 02@04>@0003000 3005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03@04>@0003100 3105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03@04>@0003200 3205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03@04>@0003300 3305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03@04>@0003400 3405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03@04>@0003500 3505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03@04>@0003600 3605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03@04>@0003700 3705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03@04>@0003800 3805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03@04>@0003900 3905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03@04>04@00000 @044@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404>04@00100 @044@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404>04@00200 @044@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404>04@00300 @044@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404>04@00400 @044@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404>04@00500 @044@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404>04@00600 @044@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404>04@00700 @044@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404>04@00800 @044@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404>04@00900 @044@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404>@0005000 5005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05@04>@0005100 5105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05@04>@0005200 5205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05@04>@0005300 5305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05@04>@0005400 5405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05@04>@0005500 5505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05@04>@0005600 5605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05@04>@0005700 5705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05@04>@0005800 5805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05@04>@0005900 5905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05@04>@0006000 6005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06@04>@0006100 6105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06@04>@0006200 6205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06@04>@0006300 6305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 0705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00@04>@0200800 0805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00@06>@0002600 2605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 02@04>@0002700 2705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 02@04>@0002800 2805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 02@04>@0002900 2905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 02@04>@0003000 3005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03@04>@0003100 3105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03@04>@0003200 3205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03@04>@0003300 3305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03@04>@0003400 3405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03@04>@0003500 3505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03@04>@0003600 3605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03@04>@0003700 3705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03@04>@0003800 3805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03@04>@0003900 3905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03@04>04@00000 @044@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404>04@00100 @044@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404>04@00200 @044@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404>04@00300 @044@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404>04@00400 @044@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404>04@00500 @044@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404>04@00600 @044@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404>04@00700 @044@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404>04@00800 @044@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404>04@00900 @044@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404>@0005000 5005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05@04>@0005100 5105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05@04>@0005200 5205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05@04>@0005300 5305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05@04>@0005400 5405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05@04>@0005500 5505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05@04>@0005600 5605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05@04>@0005700 5705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05@04>@0005800 5805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05@04>@0005900 5905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05@04>@0006000 6005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06@04>@0006100 6105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06@04>@0006200 6205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06@04>@0006300 6305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 0705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00@04>@0200800 0805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00@06>@0002600 2605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 02@04>@0002700 2705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 02@04>@0002800 2805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 02@04>@0002900 2905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 02@04>@0003000 3005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03@04>@0003100 3105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03@04>@0003200 3205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03@04>@0003300 3305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03@04>@0003400 3405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03@04>@0003500 3505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03@04>@0003600 3605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03@04>@0003700 3705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03@04>@0003800 3805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03@04>@0003900 3905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03@04>04@00000 @044@00005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404>04@00100 @044@00105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404>04@00200 @044@00205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404>04@00300 @044@00305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404>04@00400 @044@00405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404>04@00500 @044@00505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404>04@00600 @044@00605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404>04@00700 @044@00705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404>04@00800 @044@00805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404>04@00900 @044@00905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404>@0005000 5005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05@04>@0005100 5105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05@04>@0005200 5205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05@04>@0005300 5305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05@04>@0005400 5405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05@04>@0005500 5505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05@04>@0005600 5605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05@04>@0005700 5705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05@04>@0005800 5805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05@04>@0005900 5905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05@04>@0006000 6005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06@04>@0006100 6105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06@04>@0006200 6205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06@04>@0006300 6305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0002600 605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 026@04>@0002700 705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 027@04>@0002800 805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 028@04>@0002900 905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 029@04>@0003000 005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 030@04>@0003100 105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 031@04>@0003200 205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 032@04>@0003300 305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 033@04>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0002600 605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 026@04>@0002700 705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 027@04>@0002800 805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 028@04>@0002900 905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 029@04>@0003000 005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 030@04>@0003100 105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 031@04>@0003200 205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 032@04>@0003300 305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 033@04>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0002600 605 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 026@04>@0002700 705 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 027@04>@0002800 805 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 028@04>@0002900 905 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 029@04>@0003000 005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 030@04>@0003100 105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 031@04>@0003200 205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 032@04>@0003300 305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 033@04>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 05 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 0072@04>@0200800 05 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 0082@06>@0002600 05 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 0262@04>@0002700 05 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 0272@04>@0002800 05 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 0282@04>@0002900 05 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 0292@04>@0003000 05 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 0302@04>@0003100 05 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 0312@04>@0003200 05 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 0322@04>@0003300 05 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 0332@04>@0003400 05 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 0342@04>@0003500 05 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 0352@04>@0003600 05 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 0362@04>@0003700 05 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 0372@04>@0003800 05 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 0382@04>@0003900 05 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 0392@04>04@00000 05 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@0002@04>04@00100 05 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@0012@04>04@00200 05 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@0022@04>04@00300 05 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@0032@04>04@00400 05 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@0042@04>04@00500 05 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@0052@04>04@00600 05 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@0062@04>04@00700 05 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@0072@04>04@00800 05 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@0082@04>04@00900 05 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@0092@04>@0005000 05 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 0502@04>@0005100 05 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 0512@04>@0005200 05 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 0522@04>@0005300 05 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 0532@04>@0005400 05 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 0542@04>@0005500 05 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 0552@04>@0005600 05 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 0562@04>@0005700 05 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 0572@04>@0005800 05 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 0582@04>@0005900 05 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 0592@04>@0006000 05 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 0602@04>@0006100 05 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 0612@04>@0006200 05 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 0622@04>@0006300 05 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 0632@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 05 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 0072@04>@0200800 05 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 0082@06>@0002600 05 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 0262@04>@0002700 05 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 0272@04>@0002800 05 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 0282@04>@0002900 05 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 0292@04>@0003000 05 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 0302@04>@0003100 05 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 0312@04>@0003200 05 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 0322@04>@0003300 05 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 0332@04>@0003400 05 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 0342@04>@0003500 05 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 0352@04>@0003600 05 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 0362@04>@0003700 05 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 0372@04>@0003800 05 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 0382@04>@0003900 05 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 0392@04>04@00000 05 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@0002@04>04@00100 05 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@0012@04>04@00200 05 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@0022@04>04@00300 05 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@0032@04>04@00400 05 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@0042@04>04@00500 05 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@0052@04>04@00600 05 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@0062@04>04@00700 05 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@0072@04>04@00800 05 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@0082@04>04@00900 05 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@0092@04>@0005000 05 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 0502@04>@0005100 05 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 0512@04>@0005200 05 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 0522@04>@0005300 05 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 0532@04>@0005400 05 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 0542@04>@0005500 05 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 0552@04>@0005600 05 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 0562@04>@0005700 05 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 0572@04>@0005800 05 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 0582@04>@0005900 05 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 0592@04>@0006000 05 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 0602@04>@0006100 05 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 0612@04>@0006200 05 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 0622@04>@0006300 05 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 0632@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 05 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 0072@04>@0200800 05 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 0082@06>@0002600 05 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 0262@04>@0002700 05 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 0272@04>@0002800 05 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 0282@04>@0002900 05 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 0292@04>@0003000 05 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 0302@04>@0003100 05 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 0312@04>@0003200 05 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 0322@04>@0003300 05 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 0332@04>@0003400 05 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 0342@04>@0003500 05 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 0352@04>@0003600 05 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 0362@04>@0003700 05 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 0372@04>@0003800 05 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 0382@04>@0003900 05 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 0392@04>04@00000 05 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@0002@04>04@00100 05 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@0012@04>04@00200 05 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@0022@04>04@00300 05 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@0032@04>04@00400 05 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@0042@04>04@00500 05 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@0052@04>04@00600 05 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@0062@04>04@00700 05 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@0072@04>04@00800 05 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@0082@04>04@00900 05 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@0092@04>@0005000 05 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 0502@04>@0005100 05 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 0512@04>@0005200 05 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 0522@04>@0005300 05 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 0532@04>@0005400 05 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 0542@04>@0005500 05 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 0552@04>@0005600 05 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 0562@04>@0005700 05 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 0572@04>@0005800 05 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 0582@04>@0005900 05 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 0592@04>@0006000 05 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 0602@04>@0006100 05 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 0612@04>@0006200 05 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 0622@04>@0006300 05 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 0632@04>@00 ESCO#_______________________________________________________________________________________________________________ +43 =00700 5 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723@04>@0200800 5 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823@06>@0002600 5 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 02623@04>@0002700 5 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 02723@04>@0002800 5 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 02823@04>@0002900 5 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 02923@04>@0003000 5 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03023@04>@0003100 5 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03123@04>@0003200 5 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03223@04>@0003300 5 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03323@04>@0003400 5 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03423@04>@0003500 5 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03523@04>@0003600 5 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03623@04>@0003700 5 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03723@04>@0003800 5 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03823@04>@0003900 5 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03923@04>04@00000 5 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@00023@04>04@00100 5 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@00123@04>04@00200 5 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@00223@04>04@00300 5 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@00323@04>04@00400 5 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@00423@04>04@00500 5 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@00523@04>04@00600 5 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@00623@04>04@00700 5 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@00723@04>04@00800 5 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@00823@04>04@00900 5 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@00923@04>@0005000 5 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05023@04>@0005100 5 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05123@04>@0005200 5 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05223@04>@0005300 5 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05323@04>@0005400 5 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05423@04>@0005500 5 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05523@04>@0005600 5 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05623@04>@0005700 5 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05723@04>@0005800 5 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05823@04>@0005900 5 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05923@04>@0006000 5 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06023@04>@0006100 5 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06123@04>@0006200 5 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06223@04>@0006300 5 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06323@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 5 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723@04>@0200800 5 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823@06>@0002600 5 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 02623@04>@0002700 5 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 02723@04>@0002800 5 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 02823@04>@0002900 5 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 02923@04>@0003000 5 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03023@04>@0003100 5 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03123@04>@0003200 5 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03223@04>@0003300 5 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03323@04>@0003400 5 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03423@04>@0003500 5 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03523@04>@0003600 5 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03623@04>@0003700 5 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03723@04>@0003800 5 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03823@04>@0003900 5 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03923@04>04@00000 5 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@00023@04>04@00100 5 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@00123@04>04@00200 5 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@00223@04>04@00300 5 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@00323@04>04@00400 5 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@00423@04>04@00500 5 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@00523@04>04@00600 5 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@00623@04>04@00700 5 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@00723@04>04@00800 5 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@00823@04>04@00900 5 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@00923@04>@0005000 5 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05023@04>@0005100 5 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05123@04>@0005200 5 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05223@04>@0005300 5 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05323@04>@0005400 5 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05423@04>@0005500 5 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05523@04>@0005600 5 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05623@04>@0005700 5 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05723@04>@0005800 5 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05823@04>@0005900 5 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05923@04>@0006000 5 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06023@04>@0006100 5 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06123@04>@0006200 5 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06223@04>@0006300 5 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06323@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 5 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723@04>@0200800 5 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823@06>@0002600 5 02606 02607 02608 02609 02610 02611 02612 02613 02614 02615 02616 02617 02618 02619 02620 02621 02622 02623@04>@0002700 5 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 02723@04>@0002800 5 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 02823@04>@0002900 5 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 02923@04>@0003000 5 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03023@04>@0003100 5 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03123@04>@0003200 5 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03223@04>@0003300 5 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03323@04>@0003400 5 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03423@04>@0003500 5 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03523@04>@0003600 5 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03623@04>@0003700 5 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03723@04>@0003800 5 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03823@04>@0003900 5 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03923@04>04@00000 5 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@00023@04>04@00100 5 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@00123@04>04@00200 5 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@00223@04>04@00300 5 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@00323@04>04@00400 5 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@00423@04>04@00500 5 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@00523@04>04@00600 5 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@00623@04>04@00700 5 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@00723@04>04@00800 5 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@00823@04>04@00900 5 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@00923@04>@0005000 5 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05023@04>@0005100 5 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05123@04>@0005200 5 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05223@04>@0005300 5 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05323@04>@0005400 5 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05423@04>@0005500 5 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05523@04>@0005600 5 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05623@04>@0005700 5 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05723@04>@0005800 5 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05823@04>@0005900 5 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05923@04>@0006000 5 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06023@04>@0006100 5 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06123@04>@0006200 5 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06223@04>@0006300 5 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06323@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 5 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723@04>@0200800 5 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823@06>@0002700 5 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 02723@04>@0002800 5 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 02823@04>@0002900 5 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 02923@04>@0003000 5 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03023@04>@0003100 5 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03123@04>@0003200 5 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03223@04>@0003300 5 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03323@04>@0003400 5 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03423@04>@0003500 5 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03523@04>@0003600 5 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03623@04>@0003700 5 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03723@04>@0003800 5 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03823@04>@0003900 5 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03923@04>04@00000 5 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@00023@04>04@00100 5 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@00123@04>04@00200 5 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@00223@04>04@00300 5 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@00323@04>04@00400 5 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@00423@04>04@00500 5 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@00523@04>04@00600 5 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@00623@04>04@00700 5 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@00723@04>04@00800 5 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@00823@04>04@00900 5 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@00923@04>@0005000 5 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05023@04>@0005100 5 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05123@04>@0005200 5 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05223@04>@0005300 5 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05323@04>@0005400 5 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05423@04>@0005500 5 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05523@04>@0005600 5 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05623@04>@0005700 5 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05723@04>@0005800 5 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05823@04>@0005900 5 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05923@04>@0006000 5 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06023@04>@0006100 5 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06123@04>@0006200 5 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06223@04>@0006300 5 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06323@04>@0006400 5 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 06423@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 5 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723@04>@0200800 5 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823@06>@0002700 5 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 02723@04>@0002800 5 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 02823@04>@0002900 5 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 02923@04>@0003000 5 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03023@04>@0003100 5 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03123@04>@0003200 5 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03223@04>@0003300 5 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03323@04>@0003400 5 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03423@04>@0003500 5 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03523@04>@0003600 5 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03623@04>@0003700 5 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03723@04>@0003800 5 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03823@04>@0003900 5 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03923@04>04@00000 5 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@00023@04>04@00100 5 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@00123@04>04@00200 5 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@00223@04>04@00300 5 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@00323@04>04@00400 5 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@00423@04>04@00500 5 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@00523@04>04@00600 5 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@00623@04>04@00700 5 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@00723@04>04@00800 5 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@00823@04>04@00900 5 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@00923@04>@0005000 5 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05023@04>@0005100 5 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05123@04>@0005200 5 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05223@04>@0005300 5 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05323@04>@0005400 5 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05423@04>@0005500 5 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05523@04>@0005600 5 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05623@04>@0005700 5 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05723@04>@0005800 5 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05823@04>@0005900 5 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05923@04>@0006000 5 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06023@04>@0006100 5 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06123@04>@0006200 5 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06223@04>@0006300 5 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06323@04>@0006400 5 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 06423@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 5 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723@04>@0200800 5 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823@06>@0002700 5 02706 02707 02708 02709 02710 02711 02712 02713 02714 02715 02716 02717 02718 02719 02720 02721 02722 02723@04>@0002800 5 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 02823@04>@0002900 5 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 02923@04>@0003000 5 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03023@04>@0003100 5 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03123@04>@0003200 5 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03223@04>@0003300 5 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03323@04>@0003400 5 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03423@04>@0003500 5 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03523@04>@0003600 5 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03623@04>@0003700 5 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03723@04>@0003800 5 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03823@04>@0003900 5 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03923@04>04@00000 5 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@00023@04>04@00100 5 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@00123@04>04@00200 5 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@00223@04>04@00300 5 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@00323@04>04@00400 5 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@00423@04>04@00500 5 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@00523@04>04@00600 5 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@00623@04>04@00700 5 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@00723@04>04@00800 5 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@00823@04>04@00900 5 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@00923@04>@0005000 5 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05023@04>@0005100 5 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05123@04>@0005200 5 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05223@04>@0005300 5 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05323@04>@0005400 5 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05423@04>@0005500 5 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05523@04>@0005600 5 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05623@04>@0005700 5 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05723@04>@0005800 5 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05823@04>@0005900 5 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05923@04>@0006000 5 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06023@04>@0006100 5 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06123@04>@0006200 5 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06223@04>@0006300 5 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06323@04>@0006400 5 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 06423@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 5 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723@04>@0200800 5 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823@06>@0002800 5 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 02823@04>@0002900 5 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 02923@04>@0003000 5 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03023@04>@0003100 5 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03123@04>@0003200 5 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03223@04>@0003300 5 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03323@04>@0003400 5 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03423@04>@0003500 5 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03523@04>@0003600 5 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03623@04>@0003700 5 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03723@04>@0003800 5 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03823@04>@0003900 5 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03923@04>04@00000 5 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@00023@04>04@00100 5 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@00123@04>04@00200 5 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@00223@04>04@00300 5 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@00323@04>04@00400 5 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@00423@04>04@00500 5 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@00523@04>04@00600 5 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@00623@04>04@00700 5 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@00723@04>04@00800 5 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@00823@04>04@00900 5 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@00923@04>@0005000 5 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05023@04>@0005100 5 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05123@04>@0005200 5 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05223@04>@0005300 5 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05323@04>@0005400 5 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05423@04>@0005500 5 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05523@04>@0005600 5 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05623@04>@0005700 5 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05723@04>@0005800 5 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05823@04>@0005900 5 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05923@04>@0006000 5 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06023@04>@0006100 5 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06123@04>@0006200 5 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06223@04>@0006300 5 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06323@04>@0006400 5 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 06423@04>@0006500 5 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 06523@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 5 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723@04>@0200800 5 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823@06>@0002800 5 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 02823@04>@0002900 5 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 02923@04>@0003000 5 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03023@04>@0003100 5 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03123@04>@0003200 5 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03223@04>@0003300 5 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03323@04>@0003400 5 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03423@04>@0003500 5 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03523@04>@0003600 5 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03623@04>@0003700 5 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03723@04>@0003800 5 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03823@04>@0003900 5 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03923@04>04@00000 5 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@00023@04>04@00100 5 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@00123@04>04@00200 5 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@00223@04>04@00300 5 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@00323@04>04@00400 5 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@00423@04>04@00500 5 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@00523@04>04@00600 5 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@00623@04>04@00700 5 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@00723@04>04@00800 5 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@00823@04>04@00900 5 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@00923@04>@0005000 5 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05023@04>@0005100 5 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05123@04>@0005200 5 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05223@04>@0005300 5 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05323@04>@0005400 5 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05423@04>@0005500 5 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05523@04>@0005600 5 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05623@04>@0005700 5 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05723@04>@0005800 5 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05823@04>@0005900 5 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05923@04>@0006000 5 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06023@04>@0006100 5 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06123@04>@0006200 5 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06223@04>@0006300 5 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06323@04>@0006400 5 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 06423@04>@0006500 5 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 06523@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 5 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723@04>@0200800 5 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823@06>@0002800 5 02806 02807 02808 02809 02810 02811 02812 02813 02814 02815 02816 02817 02818 02819 02820 02821 02822 02823@04>@0002900 5 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 02923@04>@0003000 5 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03023@04>@0003100 5 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03123@04>@0003200 5 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03223@04>@0003300 5 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03323@04>@0003400 5 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03423@04>@0003500 5 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03523@04>@0003600 5 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03623@04>@0003700 5 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03723@04>@0003800 5 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03823@04>@0003900 5 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03923@04>04@00000 5 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@00023@04>04@00100 5 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@00123@04>04@00200 5 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@00223@04>04@00300 5 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@00323@04>04@00400 5 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@00423@04>04@00500 5 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@00523@04>04@00600 5 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@00623@04>04@00700 5 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@00723@04>04@00800 5 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@00823@04>04@00900 5 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@00923@04>@0005000 5 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05023@04>@0005100 5 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05123@04>@0005200 5 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05223@04>@0005300 5 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05323@04>@0005400 5 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05423@04>@0005500 5 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05523@04>@0005600 5 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05623@04>@0005700 5 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05723@04>@0005800 5 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05823@04>@0005900 5 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05923@04>@0006000 5 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06023@04>@0006100 5 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06123@04>@0006200 5 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06223@04>@0006300 5 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06323@04>@0006400 5 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 06423@04>@0006500 5 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 06523@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 5 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723@04>@0200800 5 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823@06>@0002900 5 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 02923@04>@0003000 5 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03023@04>@0003100 5 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03123@04>@0003200 5 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03223@04>@0003300 5 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03323@04>@0003400 5 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03423@04>@0003500 5 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03523@04>@0003600 5 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03623@04>@0003700 5 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03723@04>@0003800 5 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03823@04>@0003900 5 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03923@04>04@00000 5 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@00023@04>04@00100 5 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@00123@04>04@00200 5 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@00223@04>04@00300 5 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@00323@04>04@00400 5 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@00423@04>04@00500 5 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@00523@04>04@00600 5 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@00623@04>04@00700 5 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@00723@04>04@00800 5 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@00823@04>04@00900 5 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@00923@04>@0005000 5 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05023@04>@0005100 5 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05123@04>@0005200 5 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05223@04>@0005300 5 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05323@04>@0005400 5 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05423@04>@0005500 5 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05523@04>@0005600 5 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05623@04>@0005700 5 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05723@04>@0005800 5 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05823@04>@0005900 5 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05923@04>@0006000 5 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06023@04>@0006100 5 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06123@04>@0006200 5 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06223@04>@0006300 5 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06323@04>@0006400 5 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 06423@04>@0006500 5 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 06523@04>@0006600 5 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 06623@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 5 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723@04>@0200800 5 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823@06>@0002900 5 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 02923@04>@0003000 5 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03023@04>@0003100 5 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03123@04>@0003200 5 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03223@04>@0003300 5 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03323@04>@0003400 5 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03423@04>@0003500 5 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03523@04>@0003600 5 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03623@04>@0003700 5 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03723@04>@0003800 5 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03823@04>@0003900 5 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03923@04>04@00000 5 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@00023@04>04@00100 5 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@00123@04>04@00200 5 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@00223@04>04@00300 5 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@00323@04>04@00400 5 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@00423@04>04@00500 5 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@00523@04>04@00600 5 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@00623@04>04@00700 5 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@00723@04>04@00800 5 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@00823@04>04@00900 5 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@00923@04>@0005000 5 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05023@04>@0005100 5 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05123@04>@0005200 5 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05223@04>@0005300 5 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05323@04>@0005400 5 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05423@04>@0005500 5 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05523@04>@0005600 5 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05623@04>@0005700 5 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05723@04>@0005800 5 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05823@04>@0005900 5 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05923@04>@0006000 5 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06023@04>@0006100 5 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06123@04>@0006200 5 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06223@04>@0006300 5 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06323@04>@0006400 5 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 06423@04>@0006500 5 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 06523@04>@0006600 5 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 06623@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 5 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723@04>@0200800 5 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823@06>@0002900 5 02906 02907 02908 02909 02910 02911 02912 02913 02914 02915 02916 02917 02918 02919 02920 02921 02922 02923@04>@0003000 5 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03023@04>@0003100 5 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03123@04>@0003200 5 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03223@04>@0003300 5 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03323@04>@0003400 5 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03423@04>@0003500 5 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03523@04>@0003600 5 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03623@04>@0003700 5 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03723@04>@0003800 5 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03823@04>@0003900 5 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03923@04>04@00000 5 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@00023@04>04@00100 5 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@00123@04>04@00200 5 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@00223@04>04@00300 5 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@00323@04>04@00400 5 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@00423@04>04@00500 5 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@00523@04>04@00600 5 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@00623@04>04@00700 5 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@00723@04>04@00800 5 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@00823@04>04@00900 5 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@00923@04>@0005000 5 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05023@04>@0005100 5 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05123@04>@0005200 5 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05223@04>@0005300 5 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05323@04>@0005400 5 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05423@04>@0005500 5 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05523@04>@0005600 5 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05623@04>@0005700 5 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05723@04>@0005800 5 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05823@04>@0005900 5 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05923@04>@0006000 5 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06023@04>@0006100 5 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06123@04>@0006200 5 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06223@04>@0006300 5 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06323@04>@0006400 5 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 06423@04>@0006500 5 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 06523@04>@0006600 5 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 06623@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 5 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723@04>@0200800 5 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823@06>@0003000 5 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03023@04>@0003100 5 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03123@04>@0003200 5 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03223@04>@0003300 5 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03323@04>@0003400 5 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03423@04>@0003500 5 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03523@04>@0003600 5 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03623@04>@0003700 5 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03723@04>@0003800 5 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03823@04>@0003900 5 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03923@04>04@00000 5 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@00023@04>04@00100 5 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@00123@04>04@00200 5 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@00223@04>04@00300 5 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@00323@04>04@00400 5 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@00423@04>04@00500 5 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@00523@04>04@00600 5 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@00623@04>04@00700 5 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@00723@04>04@00800 5 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@00823@04>04@00900 5 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@00923@04>@0005000 5 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05023@04>@0005100 5 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05123@04>@0005200 5 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05223@04>@0005300 5 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05323@04>@0005400 5 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05423@04>@0005500 5 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05523@04>@0005600 5 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05623@04>@0005700 5 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05723@04>@0005800 5 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05823@04>@0005900 5 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05923@04>@0006000 5 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06023@04>@0006100 5 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06123@04>@0006200 5 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06223@04>@0006300 5 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06323@04>@0006400 5 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 06423@04>@0006500 5 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 06523@04>@0006600 5 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 06623@04>@0006700 5 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 06723@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 5 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723@04>@0200800 5 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823@06>@0003000 5 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03023@04>@0003100 5 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03123@04>@0003200 5 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03223@04>@0003300 5 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03323@04>@0003400 5 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03423@04>@0003500 5 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03523@04>@0003600 5 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03623@04>@0003700 5 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03723@04>@0003800 5 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03823@04>@0003900 5 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03923@04>04@00000 5 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@00023@04>04@00100 5 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@00123@04>04@00200 5 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@00223@04>04@00300 5 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@00323@04>04@00400 5 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@00423@04>04@00500 5 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@00523@04>04@00600 5 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@00623@04>04@00700 5 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@00723@04>04@00800 5 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@00823@04>04@00900 5 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@00923@04>@0005000 5 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05023@04>@0005100 5 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05123@04>@0005200 5 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05223@04>@0005300 5 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05323@04>@0005400 5 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05423@04>@0005500 5 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05523@04>@0005600 5 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05623@04>@0005700 5 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05723@04>@0005800 5 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05823@04>@0005900 5 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05923@04>@0006000 5 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06023@04>@0006100 5 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06123@04>@0006200 5 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06223@04>@0006300 5 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06323@04>@0006400 5 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 06423@04>@0006500 5 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 06523@04>@0006600 5 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 06623@04>@0006700 5 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 06723@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 5 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 00723@04>@0200800 5 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 00823@06>@0003000 5 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 03023@04>@0003100 5 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 03123@04>@0003200 5 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 03223@04>@0003300 5 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 03323@04>@0003400 5 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 03423@04>@0003500 5 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 03523@04>@0003600 5 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 03623@04>@0003700 5 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 03723@04>@0003800 5 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 03823@04>@0003900 5 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 03923@04>04@00000 5 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@00023@04>04@00100 5 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@00123@04>04@00200 5 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@00223@04>04@00300 5 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@00323@04>04@00400 5 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@00423@04>04@00500 5 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@00523@04>04@00600 5 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@00623@04>04@00700 5 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@00723@04>04@00800 5 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@00823@04>04@00900 5 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@00923@04>@0005000 5 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 05023@04>@0005100 5 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 05123@04>@0005200 5 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 05223@04>@0005300 5 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 05323@04>@0005400 5 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 05423@04>@0005500 5 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 05523@04>@0005600 5 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 05623@04>@0005700 5 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 05723@04>@0005800 5 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 05823@04>@0005900 5 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 05923@04>@0006000 5 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 06023@04>@0006100 5 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 06123@04>@0006200 5 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 06223@04>@0006300 5 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 06323@04>@0006400 5 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 06423@04>@0006500 5 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 06523@04>@0006600 5 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 06623@04>@0006700 5 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 06723@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =00700 05 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 0072@04>@0200800 05 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 0082@06>@0003000 05 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 0302@04>@0003100 05 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 0312@04>@0003200 05 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 0322@04>@0003300 05 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 0332@04>@0003400 05 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 0342@04>@0003500 05 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 0352@04>@0003600 05 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 0362@04>@0003700 05 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 0372@04>@0003800 05 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 0382@04>@0003900 05 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 0392@04>04@00000 05 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@0002@04>04@00100 05 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@0012@04>04@00200 05 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@0022@04>04@00300 05 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@0032@04>04@00400 05 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@0042@04>04@00500 05 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@0052@04>04@00600 05 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@0062@04>04@00700 05 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@0072@04>04@00800 05 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@0082@04>04@00900 05 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@0092@04>@0005000 05 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 0502@04>@0005100 05 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 0512@04>@0005200 05 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 0522@04>@0005300 05 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 0532@04>@0005400 05 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 0542@04>@0005500 05 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 0552@04>@0005600 05 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 0562@04>@0005700 05 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 0572@04>@0005800 05 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 0582@04>@0005900 05 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 0592@04>@0006000 05 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 0602@04>@0006100 05 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 0612@04>@0006200 05 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 0622@04>@0006300 05 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 0632@04>@0006400 05 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 0642@04>@0006500 05 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 0652@04>@0006600 05 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 0662@04>@0006700 05 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 0672@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 05 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 0072@04>@0200800 05 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 0082@06>@0003000 05 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 0302@04>@0003100 05 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 0312@04>@0003200 05 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 0322@04>@0003300 05 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 0332@04>@0003400 05 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 0342@04>@0003500 05 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 0352@04>@0003600 05 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 0362@04>@0003700 05 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 0372@04>@0003800 05 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 0382@04>@0003900 05 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 0392@04>04@00000 05 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@0002@04>04@00100 05 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@0012@04>04@00200 05 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@0022@04>04@00300 05 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@0032@04>04@00400 05 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@0042@04>04@00500 05 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@0052@04>04@00600 05 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@0062@04>04@00700 05 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@0072@04>04@00800 05 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@0082@04>04@00900 05 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@0092@04>@0005000 05 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 0502@04>@0005100 05 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 0512@04>@0005200 05 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 0522@04>@0005300 05 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 0532@04>@0005400 05 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 0542@04>@0005500 05 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 0552@04>@0005600 05 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 0562@04>@0005700 05 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 0572@04>@0005800 05 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 0582@04>@0005900 05 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 0592@04>@0006000 05 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 0602@04>@0006100 05 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 0612@04>@0006200 05 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 0622@04>@0006300 05 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 0632@04>@0006400 05 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 0642@04>@0006500 05 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 0652@04>@0006600 05 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 0662@04>@0006700 05 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 0672@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 05 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 0072@04>@0200800 05 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 0082@06>@0003000 05 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 0302@04>@0003100 05 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 0312@04>@0003200 05 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 0322@04>@0003300 05 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 0332@04>@0003400 05 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 0342@04>@0003500 05 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 0352@04>@0003600 05 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 0362@04>@0003700 05 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 0372@04>@0003800 05 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 0382@04>@0003900 05 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 0392@04>04@00000 05 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@0002@04>04@00100 05 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@0012@04>04@00200 05 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@0022@04>04@00300 05 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@0032@04>04@00400 05 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@0042@04>04@00500 05 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@0052@04>04@00600 05 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@0062@04>04@00700 05 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@0072@04>04@00800 05 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@0082@04>04@00900 05 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@0092@04>@0005000 05 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 0502@04>@0005100 05 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 0512@04>@0005200 05 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 0522@04>@0005300 05 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 0532@04>@0005400 05 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 0542@04>@0005500 05 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 0552@04>@0005600 05 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 0562@04>@0005700 05 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 0572@04>@0005800 05 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 0582@04>@0005900 05 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 0592@04>@0006000 05 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 0602@04>@0006100 05 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 0612@04>@0006200 05 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 0622@04>@0006300 05 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 0632@04>@0006400 05 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 0642@04>@0006500 05 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 0652@04>@0006600 05 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 0662@04>@0006700 05 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 0672@04>@00 ESCO#_______________________________________________________________________________________________________________ +44 =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003000 005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 030@04>@0003100 105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 031@04>@0003200 205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 032@04>@0003300 305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 033@04>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003000 005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 030@04>@0003100 105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 031@04>@0003200 205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 032@04>@0003300 305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 033@04>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003000 005 03006 03007 03008 03009 03010 03011 03012 03013 03014 03015 03016 03017 03018 03019 03020 03021 03022 030@04>@0003100 105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 031@04>@0003200 205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 032@04>@0003300 305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 033@04>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003100 105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 031@04>@0003200 205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 032@04>@0003300 305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 033@04>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003100 105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 031@04>@0003200 205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 032@04>@0003300 305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 033@04>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003100 105 03106 03107 03108 03109 03110 03111 03112 03113 03114 03115 03116 03117 03118 03119 03120 03121 03122 031@04>@0003200 205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 032@04>@0003300 305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 033@04>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003200 205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 032@04>@0003300 305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 033@04>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003200 205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 032@04>@0003300 305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 033@04>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003200 205 03206 03207 03208 03209 03210 03211 03212 03213 03214 03215 03216 03217 03218 03219 03220 03221 03222 032@04>@0003300 305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 033@04>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003300 305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 033@04>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003300 305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 033@04>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003300 305 03306 03307 03308 03309 03310 03311 03312 03313 03314 03315 03316 03317 03318 03319 03320 03321 03322 033@04>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003400 405 03406 03407 03408 03409 03410 03411 03412 03413 03414 03415 03416 03417 03418 03419 03420 03421 03422 034@04>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@0007200 205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 072@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@0007200 205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 072@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003500 505 03506 03507 03508 03509 03510 03511 03512 03513 03514 03515 03516 03517 03518 03519 03520 03521 03522 035@04>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@0007200 205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 072@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@0007200 205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 072@04>@0007300 305 07306 07307 07308 07309 07310 07311 07312 07313 07314 07315 07316 07317 07318 07319 07320 07321 07322 073@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@0007200 205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 072@04>@0007300 305 07306 07307 07308 07309 07310 07311 07312 07313 07314 07315 07316 07317 07318 07319 07320 07321 07322 073@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003600 605 03606 03607 03608 03609 03610 03611 03612 03613 03614 03615 03616 03617 03618 03619 03620 03621 03622 036@04>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@0007200 205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 072@04>@0007300 305 07306 07307 07308 07309 07310 07311 07312 07313 07314 07315 07316 07317 07318 07319 07320 07321 07322 073@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@0007200 205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 072@04>@0007300 305 07306 07307 07308 07309 07310 07311 07312 07313 07314 07315 07316 07317 07318 07319 07320 07321 07322 073@04>@0007400 405 07406 07407 07408 07409 07410 07411 07412 07413 07414 07415 07416 07417 07418 07419 07420 07421 07422 074@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@0007200 205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 072@04>@0007300 305 07306 07307 07308 07309 07310 07311 07312 07313 07314 07315 07316 07317 07318 07319 07320 07321 07322 073@04>@0007400 405 07406 07407 07408 07409 07410 07411 07412 07413 07414 07415 07416 07417 07418 07419 07420 07421 07422 074@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003700 705 03706 03707 03708 03709 03710 03711 03712 03713 03714 03715 03716 03717 03718 03719 03720 03721 03722 037@04>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@0007200 205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 072@04>@0007300 305 07306 07307 07308 07309 07310 07311 07312 07313 07314 07315 07316 07317 07318 07319 07320 07321 07322 073@04>@0007400 405 07406 07407 07408 07409 07410 07411 07412 07413 07414 07415 07416 07417 07418 07419 07420 07421 07422 074@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@0007200 205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 072@04>@0007300 305 07306 07307 07308 07309 07310 07311 07312 07313 07314 07315 07316 07317 07318 07319 07320 07321 07322 073@04>@0007400 405 07406 07407 07408 07409 07410 07411 07412 07413 07414 07415 07416 07417 07418 07419 07420 07421 07422 074@04>@0007500 505 07506 07507 07508 07509 07510 07511 07512 07513 07514 07515 07516 07517 07518 07519 07520 07521 07522 075@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@0007200 205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 072@04>@0007300 305 07306 07307 07308 07309 07310 07311 07312 07313 07314 07315 07316 07317 07318 07319 07320 07321 07322 073@04>@0007400 405 07406 07407 07408 07409 07410 07411 07412 07413 07414 07415 07416 07417 07418 07419 07420 07421 07422 074@04>@0007500 505 07506 07507 07508 07509 07510 07511 07512 07513 07514 07515 07516 07517 07518 07519 07520 07521 07522 075@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003800 805 03806 03807 03808 03809 03810 03811 03812 03813 03814 03815 03816 03817 03818 03819 03820 03821 03822 038@04>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@0007200 205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 072@04>@0007300 305 07306 07307 07308 07309 07310 07311 07312 07313 07314 07315 07316 07317 07318 07319 07320 07321 07322 073@04>@0007400 405 07406 07407 07408 07409 07410 07411 07412 07413 07414 07415 07416 07417 07418 07419 07420 07421 07422 074@04>@0007500 505 07506 07507 07508 07509 07510 07511 07512 07513 07514 07515 07516 07517 07518 07519 07520 07521 07522 075@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@0007200 205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 072@04>@0007300 305 07306 07307 07308 07309 07310 07311 07312 07313 07314 07315 07316 07317 07318 07319 07320 07321 07322 073@04>@0007400 405 07406 07407 07408 07409 07410 07411 07412 07413 07414 07415 07416 07417 07418 07419 07420 07421 07422 074@04>@0007500 505 07506 07507 07508 07509 07510 07511 07512 07513 07514 07515 07516 07517 07518 07519 07520 07521 07522 075@04>@0007600 605 07606 07607 07608 07609 07610 07611 07612 07613 07614 07615 07616 07617 07618 07619 07620 07621 07622 076@04>@00:#___________________________________________________________________________________________________________________ +1b =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@0007200 205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 072@04>@0007300 305 07306 07307 07308 07309 07310 07311 07312 07313 07314 07315 07316 07317 07318 07319 07320 07321 07322 073@04>@0007400 405 07406 07407 07408 07409 07410 07411 07412 07413 07414 07415 07416 07417 07418 07419 07420 07421 07422 074@04>@0007500 505 07506 07507 07508 07509 07510 07511 07512 07513 07514 07515 07516 07517 07518 07519 07520 07521 07522 075@04>@0007600 605 07606 07607 07608 07609 07610 07611 07612 07613 07614 07615 07616 07617 07618 07619 07620 07621 07622 076@04>@00 ESC#________________________________________________________________________________________________________________ +4f =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0003900 905 03906 03907 03908 03909 03910 03911 03912 03913 03914 03915 03916 03917 03918 03919 03920 03921 03922 039@04>04@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@0007200 205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 072@04>@0007300 305 07306 07307 07308 07309 07310 07311 07312 07313 07314 07315 07316 07317 07318 07319 07320 07321 07322 073@04>@0007400 405 07406 07407 07408 07409 07410 07411 07412 07413 07414 07415 07416 07417 07418 07419 07420 07421 07422 074@04>@0007500 505 07506 07507 07508 07509 07510 07511 07512 07513 07514 07515 07516 07517 07518 07519 07520 07521 07522 075@04>@0007600 605 07606 07607 07608 07609 07610 07611 07612 07613 07614 07615 07616 07617 07618 07619 07620 07621 07622 076@04>@00 ESCO#_______________________________________________________________________________________________________________ +42 =00700 705 00706 00707 00708 00709 00710 00711 00712 00713 00714 00715 00716 00717 00718 00719 00720 00721 00722 007@04>@0200800 805 00806 00807 00808 00809 00810 00811 00812 00813 00814 00815 00816 00817 00818 00819 00820 00821 00822 008@06>@0404@00000 005 @0404@00006 @0404@00007 @0404@00008 @0404@00009 @0404@00010 @0404@00011 @0404@00012 @0404@00013 @0404@00014 @0404@00015 @0404@00016 @0404@00017 @0404@00018 @0404@00019 @0404@00020 @0404@00021 @0404@00022 @0404@000@04>04@00100 105 @0404@00106 @0404@00107 @0404@00108 @0404@00109 @0404@00110 @0404@00111 @0404@00112 @0404@00113 @0404@00114 @0404@00115 @0404@00116 @0404@00117 @0404@00118 @0404@00119 @0404@00120 @0404@00121 @0404@00122 @0404@001@04>04@00200 205 @0404@00206 @0404@00207 @0404@00208 @0404@00209 @0404@00210 @0404@00211 @0404@00212 @0404@00213 @0404@00214 @0404@00215 @0404@00216 @0404@00217 @0404@00218 @0404@00219 @0404@00220 @0404@00221 @0404@00222 @0404@002@04>04@00300 305 @0404@00306 @0404@00307 @0404@00308 @0404@00309 @0404@00310 @0404@00311 @0404@00312 @0404@00313 @0404@00314 @0404@00315 @0404@00316 @0404@00317 @0404@00318 @0404@00319 @0404@00320 @0404@00321 @0404@00322 @0404@003@04>04@00400 405 @0404@00406 @0404@00407 @0404@00408 @0404@00409 @0404@00410 @0404@00411 @0404@00412 @0404@00413 @0404@00414 @0404@00415 @0404@00416 @0404@00417 @0404@00418 @0404@00419 @0404@00420 @0404@00421 @0404@00422 @0404@004@04>04@00500 505 @0404@00506 @0404@00507 @0404@00508 @0404@00509 @0404@00510 @0404@00511 @0404@00512 @0404@00513 @0404@00514 @0404@00515 @0404@00516 @0404@00517 @0404@00518 @0404@00519 @0404@00520 @0404@00521 @0404@00522 @0404@005@04>04@00600 605 @0404@00606 @0404@00607 @0404@00608 @0404@00609 @0404@00610 @0404@00611 @0404@00612 @0404@00613 @0404@00614 @0404@00615 @0404@00616 @0404@00617 @0404@00618 @0404@00619 @0404@00620 @0404@00621 @0404@00622 @0404@006@04>04@00700 705 @0404@00706 @0404@00707 @0404@00708 @0404@00709 @0404@00710 @0404@00711 @0404@00712 @0404@00713 @0404@00714 @0404@00715 @0404@00716 @0404@00717 @0404@00718 @0404@00719 @0404@00720 @0404@00721 @0404@00722 @0404@007@04>04@00800 805 @0404@00806 @0404@00807 @0404@00808 @0404@00809 @0404@00810 @0404@00811 @0404@00812 @0404@00813 @0404@00814 @0404@00815 @0404@00816 @0404@00817 @0404@00818 @0404@00819 @0404@00820 @0404@00821 @0404@00822 @0404@008@04>04@00900 905 @0404@00906 @0404@00907 @0404@00908 @0404@00909 @0404@00910 @0404@00911 @0404@00912 @0404@00913 @0404@00914 @0404@00915 @0404@00916 @0404@00917 @0404@00918 @0404@00919 @0404@00920 @0404@00921 @0404@00922 @0404@009@04>@0005000 005 05006 05007 05008 05009 05010 05011 05012 05013 05014 05015 05016 05017 05018 05019 05020 05021 05022 050@04>@0005100 105 05106 05107 05108 05109 05110 05111 05112 05113 05114 05115 05116 05117 05118 05119 05120 05121 05122 051@04>@0005200 205 05206 05207 05208 05209 05210 05211 05212 05213 05214 05215 05216 05217 05218 05219 05220 05221 05222 052@04>@0005300 305 05306 05307 05308 05309 05310 05311 05312 05313 05314 05315 05316 05317 05318 05319 05320 05321 05322 053@04>@0005400 405 05406 05407 05408 05409 05410 05411 05412 05413 05414 05415 05416 05417 05418 05419 05420 05421 05422 054@04>@0005500 505 05506 05507 05508 05509 05510 05511 05512 05513 05514 05515 05516 05517 05518 05519 05520 05521 05522 055@04>@0005600 605 05606 05607 05608 05609 05610 05611 05612 05613 05614 05615 05616 05617 05618 05619 05620 05621 05622 056@04>@0005700 705 05706 05707 05708 05709 05710 05711 05712 05713 05714 05715 05716 05717 05718 05719 05720 05721 05722 057@04>@0005800 805 05806 05807 05808 05809 05810 05811 05812 05813 05814 05815 05816 05817 05818 05819 05820 05821 05822 058@04>@0005900 905 05906 05907 05908 05909 05910 05911 05912 05913 05914 05915 05916 05917 05918 05919 05920 05921 05922 059@04>@0006000 005 06006 06007 06008 06009 06010 06011 06012 06013 06014 06015 06016 06017 06018 06019 06020 06021 06022 060@04>@0006100 105 06106 06107 06108 06109 06110 06111 06112 06113 06114 06115 06116 06117 06118 06119 06120 06121 06122 061@04>@0006200 205 06206 06207 06208 06209 06210 06211 06212 06213 06214 06215 06216 06217 06218 06219 06220 06221 06222 062@04>@0006300 305 06306 06307 06308 06309 06310 06311 06312 06313 06314 06315 06316 06317 06318 06319 06320 06321 06322 063@04>@0006400 405 06406 06407 06408 06409 06410 06411 06412 06413 06414 06415 06416 06417 06418 06419 06420 06421 06422 064@04>@0006500 505 06506 06507 06508 06509 06510 06511 06512 06513 06514 06515 06516 06517 06518 06519 06520 06521 06522 065@04>@0006600 605 06606 06607 06608 06609 06610 06611 06612 06613 06614 06615 06616 06617 06618 06619 06620 06621 06622 066@04>@0006700 705 06706 06707 06708 06709 06710 06711 06712 06713 06714 06715 06716 06717 06718 06719 06720 06721 06722 067@04>@0006800 805 06806 06807 06808 06809 06810 06811 06812 06813 06814 06815 06816 06817 06818 06819 06820 06821 06822 068@04>@0006900 905 06906 06907 06908 06909 06910 06911 06912 06913 06914 06915 06916 06917 06918 06919 06920 06921 06922 069@04>@0007000 005 07006 07007 07008 07009 07010 07011 07012 07013 07014 07015 07016 07017 07018 07019 07020 07021 07022 070@04>@0007100 105 07106 07107 07108 07109 07110 07111 07112 07113 07114 07115 07116 07117 07118 07119 07120 07121 07122 071@04>@0007200 205 07206 07207 07208 07209 07210 07211 07212 07213 07214 07215 07216 07217 07218 07219 07220 07221 07222 072@04>@0007300 305 07306 07307 07308 07309 07310 07311 07312 07313 07314 07315 07316 07317 07318 07319 07320 07321 07322 073@04>@0007400 405 07406 07407 07408 07409 07410 07411 07412 07413 07414 07415 07416 07417 07418 07419 07420 07421 07422 074@04>@0007500 505 07506 07507 07508 07509 07510 07511 07512 07513 07514 07515 07516 07517 07518 07519 07520 07521 07522 075@04>@0007600 605 07606 07607 07608 07609 07610 07611 07612 07613 07614 07615 07616 07617 07618 07619 07620 07621 07622 076@04>@0007700 705 07706 07707 07708 07709 07710 07711 07712 07713 07714 07715 07716 07717 07718 07719 07720 07721 07722 077@04>@00:#___________________________________________________________________________________________________________________ +71 Q less-668/lesstest/lt/utf8-2.txt.lt0000644060175306017530000362150214700607710016075 0ustar marknmarkn!lesstest! !version 1 !created 2022-10-20 19:14:01 E "LESS_TERMCAP_am" "1" E "LESS_TERMCAP_cd" "S" E "LESS_TERMCAP_ce" "L" E "LESS_TERMCAP_cl" "A" E "LESS_TERMCAP_cr" "<" E "LESS_TERMCAP_cm" "%p2%d;%p1%dj" E "LESS_TERMCAP_ho" "h" E "LESS_TERMCAP_ll" "l" E "LESS_TERMCAP_mb" "b" E "LESS_TERMCAP_md" "" E "LESS_TERMCAP_me" "" E "LESS_TERMCAP_se" "" E "LESS_TERMCAP_so" "" E "LESS_TERMCAP_sr" "r" E "LESS_TERMCAP_ue" "" E "LESS_TERMCAP_us" "" E "LESS_TERMCAP_vb" "g" E "LESS_TERMCAP_kr" "OC" E "LESS_TERMCAP_kl" "OD" E "LESS_TERMCAP_ku" "OA" E "LESS_TERMCAP_kd" "OB" E "LESS_TERMCAP_kh" "OH" E "LESS_TERMCAP_@7" "OF" E "COLUMNS" "102" E "LINES" "28" E "LESS" "R" E "LESSCHARSET" "utf8" E "LANG" "C" E "LC_CTYPE" "en_US.UTF-8" T "utf8-2.txt" A "utf8-2.txt" F "utf8-2.txt" 1860 yellow foreground red background Double width A🐳 B🐳 C🐳 D🐳 E🐳 F🐳 G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 Mathematics and Sciences: ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β), ℕ ⊆ ℕ₀ ⊂ ℤ ⊂ ℚ ⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B), 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm Linguistics and dictionaries: ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ] APL: ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈ Nicer typography in plain text files: ╔══════════════════════════════════════════╗ ║ ║ ║ • ‘single’ and “double” quotes ║ ║ ║ ║ • Curly apostrophes: “We’ve been here” ║ ║ ║ ║ • Latin-1 apostrophe and accents: '´` ║ ║ ║ ║ • ‚deutsche‘ „Anführungszeichen“ ║ ║ ║ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║ ║ ║ ║ • ASCII safety test: 1lI|, 0OD, 8B ║ ║ ╭─────────╮ ║ ║ • the euro symbol: │ 14.95 € │ ║ ║ ╰─────────╯ ║ ╚══════════════════════════════════════════╝ R =______________________________________________________________________________________________________$21yellow foreground$FF_____________________________________________________________________________________!29red background!FF______________________________________________________________________________________________________________________________________________________________________________________________Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________@04utf8-2.txt@00#____________________________________________________________________________________________ +6a =$21yellow foreground$FF_____________________________________________________________________________________!29red background!FF______________________________________________________________________________________________________________________________________________________________________________________________Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________:#_____________________________________________________________________________________________________ +6a =!29red background!FF______________________________________________________________________________________________________________________________________________________________________________________________Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________:#_____________________________________________________________________________________________________ +6a =______________________________________________________________________________________________________Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________:#_____________________________________________________________________________________________________ +6a =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________:#_____________________________________________________________________________________________________ +6a =______________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________:#_____________________________________________________________________________________________________ +6a =A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________:#_____________________________________________________________________________________________________ +6a =______________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostrophe and accents: '´` ║________________________________________________________:#_____________________________________________________________________________________________________ +6a =Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostrophe and accents: '´` ║________________________________________________________ ║ ║________________________________________________________:#_____________________________________________________________________________________________________ +6a =______________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostrophe and accents: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚deutsche‘ „Anführungszeichen“ ║________________________________________________________:#_____________________________________________________________________________________________________ +6a = ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostrophe and accents: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚deutsche‘ „Anführungszeichen“ ║________________________________________________________ ║ ║________________________________________________________:#_____________________________________________________________________________________________________ +6a =______________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostrophe and accents: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚deutsche‘ „Anführungszeichen“ ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________:#_____________________________________________________________________________________________________ +6a = ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostrophe and accents: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚deutsche‘ „Anführungszeichen“ ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________:#_____________________________________________________________________________________________________ +6a =______________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostrophe and accents: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚deutsche‘ „Anführungszeichen“ ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII safety test: 1lI|, 0OD, 8B ║________________________________________________________:#_____________________________________________________________________________________________________ +6a = 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostrophe and accents: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚deutsche‘ „Anführungszeichen“ ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII safety test: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________:#_____________________________________________________________________________________________________ +6a =______________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostrophe and accents: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚deutsche‘ „Anführungszeichen“ ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII safety test: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • the euro symbol: │ 14.95 € │ ║________________________________________________________:#_____________________________________________________________________________________________________ +2f =______________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostrophe and accents: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚deutsche‘ „Anführungszeichen“ ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII safety test: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • the euro symbol: │ 14.95 € │ ║________________________________________________________/#_____________________________________________________________________________________________________ +65 =______________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostrophe and accents: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚deutsche‘ „Anführungszeichen“ ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII safety test: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • the euro symbol: │ 14.95 € │ ║________________________________________________________/e#____________________________________________________________________________________________________ +2e =______________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostrophe and accents: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚deutsche‘ „Anführungszeichen“ ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII safety test: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • the euro symbol: │ 14.95 € │ ║________________________________________________________/e.#___________________________________________________________________________________________________ +2e =______________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostrophe and accents: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚deutsche‘ „Anführungszeichen“ ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII safety test: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • the euro symbol: │ 14.95 € │ ║________________________________________________________/e..#__________________________________________________________________________________________________ +a =Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________ ║ ╰─────────╯ ║________________________________________________________:#_____________________________________________________________________________________________________ +6a =______________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________ ║ ╰─────────╯ ║________________________________________________________ ╚══════════════════════════════════════════╝________________________________________________________:#_____________________________________________________________________________________________________ +6a = ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________ ║ ╰─────────╯ ║________________________________________________________ ╚══════════════════════════════════════════╝______________________________________________________________________________________________________________________________________________________________@04(END)@00#_________________________________________________________________________________________________ +6a = ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________ ║ ╰─────────╯ ║________________________________________________________ ╚══════════════════════════════════════════╝______________________________________________________________________________________________________________________________________________________________@04(END)@00#_________________________________________________________________________________________________ +6a = ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________ ║ ╰─────────╯ ║________________________________________________________ ╚══════════════════════════════════════════╝______________________________________________________________________________________________________________________________________________________________@04(END)@00#_________________________________________________________________________________________________ +6b =______________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________ ║ ╰─────────╯ ║________________________________________________________ ╚══════════════════════════════════════════╝________________________________________________________:#_____________________________________________________________________________________________________ +6b =Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________ ║ ╰─────────╯ ║________________________________________________________:#_____________________________________________________________________________________________________ +75 =!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________:#_____________________________________________________________________________________________________ +75 =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________:#_____________________________________________________________________________________________________ +75 =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________:#_____________________________________________________________________________________________________ +31 =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________:1#____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________:1#____________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________:1#____________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________@04$21ell@00ow for@04egr@00ound$FF______________________________________________________________________________________@04!29ed @00background!FF_______________________________________________________________________________________________________________________________________________________________________________________________oubl@04e w@00idth_________________________________________________________________________________________________________________________________________________________________________________________________🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________ath@04ema@00tics and Sci@04ences:@00____________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________inguistics and dictionari@04es:@00________________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________PL:_________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________ic@04er @00typography in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________@04$21ell@00ow for@04egr@00ound$FF______________________________________________________________________________________@04!29ed @00background!FF_______________________________________________________________________________________________________________________________________________________________________________________________oubl@04e w@00idth_________________________________________________________________________________________________________________________________________________________________________________________________🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________ath@04ema@00tics and Sci@04ences:@00____________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________inguistics and dictionari@04es:@00________________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________PL:_________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________ic@04er @00typography in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________@04$21ell@00ow for@04egr@00ound$FF______________________________________________________________________________________@04!29ed @00background!FF_______________________________________________________________________________________________________________________________________________________________________________________________oubl@04e w@00idth_________________________________________________________________________________________________________________________________________________________________________________________________🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________ath@04ema@00tics and Sci@04ences:@00____________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________inguistics and dictionari@04es:@00________________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________PL:_________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________ic@04er @00typography in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________@04$21ll@00ow for@04egr@00ound$FF_______________________________________________________________________________________@04!29d @00background!FF________________________________________________________________________________________________________________________________________________________________________________________________ubl@04e w@00idth__________________________________________________________________________________________________________________________________________________________________________________________________@04 @00 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________th@04ema@00tics and Sci@04ences:@00_____________________________________________________________________________________________________________________________________________________________________________________∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________nguistics and dictionari@04es:@00_________________________________________________________________________________________________________________________________________________________________________________ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n__________________________________________________________________Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________L:__________________________________________________________________________________________________________________________________________________________________________________________________________((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________c@04er @00typography in plain t@04ext@00 fil@04es:@00_________________________________________________________________________________________________________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________@04$21ll@00ow for@04egr@00ound$FF_______________________________________________________________________________________@04!29d @00background!FF________________________________________________________________________________________________________________________________________________________________________________________________ubl@04e w@00idth__________________________________________________________________________________________________________________________________________________________________________________________________@04 @00 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________th@04ema@00tics and Sci@04ences:@00_____________________________________________________________________________________________________________________________________________________________________________________∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________nguistics and dictionari@04es:@00_________________________________________________________________________________________________________________________________________________________________________________ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n__________________________________________________________________Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________L:__________________________________________________________________________________________________________________________________________________________________________________________________________((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________c@04er @00typography in plain t@04ext@00 fil@04es:@00_________________________________________________________________________________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________@04$21ll@00ow for@04egr@00ound$FF_______________________________________________________________________________________@04!29d @00background!FF________________________________________________________________________________________________________________________________________________________________________________________________ubl@04e w@00idth__________________________________________________________________________________________________________________________________________________________________________________________________@04 @00 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________th@04ema@00tics and Sci@04ences:@00_____________________________________________________________________________________________________________________________________________________________________________________∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________nguistics and dictionari@04es:@00_________________________________________________________________________________________________________________________________________________________________________________ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n__________________________________________________________________Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________L:__________________________________________________________________________________________________________________________________________________________________________________________________________((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________c@04er @00typography in plain t@04ext@00 fil@04es:@00_________________________________________________________________________________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________@04$21l@00ow for@04egr@00ound$FF________________________________________________________________________________________@04!29 @00background!FF_________________________________________________________________________________________________________________________________________________________________________________________________bl@04e w@00idth___________________________________________________________________________________________________________________________________________________________________________________________________ B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________h@04ema@00tics and Sci@04ences:@00______________________________________________________________________________________________________________________________________________________________________________________ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________guistics and dictionari@04es:@00__________________________________________________________________________________________________________________________________________________________________________________i ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n___________________________________________________________________ [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________:___________________________________________________________________________________________________________________________________________________________________________________________________________(V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________@04er @00typography in plain t@04ext@00 fil@04es:@00__________________________________________________________________________________________________________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________@04$21l@00ow for@04egr@00ound$FF________________________________________________________________________________________@04!29 @00background!FF_________________________________________________________________________________________________________________________________________________________________________________________________bl@04e w@00idth___________________________________________________________________________________________________________________________________________________________________________________________________ B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________h@04ema@00tics and Sci@04ences:@00______________________________________________________________________________________________________________________________________________________________________________________ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________guistics and dictionari@04es:@00__________________________________________________________________________________________________________________________________________________________________________________i ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n___________________________________________________________________ [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________:___________________________________________________________________________________________________________________________________________________________________________________________________________(V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________@04er @00typography in plain t@04ext@00 fil@04es:@00__________________________________________________________________________________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________@04$21l@00ow for@04egr@00ound$FF________________________________________________________________________________________@04!29 @00background!FF_________________________________________________________________________________________________________________________________________________________________________________________________bl@04e w@00idth___________________________________________________________________________________________________________________________________________________________________________________________________ B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________h@04ema@00tics and Sci@04ences:@00______________________________________________________________________________________________________________________________________________________________________________________ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________guistics and dictionari@04es:@00__________________________________________________________________________________________________________________________________________________________________________________i ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n___________________________________________________________________ [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________:___________________________________________________________________________________________________________________________________________________________________________________________________________(V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________@04er @00typography in plain t@04ext@00 fil@04es:@00__________________________________________________________________________________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________$21ow for@04egr@00ound$FF_________________________________________________________________________________________!29background!FF__________________________________________________________________________________________________________________________________________________________________________________________________l@04e w@00idth____________________________________________________________________________________________________________________________________________________________________________________________________B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________@04ema@00tics and Sci@04ences:@00_______________________________________________________________________________________________________________________________________________________________________________________E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________uistics and dictionari@04es:@00___________________________________________________________________________________________________________________________________________________________________________________ ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n____________________________________________________________________[ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________@04r @00typography in plain t@04ext@00 fil@04es:@00___________________________________________________________________________________________________________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________$21ow for@04egr@00ound$FF_________________________________________________________________________________________!29background!FF__________________________________________________________________________________________________________________________________________________________________________________________________l@04e w@00idth____________________________________________________________________________________________________________________________________________________________________________________________________B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________@04ema@00tics and Sci@04ences:@00_______________________________________________________________________________________________________________________________________________________________________________________E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________uistics and dictionari@04es:@00___________________________________________________________________________________________________________________________________________________________________________________ ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n____________________________________________________________________[ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________@04r @00typography in plain t@04ext@00 fil@04es:@00___________________________________________________________________________________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________$21ow for@04egr@00ound$FF_________________________________________________________________________________________!29background!FF__________________________________________________________________________________________________________________________________________________________________________________________________l@04e w@00idth____________________________________________________________________________________________________________________________________________________________________________________________________B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________@04ema@00tics and Sci@04ences:@00_______________________________________________________________________________________________________________________________________________________________________________________E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________uistics and dictionari@04es:@00___________________________________________________________________________________________________________________________________________________________________________________ ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n____________________________________________________________________[ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________@04r @00typography in plain t@04ext@00 fil@04es:@00___________________________________________________________________________________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________$21w for@04egr@00ound$FF__________________________________________________________________________________________!29ackground!FF___________________________________________________________________________________________________________________________________________________________________________________________________@04e w@00idth_____________________________________________________________________________________________________________________________________________________________________________________________________🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _________________________________________________________________________________________________________________________________________________________@04ma@00tics and Sci@04ences:@00________________________________________________________________________________________________________________________________________________________________________________________⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),____________________________________________________________________________________________________________________________________ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),____________________________________________________________________________________________________________________________________________________ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm__________________________________________________________________________________________________________________________________________________________________________istics and dictionari@04es:@00____________________________________________________________________________________________________________________________________________________________________________________ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_____________________________________________________________________ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________@04 @00typography in plain t@04ext@00 fil@04es:@00____________________________________________________________________________________________________________________________________________________________________________:#_____________________________________________________________________________________________________ +65 =$21w for@04egr@00ound$FF__________________________________________________________________________________________!29ackground!FF___________________________________________________________________________________________________________________________________________________________________________________________________@04e w@00idth_____________________________________________________________________________________________________________________________________________________________________________________________________🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _________________________________________________________________________________________________________________________________________________________@04ma@00tics and Sci@04ences:@00________________________________________________________________________________________________________________________________________________________________________________________⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),____________________________________________________________________________________________________________________________________ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),____________________________________________________________________________________________________________________________________________________ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm__________________________________________________________________________________________________________________________________________________________________________istics and dictionari@04es:@00____________________________________________________________________________________________________________________________________________________________________________________ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_____________________________________________________________________ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________@04 @00typography in plain t@04ext@00 fil@04es:@00____________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════════╗_____________________________________________________________:#_____________________________________________________________________________________________________ +65 =!29ackground!FF___________________________________________________________________________________________________________________________________________________________________________________________________@04e w@00idth_____________________________________________________________________________________________________________________________________________________________________________________________________🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _________________________________________________________________________________________________________________________________________________________@04ma@00tics and Sci@04ences:@00________________________________________________________________________________________________________________________________________________________________________________________⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),____________________________________________________________________________________________________________________________________ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),____________________________________________________________________________________________________________________________________________________ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm__________________________________________________________________________________________________________________________________________________________________________istics and dictionari@04es:@00____________________________________________________________________________________________________________________________________________________________________________________ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_____________________________________________________________________ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________@04 @00typography in plain t@04ext@00 fil@04es:@00____________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════════╗_____________________________________________________________ ║_____________________________________________________________:#_____________________________________________________________________________________________________ +65 =______________________________________________________________________________________________________@04e w@00idth_____________________________________________________________________________________________________________________________________________________________________________________________________🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _________________________________________________________________________________________________________________________________________________________@04ma@00tics and Sci@04ences:@00________________________________________________________________________________________________________________________________________________________________________________________⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),____________________________________________________________________________________________________________________________________ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),____________________________________________________________________________________________________________________________________________________ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm__________________________________________________________________________________________________________________________________________________________________________istics and dictionari@04es:@00____________________________________________________________________________________________________________________________________________________________________________________ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_____________________________________________________________________ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________@04 @00typography in plain t@04ext@00 fil@04es:@00____________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════════╗_____________________________________________________________ ║_____________________________________________________________ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_____________________________________________________________:#_____________________________________________________________________________________________________ +64 =______________________________________________________________________________________________________ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_____________________________________________________________________ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________@04 @00typography in plain t@04ext@00 fil@04es:@00____________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════════╗_____________________________________________________________ ║_____________________________________________________________ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_____________________________________________________________ ║_____________________________________________________________ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_____________________________________________________________ ║_____________________________________________________________ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_____________________________________________________________ ║_____________________________________________________________ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_____________________________________________________________ ║_____________________________________________________________ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_____________________________________________________________ ║_____________________________________________________________ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_____________________________________________________________ ╭─────────╮ ║_____________________________________________________________ • th@04e e@00uro symbol: │ 14.95 € │ ║_____________________________________________________________ ╰─────────╯ ║_____________________________________________________________════════════════════════════════════════╝_____________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_____________________________________________________________________ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________@04 @00typography in plain t@04ext@00 fil@04es:@00____________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════════╗_____________________________________________________________ ║_____________________________________________________________ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_____________________________________________________________ ║_____________________________________________________________ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_____________________________________________________________ ║_____________________________________________________________ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_____________________________________________________________ ║_____________________________________________________________ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_____________________________________________________________ ║_____________________________________________________________ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_____________________________________________________________ ║_____________________________________________________________ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_____________________________________________________________ ╭─────────╮ ║_____________________________________________________________ • th@04e e@00uro symbol: │ 14.95 € │ ║_____________________________________________________________ ╰─────────╯ ║_____________________________________________________________════════════════════════════════════════╝_____________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_____________________________________________________________________ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________@04 @00typography in plain t@04ext@00 fil@04es:@00____________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════════╗_____________________________________________________________ ║_____________________________________________________________ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_____________________________________________________________ ║_____________________________________________________________ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_____________________________________________________________ ║_____________________________________________________________ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_____________________________________________________________ ║_____________________________________________________________ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_____________________________________________________________ ║_____________________________________________________________ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_____________________________________________________________ ║_____________________________________________________________ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_____________________________________________________________ ╭─────────╮ ║_____________________________________________________________ • th@04e e@00uro symbol: │ 14.95 € │ ║_____________________________________________________________ ╰─────────╯ ║_____________________________________________________________════════════════════════════════════════╝_____________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________ntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n______________________________________________________________________ʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________typography in plain t@04ext@00 fil@04es:@00_____________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════════╗______________________________________________________________ ║______________________________________________________________• ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║______________________________________________________________ ║______________________________________________________________• Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║______________________________________________________________ ║______________________________________________________________• Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║______________________________________________________________ ║______________________________________________________________• ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║______________________________________________________________ ║______________________________________________________________• †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║______________________________________________________________ ║______________________________________________________________• ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║______________________________________________________________ ╭─────────╮ ║______________________________________________________________• th@04e e@00uro symbol: │ 14.95 € │ ║______________________________________________________________ ╰─────────╯ ║______________________________________________________________═══════════════════════════════════════╝______________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n______________________________________________________________________ʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________typography in plain t@04ext@00 fil@04es:@00_____________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════════╗______________________________________________________________ ║______________________________________________________________• ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║______________________________________________________________ ║______________________________________________________________• Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║______________________________________________________________ ║______________________________________________________________• Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║______________________________________________________________ ║______________________________________________________________• ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║______________________________________________________________ ║______________________________________________________________• †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║______________________________________________________________ ║______________________________________________________________• ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║______________________________________________________________ ╭─────────╮ ║______________________________________________________________• th@04e e@00uro symbol: │ 14.95 € │ ║______________________________________________________________ ╰─────────╯ ║______________________________________________________________═══════════════════════════════════════╝______________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n______________________________________________________________________ʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________typography in plain t@04ext@00 fil@04es:@00_____________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════════╗______________________________________________________________ ║______________________________________________________________• ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║______________________________________________________________ ║______________________________________________________________• Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║______________________________________________________________ ║______________________________________________________________• Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║______________________________________________________________ ║______________________________________________________________• ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║______________________________________________________________ ║______________________________________________________________• †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║______________________________________________________________ ║______________________________________________________________• ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║______________________________________________________________ ╭─────────╮ ║______________________________________________________________• th@04e e@00uro symbol: │ 14.95 € │ ║______________________________________________________________ ╰─────────╯ ║______________________________________________________________═══════════════════════════════════════╝______________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________təˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_______________________________________________________________________psilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________ypography in plain t@04ext@00 fil@04es:@00______________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════╗_______________________________________________________________ ║_______________________________________________________________ ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_______________________________________________________________ ║_______________________________________________________________ Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_______________________________________________________________ ║_______________________________________________________________ Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_______________________________________________________________ ║_______________________________________________________________ ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_______________________________________________________________ ║_______________________________________________________________ †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_______________________________________________________________ ║_______________________________________________________________ ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_______________________________________________________________ ╭─────────╮ ║_______________________________________________________________ th@04e e@00uro symbol: │ 14.95 € │ ║_______________________________________________________________ ╰─────────╯ ║_______________________________________________________________══════════════════════════════════════╝_______________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________təˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_______________________________________________________________________psilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________ypography in plain t@04ext@00 fil@04es:@00______________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════╗_______________________________________________________________ ║_______________________________________________________________ ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_______________________________________________________________ ║_______________________________________________________________ Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_______________________________________________________________ ║_______________________________________________________________ Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_______________________________________________________________ ║_______________________________________________________________ ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_______________________________________________________________ ║_______________________________________________________________ †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_______________________________________________________________ ║_______________________________________________________________ ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_______________________________________________________________ ╭─────────╮ ║_______________________________________________________________ th@04e e@00uro symbol: │ 14.95 € │ ║_______________________________________________________________ ╰─────────╯ ║_______________________________________________________________══════════════════════════════════════╝_______________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________təˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_______________________________________________________________________psilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________ypography in plain t@04ext@00 fil@04es:@00______________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════╗_______________________________________________________________ ║_______________________________________________________________ ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_______________________________________________________________ ║_______________________________________________________________ Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_______________________________________________________________ ║_______________________________________________________________ Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_______________________________________________________________ ║_______________________________________________________________ ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_______________________________________________________________ ║_______________________________________________________________ †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_______________________________________________________________ ║_______________________________________________________________ ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_______________________________________________________________ ╭─────────╮ ║_______________________________________________________________ th@04e e@00uro symbol: │ 14.95 € │ ║_______________________________________________________________ ╰─────────╯ ║_______________________________________________________________══════════════════════════════════════╝_______________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________əˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________________silɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________pography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════╗________________________________________________________________ ║________________________________________________________________‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________________ ║________________________________________________________________Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________________ ║________________________________________________________________Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________________ ║________________________________________________________________‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________________ ║________________________________________________________________†, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________________ ║________________________________________________________________ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________________ ╭─────────╮ ║________________________________________________________________th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________________ ╰─────────╯ ║________________________________________________________________═════════════════════════════════════╝________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________əˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________________silɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________pography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════╗________________________________________________________________ ║________________________________________________________________‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________________ ║________________________________________________________________Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________________ ║________________________________________________________________Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________________ ║________________________________________________________________‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________________ ║________________________________________________________________†, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________________ ║________________________________________________________________ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________________ ╭─────────╮ ║________________________________________________________________th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________________ ╰─────────╯ ║________________________________________________________________═════════════════════════════════════╝________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________əˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________________silɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________pography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════╗________________________________________________________________ ║________________________________________________________________‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________________ ║________________________________________________________________Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________________ ║________________________________________________________________Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________________ ║________________________________________________________________‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________________ ║________________________________________________________________†, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________________ ║________________________________________________________________ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________________ ╭─────────╮ ║________________________________________________________________th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________________ ╰─────────╯ ║________________________________________________________________═════════════════════════════════════╝________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________ˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________________ilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________ography in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════╗_________________________________________________________________ ║_________________________________________________________________singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_________________________________________________________________ ║_________________________________________________________________urly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_________________________________________________________________ ║_________________________________________________________________atin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_________________________________________________________________ ║_________________________________________________________________d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_________________________________________________________________ ║_________________________________________________________________, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_________________________________________________________________ ║_________________________________________________________________SCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_________________________________________________________________ ╭─────────╮ ║_________________________________________________________________h@04e e@00uro symbol: │ 14.95 € │ ║_________________________________________________________________ ╰─────────╯ ║_________________________________________________________________════════════════════════════════════╝_________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________________ilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________ography in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════╗_________________________________________________________________ ║_________________________________________________________________singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_________________________________________________________________ ║_________________________________________________________________urly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_________________________________________________________________ ║_________________________________________________________________atin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_________________________________________________________________ ║_________________________________________________________________d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_________________________________________________________________ ║_________________________________________________________________, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_________________________________________________________________ ║_________________________________________________________________SCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_________________________________________________________________ ╭─────────╮ ║_________________________________________________________________h@04e e@00uro symbol: │ 14.95 € │ ║_________________________________________________________________ ╰─────────╯ ║_________________________________________________________________════════════════════════════════════╝_________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________________ilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________ography in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════╗_________________________________________________________________ ║_________________________________________________________________singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_________________________________________________________________ ║_________________________________________________________________urly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_________________________________________________________________ ║_________________________________________________________________atin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_________________________________________________________________ ║_________________________________________________________________d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_________________________________________________________________ ║_________________________________________________________________, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_________________________________________________________________ ║_________________________________________________________________SCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_________________________________________________________________ ╭─────────╮ ║_________________________________________________________________h@04e e@00uro symbol: │ 14.95 € │ ║_________________________________________________________________ ╰─────────╯ ║_________________________________________________________________════════════════════════════════════╝_________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________næʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n__________________________________________________________________________lɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________graphy in plain t@04ext@00 fil@04es:@00_________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════╗__________________________________________________________________ ║__________________________________________________________________ingl@04e’ @00and “doubl@04e” @00quot@04es @00 ║__________________________________________________________________ ║__________________________________________________________________rly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║__________________________________________________________________ ║__________________________________________________________________tin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║__________________________________________________________________ ║__________________________________________________________________@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║__________________________________________________________________ ║__________________________________________________________________ ‡, ‰, •, 3–4, —, −5/+5, ™, … ║__________________________________________________________________ ║__________________________________________________________________CII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║__________________________________________________________________ ╭─────────╮ ║__________________________________________________________________@04e e@00uro symbol: │ 14.95 € │ ║__________________________________________________________________ ╰─────────╯ ║__________________________________________________________________═══════════════════════════════════╝__________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________næʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n__________________________________________________________________________lɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________graphy in plain t@04ext@00 fil@04es:@00_________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════╗__________________________________________________________________ ║__________________________________________________________________ingl@04e’ @00and “doubl@04e” @00quot@04es @00 ║__________________________________________________________________ ║__________________________________________________________________rly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║__________________________________________________________________ ║__________________________________________________________________tin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║__________________________________________________________________ ║__________________________________________________________________@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║__________________________________________________________________ ║__________________________________________________________________ ‡, ‰, •, 3–4, —, −5/+5, ™, … ║__________________________________________________________________ ║__________________________________________________________________CII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║__________________________________________________________________ ╭─────────╮ ║__________________________________________________________________@04e e@00uro symbol: │ 14.95 € │ ║__________________________________________________________________ ╰─────────╯ ║__________________________________________________________________═══════════════════════════════════╝__________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________næʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n__________________________________________________________________________lɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________graphy in plain t@04ext@00 fil@04es:@00_________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════╗__________________________________________________________________ ║__________________________________________________________________ingl@04e’ @00and “doubl@04e” @00quot@04es @00 ║__________________________________________________________________ ║__________________________________________________________________rly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║__________________________________________________________________ ║__________________________________________________________________tin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║__________________________________________________________________ ║__________________________________________________________________@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║__________________________________________________________________ ║__________________________________________________________________ ‡, ‰, •, 3–4, —, −5/+5, ™, … ║__________________________________________________________________ ║__________________________________________________________________CII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║__________________________________________________________________ ╭─────────╮ ║__________________________________________________________________@04e e@00uro symbol: │ 14.95 € │ ║__________________________________________________________________ ╰─────────╯ ║__________________________________________________________________═══════════════════════════════════╝__________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________æʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n___________________________________________________________________________ɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________raphy in plain t@04ext@00 fil@04es:@00__________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════╗___________________________________________________________________ ║___________________________________________________________________ngl@04e’ @00and “doubl@04e” @00quot@04es @00 ║___________________________________________________________________ ║___________________________________________________________________ly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║___________________________________________________________________ ║___________________________________________________________________in-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║___________________________________________________________________ ║___________________________________________________________________@04ut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║___________________________________________________________________ ║___________________________________________________________________‡, ‰, •, 3–4, —, −5/+5, ™, … ║___________________________________________________________________ ║___________________________________________________________________II saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║___________________________________________________________________ ╭─────────╮ ║___________________________________________________________________@04 e@00uro symbol: │ 14.95 € │ ║___________________________________________________________________ ╰─────────╯ ║___________________________________________________________________══════════════════════════════════╝___________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________æʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n___________________________________________________________________________ɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________raphy in plain t@04ext@00 fil@04es:@00__________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════╗___________________________________________________________________ ║___________________________________________________________________ngl@04e’ @00and “doubl@04e” @00quot@04es @00 ║___________________________________________________________________ ║___________________________________________________________________ly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║___________________________________________________________________ ║___________________________________________________________________in-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║___________________________________________________________________ ║___________________________________________________________________@04ut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║___________________________________________________________________ ║___________________________________________________________________‡, ‰, •, 3–4, —, −5/+5, ™, … ║___________________________________________________________________ ║___________________________________________________________________II saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║___________________________________________________________________ ╭─────────╮ ║___________________________________________________________________@04 e@00uro symbol: │ 14.95 € │ ║___________________________________________________________________ ╰─────────╯ ║___________________________________________________________________══════════════════════════════════╝___________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________æʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n___________________________________________________________________________ɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________raphy in plain t@04ext@00 fil@04es:@00__________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════╗___________________________________________________________________ ║___________________________________________________________________ngl@04e’ @00and “doubl@04e” @00quot@04es @00 ║___________________________________________________________________ ║___________________________________________________________________ly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║___________________________________________________________________ ║___________________________________________________________________in-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║___________________________________________________________________ ║___________________________________________________________________@04ut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║___________________________________________________________________ ║___________________________________________________________________‡, ‰, •, 3–4, —, −5/+5, ™, … ║___________________________________________________________________ ║___________________________________________________________________II saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║___________________________________________________________________ ╭─────────╮ ║___________________________________________________________________@04 e@00uro symbol: │ 14.95 € │ ║___________________________________________________________________ ╰─────────╯ ║___________________________________________________________________══════════════════════════════════╝___________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________ʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n____________________________________________________________________________n], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________________aphy in plain t@04ext@00 fil@04es:@00___________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════╗____________________________________________________________________ ║____________________________________________________________________gl@04e’ @00and “doubl@04e” @00quot@04es @00 ║____________________________________________________________________ ║____________________________________________________________________y apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║____________________________________________________________________ ║____________________________________________________________________n-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║____________________________________________________________________ ║____________________________________________________________________@04t@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║____________________________________________________________________ ║____________________________________________________________________, ‰, •, 3–4, —, −5/+5, ™, … ║____________________________________________________________________ ║____________________________________________________________________I saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║____________________________________________________________________ ╭─────────╮ ║____________________________________________________________________@04e@00uro symbol: │ 14.95 € │ ║____________________________________________________________________ ╰─────────╯ ║____________________________________________________________________═════════════════════════════════╝____________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n____________________________________________________________________________n], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________________aphy in plain t@04ext@00 fil@04es:@00___________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════╗____________________________________________________________________ ║____________________________________________________________________gl@04e’ @00and “doubl@04e” @00quot@04es @00 ║____________________________________________________________________ ║____________________________________________________________________y apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║____________________________________________________________________ ║____________________________________________________________________n-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║____________________________________________________________________ ║____________________________________________________________________@04t@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║____________________________________________________________________ ║____________________________________________________________________, ‰, •, 3–4, —, −5/+5, ™, … ║____________________________________________________________________ ║____________________________________________________________________I saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║____________________________________________________________________ ╭─────────╮ ║____________________________________________________________________@04e@00uro symbol: │ 14.95 € │ ║____________________________________________________________________ ╰─────────╯ ║____________________________________________________________________═════════════════════════════════╝____________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n____________________________________________________________________________n], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________________aphy in plain t@04ext@00 fil@04es:@00___________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════╗____________________________________________________________________ ║____________________________________________________________________gl@04e’ @00and “doubl@04e” @00quot@04es @00 ║____________________________________________________________________ ║____________________________________________________________________y apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║____________________________________________________________________ ║____________________________________________________________________n-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║____________________________________________________________________ ║____________________________________________________________________@04t@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║____________________________________________________________________ ║____________________________________________________________________, ‰, •, 3–4, —, −5/+5, ™, … ║____________________________________________________________________ ║____________________________________________________________________I saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║____________________________________________________________________ ╭─────────╮ ║____________________________________________________________________@04e@00uro symbol: │ 14.95 € │ ║____________________________________________________________________ ╰─────────╯ ║____________________________________________________________________═════════════════════════════════╝____________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________ənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_____________________________________________________________________________], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________________phy in plain t@04ext@00 fil@04es:@00____________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════╗_____________________________________________________________________ ║_____________________________________________________________________l@04e’ @00and “doubl@04e” @00quot@04es @00 ║_____________________________________________________________________ ║_____________________________________________________________________ apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_____________________________________________________________________ ║_____________________________________________________________________-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_____________________________________________________________________ ║_____________________________________________________________________sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_____________________________________________________________________ ║_____________________________________________________________________ ‰, •, 3–4, —, −5/+5, ™, … ║_____________________________________________________________________ ║_____________________________________________________________________ saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_____________________________________________________________________ ╭─────────╮ ║_____________________________________________________________________uro symbol: │ 14.95 € │ ║_____________________________________________________________________ ╰─────────╯ ║_____________________________________________________________________════════════════════════════════╝_____________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_____________________________________________________________________________], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________________phy in plain t@04ext@00 fil@04es:@00____________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════╗_____________________________________________________________________ ║_____________________________________________________________________l@04e’ @00and “doubl@04e” @00quot@04es @00 ║_____________________________________________________________________ ║_____________________________________________________________________ apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_____________________________________________________________________ ║_____________________________________________________________________-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_____________________________________________________________________ ║_____________________________________________________________________sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_____________________________________________________________________ ║_____________________________________________________________________ ‰, •, 3–4, —, −5/+5, ™, … ║_____________________________________________________________________ ║_____________________________________________________________________ saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_____________________________________________________________________ ╭─────────╮ ║_____________________________________________________________________uro symbol: │ 14.95 € │ ║_____________________________________________________________________ ╰─────────╯ ║_____________________________________________________________________════════════════════════════════╝_____________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_____________________________________________________________________________], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________________phy in plain t@04ext@00 fil@04es:@00____________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════╗_____________________________________________________________________ ║_____________________________________________________________________l@04e’ @00and “doubl@04e” @00quot@04es @00 ║_____________________________________________________________________ ║_____________________________________________________________________ apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_____________________________________________________________________ ║_____________________________________________________________________-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_____________________________________________________________________ ║_____________________________________________________________________sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_____________________________________________________________________ ║_____________________________________________________________________ ‰, •, 3–4, —, −5/+5, ™, … ║_____________________________________________________________________ ║_____________________________________________________________________ saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_____________________________________________________________________ ╭─────────╮ ║_____________________________________________________________________uro symbol: │ 14.95 € │ ║_____________________________________________________________________ ╰─────────╯ ║_____________________________________________________________________════════════════════════════════╝_____________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________nəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n______________________________________________________________________________, Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________________hy in plain t@04ext@00 fil@04es:@00_____________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════╗______________________________________________________________________ ║______________________________________________________________________@04e’ @00and “doubl@04e” @00quot@04es @00 ║______________________________________________________________________ ║______________________________________________________________________apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║______________________________________________________________________ ║______________________________________________________________________1 apostroph@04e a@00nd acc@04ent@00s: '´` ║______________________________________________________________________ ║______________________________________________________________________ch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║______________________________________________________________________ ║______________________________________________________________________‰, •, 3–4, —, −5/+5, ™, … ║______________________________________________________________________ ║______________________________________________________________________saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║______________________________________________________________________ ╭─────────╮ ║______________________________________________________________________ro symbol: │ 14.95 € │ ║______________________________________________________________________ ╰─────────╯ ║______________________________________________________________________═══════════════════════════════╝______________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________nəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n______________________________________________________________________________, Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________________hy in plain t@04ext@00 fil@04es:@00_____________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════╗______________________________________________________________________ ║______________________________________________________________________@04e’ @00and “doubl@04e” @00quot@04es @00 ║______________________________________________________________________ ║______________________________________________________________________apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║______________________________________________________________________ ║______________________________________________________________________1 apostroph@04e a@00nd acc@04ent@00s: '´` ║______________________________________________________________________ ║______________________________________________________________________ch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║______________________________________________________________________ ║______________________________________________________________________‰, •, 3–4, —, −5/+5, ™, … ║______________________________________________________________________ ║______________________________________________________________________saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║______________________________________________________________________ ╭─────────╮ ║______________________________________________________________________ro symbol: │ 14.95 € │ ║______________________________________________________________________ ╰─────────╯ ║______________________________________________________________________═══════════════════════════════╝______________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________nəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n______________________________________________________________________________, Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________________hy in plain t@04ext@00 fil@04es:@00_____________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════╗______________________________________________________________________ ║______________________________________________________________________@04e’ @00and “doubl@04e” @00quot@04es @00 ║______________________________________________________________________ ║______________________________________________________________________apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║______________________________________________________________________ ║______________________________________________________________________1 apostroph@04e a@00nd acc@04ent@00s: '´` ║______________________________________________________________________ ║______________________________________________________________________ch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║______________________________________________________________________ ║______________________________________________________________________‰, •, 3–4, —, −5/+5, ™, … ║______________________________________________________________________ ║______________________________________________________________________saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║______________________________________________________________________ ╭─────────╮ ║______________________________________________________________________ro symbol: │ 14.95 € │ ║______________________________________________________________________ ╰─────────╯ ║______________________________________________________________________═══════════════════════════════╝______________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________əl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_______________________________________________________________________________ Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________________y in plain t@04ext@00 fil@04es:@00______________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════╗_______________________________________________________________________ ║_______________________________________________________________________@04’ @00and “doubl@04e” @00quot@04es @00 ║_______________________________________________________________________ ║_______________________________________________________________________postroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_______________________________________________________________________ ║_______________________________________________________________________ apostroph@04e a@00nd acc@04ent@00s: '´` ║_______________________________________________________________________ ║_______________________________________________________________________h@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_______________________________________________________________________ ║_______________________________________________________________________, •, 3–4, —, −5/+5, ™, … ║_______________________________________________________________________ ║_______________________________________________________________________af@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_______________________________________________________________________ ╭─────────╮ ║_______________________________________________________________________o symbol: │ 14.95 € │ ║_______________________________________________________________________ ╰─────────╯ ║_______________________________________________________________________══════════════════════════════╝_______________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________əl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_______________________________________________________________________________ Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________________y in plain t@04ext@00 fil@04es:@00______________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════╗_______________________________________________________________________ ║_______________________________________________________________________@04’ @00and “doubl@04e” @00quot@04es @00 ║_______________________________________________________________________ ║_______________________________________________________________________postroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_______________________________________________________________________ ║_______________________________________________________________________ apostroph@04e a@00nd acc@04ent@00s: '´` ║_______________________________________________________________________ ║_______________________________________________________________________h@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_______________________________________________________________________ ║_______________________________________________________________________, •, 3–4, —, −5/+5, ™, … ║_______________________________________________________________________ ║_______________________________________________________________________af@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_______________________________________________________________________ ╭─────────╮ ║_______________________________________________________________________o symbol: │ 14.95 € │ ║_______________________________________________________________________ ╰─────────╯ ║_______________________________________________________________________══════════════════════════════╝_______________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________əl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_______________________________________________________________________________ Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________________y in plain t@04ext@00 fil@04es:@00______________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════╗_______________________________________________________________________ ║_______________________________________________________________________@04’ @00and “doubl@04e” @00quot@04es @00 ║_______________________________________________________________________ ║_______________________________________________________________________postroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_______________________________________________________________________ ║_______________________________________________________________________ apostroph@04e a@00nd acc@04ent@00s: '´` ║_______________________________________________________________________ ║_______________________________________________________________________h@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_______________________________________________________________________ ║_______________________________________________________________________, •, 3–4, —, −5/+5, ™, … ║_______________________________________________________________________ ║_______________________________________________________________________af@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_______________________________________________________________________ ╭─────────╮ ║_______________________________________________________________________o symbol: │ 14.95 € │ ║_______________________________________________________________________ ╰─────────╯ ║_______________________________________________________________________══════════════════════════════╝_______________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________________________Y@04en @00[jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________@04 @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________________________ ║________________________________________________________________________ostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________________________ ║________________________________________________________________________apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________________________ ║________________________________________________________________________@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________________________ ║________________________________________________________________________ •, 3–4, —, −5/+5, ™, … ║________________________________________________________________________ ║________________________________________________________________________f@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________________________ ╭─────────╮ ║________________________________________________________________________ symbol: │ 14.95 € │ ║________________________________________________________________________ ╰─────────╯ ║________________________________________________________________________═════════════════════════════╝________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________________________Y@04en @00[jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________@04 @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________________________ ║________________________________________________________________________ostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________________________ ║________________________________________________________________________apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________________________ ║________________________________________________________________________@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________________________ ║________________________________________________________________________ •, 3–4, —, −5/+5, ™, … ║________________________________________________________________________ ║________________________________________________________________________f@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________________________ ╭─────────╮ ║________________________________________________________________________ symbol: │ 14.95 € │ ║________________________________________________________________________ ╰─────────╯ ║________________________________________________________________________═════════════════════════════╝________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________________________Y@04en @00[jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________@04 @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________________________ ║________________________________________________________________________ostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________________________ ║________________________________________________________________________apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________________________ ║________________________________________________________________________@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________________________ ║________________________________________________________________________ •, 3–4, —, −5/+5, ™, … ║________________________________________________________________________ ║________________________________________________________________________f@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________________________ ╭─────────╮ ║________________________________________________________________________ symbol: │ 14.95 € │ ║________________________________________________________________________ ╰─────────╯ ║________________________________________________________________________═════════════════════════════╝________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________ fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________________________@04en @00[jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________________in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________________________════════════════════════════╗_________________________________________________________________________ ║_________________________________________________________________________and “doubl@04e” @00quot@04es @00 ║_________________________________________________________________________ ║_________________________________________________________________________stroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_________________________________________________________________________ ║_________________________________________________________________________postroph@04e a@00nd acc@04ent@00s: '´` ║_________________________________________________________________________ ║_________________________________________________________________________@04‘ @00„Anführungsz@04eic@00h@04en“@00 ║_________________________________________________________________________ ║_________________________________________________________________________•, 3–4, —, −5/+5, ™, … ║_________________________________________________________________________ ║_________________________________________________________________________@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_________________________________________________________________________ ╭─────────╮ ║_________________________________________________________________________symbol: │ 14.95 € │ ║_________________________________________________________________________ ╰─────────╯ ║_________________________________________________________________________════════════════════════════╝_________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________________________@04en @00[jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________________in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________________________════════════════════════════╗_________________________________________________________________________ ║_________________________________________________________________________and “doubl@04e” @00quot@04es @00 ║_________________________________________________________________________ ║_________________________________________________________________________stroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_________________________________________________________________________ ║_________________________________________________________________________postroph@04e a@00nd acc@04ent@00s: '´` ║_________________________________________________________________________ ║_________________________________________________________________________@04‘ @00„Anführungsz@04eic@00h@04en“@00 ║_________________________________________________________________________ ║_________________________________________________________________________•, 3–4, —, −5/+5, ™, … ║_________________________________________________________________________ ║_________________________________________________________________________@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_________________________________________________________________________ ╭─────────╮ ║_________________________________________________________________________symbol: │ 14.95 € │ ║_________________________________________________________________________ ╰─────────╯ ║_________________________________________________________________________════════════════════════════╝_________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________________________@04en @00[jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________________in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________________________════════════════════════════╗_________________________________________________________________________ ║_________________________________________________________________________and “doubl@04e” @00quot@04es @00 ║_________________________________________________________________________ ║_________________________________________________________________________stroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_________________________________________________________________________ ║_________________________________________________________________________postroph@04e a@00nd acc@04ent@00s: '´` ║_________________________________________________________________________ ║_________________________________________________________________________@04‘ @00„Anführungsz@04eic@00h@04en“@00 ║_________________________________________________________________________ ║_________________________________________________________________________•, 3–4, —, −5/+5, ™, … ║_________________________________________________________________________ ║_________________________________________________________________________@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_________________________________________________________________________ ╭─────────╮ ║_________________________________________________________________________symbol: │ 14.95 € │ ║_________________________________________________________________________ ╰─────────╯ ║_________________________________________________________________________════════════════════════════╝_________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =______________________________________________________________________________________________________fəˈnɛtık əsoʊsiˈ@04eıʃ@00n__________________________________________________________________________________@04n @00[jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________________n plain t@04ext@00 fil@04es:@00_________________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════╗__________________________________________________________________________ ║__________________________________________________________________________nd “doubl@04e” @00quot@04es @00 ║__________________________________________________________________________ ║__________________________________________________________________________troph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║__________________________________________________________________________ ║__________________________________________________________________________ostroph@04e a@00nd acc@04ent@00s: '´` ║__________________________________________________________________________ ║__________________________________________________________________________@04 @00„Anführungsz@04eic@00h@04en“@00 ║__________________________________________________________________________ ║__________________________________________________________________________, 3–4, —, −5/+5, ™, … ║__________________________________________________________________________ ║__________________________________________________________________________@04ty@00 t@04est@00: 1lI|, 0OD, 8B ║__________________________________________________________________________ ╭─────────╮ ║__________________________________________________________________________ymbol: │ 14.95 € │ ║__________________________________________________________________________ ╰─────────╯ ║__________________________________________________________________________═══════════════════════════╝__________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________fəˈnɛtık əsoʊsiˈ@04eıʃ@00n__________________________________________________________________________________@04n @00[jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________________n plain t@04ext@00 fil@04es:@00_________________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════╗__________________________________________________________________________ ║__________________________________________________________________________nd “doubl@04e” @00quot@04es @00 ║__________________________________________________________________________ ║__________________________________________________________________________troph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║__________________________________________________________________________ ║__________________________________________________________________________ostroph@04e a@00nd acc@04ent@00s: '´` ║__________________________________________________________________________ ║__________________________________________________________________________@04 @00„Anführungsz@04eic@00h@04en“@00 ║__________________________________________________________________________ ║__________________________________________________________________________, 3–4, —, −5/+5, ™, … ║__________________________________________________________________________ ║__________________________________________________________________________@04ty@00 t@04est@00: 1lI|, 0OD, 8B ║__________________________________________________________________________ ╭─────────╮ ║__________________________________________________________________________ymbol: │ 14.95 € │ ║__________________________________________________________________________ ╰─────────╯ ║__________________________________________________________________________═══════════════════════════╝__________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________fəˈnɛtık əsoʊsiˈ@04eıʃ@00n__________________________________________________________________________________@04n @00[jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________________n plain t@04ext@00 fil@04es:@00_________________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════╗__________________________________________________________________________ ║__________________________________________________________________________nd “doubl@04e” @00quot@04es @00 ║__________________________________________________________________________ ║__________________________________________________________________________troph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║__________________________________________________________________________ ║__________________________________________________________________________ostroph@04e a@00nd acc@04ent@00s: '´` ║__________________________________________________________________________ ║__________________________________________________________________________@04 @00„Anführungsz@04eic@00h@04en“@00 ║__________________________________________________________________________ ║__________________________________________________________________________, 3–4, —, −5/+5, ™, … ║__________________________________________________________________________ ║__________________________________________________________________________@04ty@00 t@04est@00: 1lI|, 0OD, 8B ║__________________________________________________________________________ ╭─────────╮ ║__________________________________________________________________________ymbol: │ 14.95 € │ ║__________________________________________________________________________ ╰─────────╯ ║__________________________________________________________________________═══════════════════════════╝__________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________ fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________________________@04en @00[jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________________in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________________________════════════════════════════╗_________________________________________________________________________ ║_________________________________________________________________________and “doubl@04e” @00quot@04es @00 ║_________________________________________________________________________ ║_________________________________________________________________________stroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_________________________________________________________________________ ║_________________________________________________________________________postroph@04e a@00nd acc@04ent@00s: '´` ║_________________________________________________________________________ ║_________________________________________________________________________@04‘ @00„Anführungsz@04eic@00h@04en“@00 ║_________________________________________________________________________ ║_________________________________________________________________________•, 3–4, —, −5/+5, ™, … ║_________________________________________________________________________ ║_________________________________________________________________________@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_________________________________________________________________________ ╭─────────╮ ║_________________________________________________________________________symbol: │ 14.95 € │ ║_________________________________________________________________________ ╰─────────╯ ║_________________________________________________________________________════════════════════════════╝_________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________________________@04en @00[jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________________in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________________________════════════════════════════╗_________________________________________________________________________ ║_________________________________________________________________________and “doubl@04e” @00quot@04es @00 ║_________________________________________________________________________ ║_________________________________________________________________________stroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_________________________________________________________________________ ║_________________________________________________________________________postroph@04e a@00nd acc@04ent@00s: '´` ║_________________________________________________________________________ ║_________________________________________________________________________@04‘ @00„Anführungsz@04eic@00h@04en“@00 ║_________________________________________________________________________ ║_________________________________________________________________________•, 3–4, —, −5/+5, ™, … ║_________________________________________________________________________ ║_________________________________________________________________________@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_________________________________________________________________________ ╭─────────╮ ║_________________________________________________________________________symbol: │ 14.95 € │ ║_________________________________________________________________________ ╰─────────╯ ║_________________________________________________________________________════════════════════════════╝_________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________________________@04en @00[jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________________in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________________________════════════════════════════╗_________________________________________________________________________ ║_________________________________________________________________________and “doubl@04e” @00quot@04es @00 ║_________________________________________________________________________ ║_________________________________________________________________________stroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_________________________________________________________________________ ║_________________________________________________________________________postroph@04e a@00nd acc@04ent@00s: '´` ║_________________________________________________________________________ ║_________________________________________________________________________@04‘ @00„Anführungsz@04eic@00h@04en“@00 ║_________________________________________________________________________ ║_________________________________________________________________________•, 3–4, —, −5/+5, ™, … ║_________________________________________________________________________ ║_________________________________________________________________________@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_________________________________________________________________________ ╭─────────╮ ║_________________________________________________________________________symbol: │ 14.95 € │ ║_________________________________________________________________________ ╰─────────╯ ║_________________________________________________________________________════════════════════════════╝_________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________________________Y@04en @00[jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________@04 @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________________________ ║________________________________________________________________________ostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________________________ ║________________________________________________________________________apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________________________ ║________________________________________________________________________@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________________________ ║________________________________________________________________________ •, 3–4, —, −5/+5, ™, … ║________________________________________________________________________ ║________________________________________________________________________f@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________________________ ╭─────────╮ ║________________________________________________________________________ symbol: │ 14.95 € │ ║________________________________________________________________________ ╰─────────╯ ║________________________________________________________________________═════════════════════════════╝________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________________________Y@04en @00[jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________@04 @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________________________ ║________________________________________________________________________ostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________________________ ║________________________________________________________________________apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________________________ ║________________________________________________________________________@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________________________ ║________________________________________________________________________ •, 3–4, —, −5/+5, ™, … ║________________________________________________________________________ ║________________________________________________________________________f@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________________________ ╭─────────╮ ║________________________________________________________________________ symbol: │ 14.95 € │ ║________________________________________________________________________ ╰─────────╯ ║________________________________________________________________________═════════════════════════════╝________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________________________Y@04en @00[jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________@04 @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________________________ ║________________________________________________________________________ostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________________________ ║________________________________________________________________________apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________________________ ║________________________________________________________________________@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________________________ ║________________________________________________________________________ •, 3–4, —, −5/+5, ™, … ║________________________________________________________________________ ║________________________________________________________________________f@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________________________ ╭─────────╮ ║________________________________________________________________________ symbol: │ 14.95 € │ ║________________________________________________________________________ ╰─────────╯ ║________________________________________________________________________═════════════════════════════╝________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________əl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_______________________________________________________________________________ Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________________y in plain t@04ext@00 fil@04es:@00______________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════╗_______________________________________________________________________ ║_______________________________________________________________________@04’ @00and “doubl@04e” @00quot@04es @00 ║_______________________________________________________________________ ║_______________________________________________________________________postroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_______________________________________________________________________ ║_______________________________________________________________________ apostroph@04e a@00nd acc@04ent@00s: '´` ║_______________________________________________________________________ ║_______________________________________________________________________h@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_______________________________________________________________________ ║_______________________________________________________________________, •, 3–4, —, −5/+5, ™, … ║_______________________________________________________________________ ║_______________________________________________________________________af@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_______________________________________________________________________ ╭─────────╮ ║_______________________________________________________________________o symbol: │ 14.95 € │ ║_______________________________________________________________________ ╰─────────╯ ║_______________________________________________________________________══════════════════════════════╝_______________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________əl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_______________________________________________________________________________ Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________________y in plain t@04ext@00 fil@04es:@00______________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════╗_______________________________________________________________________ ║_______________________________________________________________________@04’ @00and “doubl@04e” @00quot@04es @00 ║_______________________________________________________________________ ║_______________________________________________________________________postroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_______________________________________________________________________ ║_______________________________________________________________________ apostroph@04e a@00nd acc@04ent@00s: '´` ║_______________________________________________________________________ ║_______________________________________________________________________h@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_______________________________________________________________________ ║_______________________________________________________________________, •, 3–4, —, −5/+5, ™, … ║_______________________________________________________________________ ║_______________________________________________________________________af@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_______________________________________________________________________ ╭─────────╮ ║_______________________________________________________________________o symbol: │ 14.95 € │ ║_______________________________________________________________________ ╰─────────╯ ║_______________________________________________________________________══════════════════════════════╝_______________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________əl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_______________________________________________________________________________ Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________________y in plain t@04ext@00 fil@04es:@00______________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════╗_______________________________________________________________________ ║_______________________________________________________________________@04’ @00and “doubl@04e” @00quot@04es @00 ║_______________________________________________________________________ ║_______________________________________________________________________postroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_______________________________________________________________________ ║_______________________________________________________________________ apostroph@04e a@00nd acc@04ent@00s: '´` ║_______________________________________________________________________ ║_______________________________________________________________________h@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_______________________________________________________________________ ║_______________________________________________________________________, •, 3–4, —, −5/+5, ™, … ║_______________________________________________________________________ ║_______________________________________________________________________af@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_______________________________________________________________________ ╭─────────╮ ║_______________________________________________________________________o symbol: │ 14.95 € │ ║_______________________________________________________________________ ╰─────────╯ ║_______________________________________________________________________══════════════════════════════╝_______________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________nəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n______________________________________________________________________________, Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________________hy in plain t@04ext@00 fil@04es:@00_____________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════╗______________________________________________________________________ ║______________________________________________________________________@04e’ @00and “doubl@04e” @00quot@04es @00 ║______________________________________________________________________ ║______________________________________________________________________apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║______________________________________________________________________ ║______________________________________________________________________1 apostroph@04e a@00nd acc@04ent@00s: '´` ║______________________________________________________________________ ║______________________________________________________________________ch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║______________________________________________________________________ ║______________________________________________________________________‰, •, 3–4, —, −5/+5, ™, … ║______________________________________________________________________ ║______________________________________________________________________saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║______________________________________________________________________ ╭─────────╮ ║______________________________________________________________________ro symbol: │ 14.95 € │ ║______________________________________________________________________ ╰─────────╯ ║______________________________________________________________________═══════════════════════════════╝______________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________nəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n______________________________________________________________________________, Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________________hy in plain t@04ext@00 fil@04es:@00_____________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════╗______________________________________________________________________ ║______________________________________________________________________@04e’ @00and “doubl@04e” @00quot@04es @00 ║______________________________________________________________________ ║______________________________________________________________________apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║______________________________________________________________________ ║______________________________________________________________________1 apostroph@04e a@00nd acc@04ent@00s: '´` ║______________________________________________________________________ ║______________________________________________________________________ch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║______________________________________________________________________ ║______________________________________________________________________‰, •, 3–4, —, −5/+5, ™, … ║______________________________________________________________________ ║______________________________________________________________________saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║______________________________________________________________________ ╭─────────╮ ║______________________________________________________________________ro symbol: │ 14.95 € │ ║______________________________________________________________________ ╰─────────╯ ║______________________________________________________________________═══════════════════════════════╝______________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________nəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n______________________________________________________________________________, Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________________hy in plain t@04ext@00 fil@04es:@00_____________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════╗______________________________________________________________________ ║______________________________________________________________________@04e’ @00and “doubl@04e” @00quot@04es @00 ║______________________________________________________________________ ║______________________________________________________________________apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║______________________________________________________________________ ║______________________________________________________________________1 apostroph@04e a@00nd acc@04ent@00s: '´` ║______________________________________________________________________ ║______________________________________________________________________ch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║______________________________________________________________________ ║______________________________________________________________________‰, •, 3–4, —, −5/+5, ™, … ║______________________________________________________________________ ║______________________________________________________________________saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║______________________________________________________________________ ╭─────────╮ ║______________________________________________________________________ro symbol: │ 14.95 € │ ║______________________________________________________________________ ╰─────────╯ ║______________________________________________________________________═══════════════════════════════╝______________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________ənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_____________________________________________________________________________], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________________phy in plain t@04ext@00 fil@04es:@00____________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════╗_____________________________________________________________________ ║_____________________________________________________________________l@04e’ @00and “doubl@04e” @00quot@04es @00 ║_____________________________________________________________________ ║_____________________________________________________________________ apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_____________________________________________________________________ ║_____________________________________________________________________-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_____________________________________________________________________ ║_____________________________________________________________________sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_____________________________________________________________________ ║_____________________________________________________________________ ‰, •, 3–4, —, −5/+5, ™, … ║_____________________________________________________________________ ║_____________________________________________________________________ saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_____________________________________________________________________ ╭─────────╮ ║_____________________________________________________________________uro symbol: │ 14.95 € │ ║_____________________________________________________________________ ╰─────────╯ ║_____________________________________________________________________════════════════════════════════╝_____________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_____________________________________________________________________________], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________________phy in plain t@04ext@00 fil@04es:@00____________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════╗_____________________________________________________________________ ║_____________________________________________________________________l@04e’ @00and “doubl@04e” @00quot@04es @00 ║_____________________________________________________________________ ║_____________________________________________________________________ apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_____________________________________________________________________ ║_____________________________________________________________________-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_____________________________________________________________________ ║_____________________________________________________________________sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_____________________________________________________________________ ║_____________________________________________________________________ ‰, •, 3–4, —, −5/+5, ™, … ║_____________________________________________________________________ ║_____________________________________________________________________ saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_____________________________________________________________________ ╭─────────╮ ║_____________________________________________________________________uro symbol: │ 14.95 € │ ║_____________________________________________________________________ ╰─────────╯ ║_____________________________________________________________________════════════════════════════════╝_____________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_____________________________________________________________________________], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________________phy in plain t@04ext@00 fil@04es:@00____________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════╗_____________________________________________________________________ ║_____________________________________________________________________l@04e’ @00and “doubl@04e” @00quot@04es @00 ║_____________________________________________________________________ ║_____________________________________________________________________ apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_____________________________________________________________________ ║_____________________________________________________________________-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_____________________________________________________________________ ║_____________________________________________________________________sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_____________________________________________________________________ ║_____________________________________________________________________ ‰, •, 3–4, —, −5/+5, ™, … ║_____________________________________________________________________ ║_____________________________________________________________________ saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_____________________________________________________________________ ╭─────────╮ ║_____________________________________________________________________uro symbol: │ 14.95 € │ ║_____________________________________________________________________ ╰─────────╯ ║_____________________________________________________________________════════════════════════════════╝_____________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________ʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n____________________________________________________________________________n], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________________aphy in plain t@04ext@00 fil@04es:@00___________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════╗____________________________________________________________________ ║____________________________________________________________________gl@04e’ @00and “doubl@04e” @00quot@04es @00 ║____________________________________________________________________ ║____________________________________________________________________y apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║____________________________________________________________________ ║____________________________________________________________________n-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║____________________________________________________________________ ║____________________________________________________________________@04t@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║____________________________________________________________________ ║____________________________________________________________________, ‰, •, 3–4, —, −5/+5, ™, … ║____________________________________________________________________ ║____________________________________________________________________I saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║____________________________________________________________________ ╭─────────╮ ║____________________________________________________________________@04e@00uro symbol: │ 14.95 € │ ║____________________________________________________________________ ╰─────────╯ ║____________________________________________________________________═════════════════════════════════╝____________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n____________________________________________________________________________n], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________________aphy in plain t@04ext@00 fil@04es:@00___________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════╗____________________________________________________________________ ║____________________________________________________________________gl@04e’ @00and “doubl@04e” @00quot@04es @00 ║____________________________________________________________________ ║____________________________________________________________________y apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║____________________________________________________________________ ║____________________________________________________________________n-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║____________________________________________________________________ ║____________________________________________________________________@04t@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║____________________________________________________________________ ║____________________________________________________________________, ‰, •, 3–4, —, −5/+5, ™, … ║____________________________________________________________________ ║____________________________________________________________________I saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║____________________________________________________________________ ╭─────────╮ ║____________________________________________________________________@04e@00uro symbol: │ 14.95 € │ ║____________________________________________________________________ ╰─────────╯ ║____________________________________________________________________═════════════════════════════════╝____________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n____________________________________________________________________________n], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________________aphy in plain t@04ext@00 fil@04es:@00___________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════╗____________________________________________________________________ ║____________________________________________________________________gl@04e’ @00and “doubl@04e” @00quot@04es @00 ║____________________________________________________________________ ║____________________________________________________________________y apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║____________________________________________________________________ ║____________________________________________________________________n-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║____________________________________________________________________ ║____________________________________________________________________@04t@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║____________________________________________________________________ ║____________________________________________________________________, ‰, •, 3–4, —, −5/+5, ™, … ║____________________________________________________________________ ║____________________________________________________________________I saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║____________________________________________________________________ ╭─────────╮ ║____________________________________________________________________@04e@00uro symbol: │ 14.95 € │ ║____________________________________________________________________ ╰─────────╯ ║____________________________________________________________________═════════════════════════════════╝____________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________æʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n___________________________________________________________________________ɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________raphy in plain t@04ext@00 fil@04es:@00__________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════╗___________________________________________________________________ ║___________________________________________________________________ngl@04e’ @00and “doubl@04e” @00quot@04es @00 ║___________________________________________________________________ ║___________________________________________________________________ly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║___________________________________________________________________ ║___________________________________________________________________in-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║___________________________________________________________________ ║___________________________________________________________________@04ut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║___________________________________________________________________ ║___________________________________________________________________‡, ‰, •, 3–4, —, −5/+5, ™, … ║___________________________________________________________________ ║___________________________________________________________________II saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║___________________________________________________________________ ╭─────────╮ ║___________________________________________________________________@04 e@00uro symbol: │ 14.95 € │ ║___________________________________________________________________ ╰─────────╯ ║___________________________________________________________________══════════════════════════════════╝___________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________æʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n___________________________________________________________________________ɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________raphy in plain t@04ext@00 fil@04es:@00__________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════╗___________________________________________________________________ ║___________________________________________________________________ngl@04e’ @00and “doubl@04e” @00quot@04es @00 ║___________________________________________________________________ ║___________________________________________________________________ly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║___________________________________________________________________ ║___________________________________________________________________in-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║___________________________________________________________________ ║___________________________________________________________________@04ut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║___________________________________________________________________ ║___________________________________________________________________‡, ‰, •, 3–4, —, −5/+5, ™, … ║___________________________________________________________________ ║___________________________________________________________________II saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║___________________________________________________________________ ╭─────────╮ ║___________________________________________________________________@04 e@00uro symbol: │ 14.95 € │ ║___________________________________________________________________ ╰─────────╯ ║___________________________________________________________________══════════════════════════════════╝___________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________æʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n___________________________________________________________________________ɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________raphy in plain t@04ext@00 fil@04es:@00__________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════╗___________________________________________________________________ ║___________________________________________________________________ngl@04e’ @00and “doubl@04e” @00quot@04es @00 ║___________________________________________________________________ ║___________________________________________________________________ly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║___________________________________________________________________ ║___________________________________________________________________in-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║___________________________________________________________________ ║___________________________________________________________________@04ut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║___________________________________________________________________ ║___________________________________________________________________‡, ‰, •, 3–4, —, −5/+5, ™, … ║___________________________________________________________________ ║___________________________________________________________________II saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║___________________________________________________________________ ╭─────────╮ ║___________________________________________________________________@04 e@00uro symbol: │ 14.95 € │ ║___________________________________________________________________ ╰─────────╯ ║___________________________________________________________________══════════════════════════════════╝___________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________næʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n__________________________________________________________________________lɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________graphy in plain t@04ext@00 fil@04es:@00_________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════╗__________________________________________________________________ ║__________________________________________________________________ingl@04e’ @00and “doubl@04e” @00quot@04es @00 ║__________________________________________________________________ ║__________________________________________________________________rly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║__________________________________________________________________ ║__________________________________________________________________tin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║__________________________________________________________________ ║__________________________________________________________________@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║__________________________________________________________________ ║__________________________________________________________________ ‡, ‰, •, 3–4, —, −5/+5, ™, … ║__________________________________________________________________ ║__________________________________________________________________CII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║__________________________________________________________________ ╭─────────╮ ║__________________________________________________________________@04e e@00uro symbol: │ 14.95 € │ ║__________________________________________________________________ ╰─────────╯ ║__________________________________________________________________═══════════════════════════════════╝__________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________næʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n__________________________________________________________________________lɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________graphy in plain t@04ext@00 fil@04es:@00_________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════╗__________________________________________________________________ ║__________________________________________________________________ingl@04e’ @00and “doubl@04e” @00quot@04es @00 ║__________________________________________________________________ ║__________________________________________________________________rly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║__________________________________________________________________ ║__________________________________________________________________tin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║__________________________________________________________________ ║__________________________________________________________________@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║__________________________________________________________________ ║__________________________________________________________________ ‡, ‰, •, 3–4, —, −5/+5, ™, … ║__________________________________________________________________ ║__________________________________________________________________CII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║__________________________________________________________________ ╭─────────╮ ║__________________________________________________________________@04e e@00uro symbol: │ 14.95 € │ ║__________________________________________________________________ ╰─────────╯ ║__________________________________________________________________═══════════════════════════════════╝__________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________næʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n__________________________________________________________________________lɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________graphy in plain t@04ext@00 fil@04es:@00_________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════╗__________________________________________________________________ ║__________________________________________________________________ingl@04e’ @00and “doubl@04e” @00quot@04es @00 ║__________________________________________________________________ ║__________________________________________________________________rly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║__________________________________________________________________ ║__________________________________________________________________tin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║__________________________________________________________________ ║__________________________________________________________________@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║__________________________________________________________________ ║__________________________________________________________________ ‡, ‰, •, 3–4, —, −5/+5, ™, … ║__________________________________________________________________ ║__________________________________________________________________CII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║__________________________________________________________________ ╭─────────╮ ║__________________________________________________________________@04e e@00uro symbol: │ 14.95 € │ ║__________________________________________________________________ ╰─────────╯ ║__________________________________________________________________═══════════════════════════════════╝__________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________ˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________________ilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________ography in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════╗_________________________________________________________________ ║_________________________________________________________________singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_________________________________________________________________ ║_________________________________________________________________urly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_________________________________________________________________ ║_________________________________________________________________atin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_________________________________________________________________ ║_________________________________________________________________d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_________________________________________________________________ ║_________________________________________________________________, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_________________________________________________________________ ║_________________________________________________________________SCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_________________________________________________________________ ╭─────────╮ ║_________________________________________________________________h@04e e@00uro symbol: │ 14.95 € │ ║_________________________________________________________________ ╰─────────╯ ║_________________________________________________________________════════════════════════════════════╝_________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________________ilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________ography in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════╗_________________________________________________________________ ║_________________________________________________________________singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_________________________________________________________________ ║_________________________________________________________________urly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_________________________________________________________________ ║_________________________________________________________________atin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_________________________________________________________________ ║_________________________________________________________________d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_________________________________________________________________ ║_________________________________________________________________, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_________________________________________________________________ ║_________________________________________________________________SCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_________________________________________________________________ ╭─────────╮ ║_________________________________________________________________h@04e e@00uro symbol: │ 14.95 € │ ║_________________________________________________________________ ╰─────────╯ ║_________________________________________________________________════════════════════════════════════╝_________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________________ilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________ography in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════╗_________________________________________________________________ ║_________________________________________________________________singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_________________________________________________________________ ║_________________________________________________________________urly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_________________________________________________________________ ║_________________________________________________________________atin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_________________________________________________________________ ║_________________________________________________________________d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_________________________________________________________________ ║_________________________________________________________________, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_________________________________________________________________ ║_________________________________________________________________SCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_________________________________________________________________ ╭─────────╮ ║_________________________________________________________________h@04e e@00uro symbol: │ 14.95 € │ ║_________________________________________________________________ ╰─────────╯ ║_________________________________________________________________════════════════════════════════════╝_________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________əˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________________silɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________pography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════╗________________________________________________________________ ║________________________________________________________________‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________________ ║________________________________________________________________Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________________ ║________________________________________________________________Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________________ ║________________________________________________________________‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________________ ║________________________________________________________________†, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________________ ║________________________________________________________________ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________________ ╭─────────╮ ║________________________________________________________________th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________________ ╰─────────╯ ║________________________________________________________________═════════════════════════════════════╝________________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________əˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________________silɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________pography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════╗________________________________________________________________ ║________________________________________________________________‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________________ ║________________________________________________________________Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________________ ║________________________________________________________________Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________________ ║________________________________________________________________‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________________ ║________________________________________________________________†, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________________ ║________________________________________________________________ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________________ ╭─────────╮ ║________________________________________________________________th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________________ ╰─────────╯ ║________________________________________________________________═════════════════════════════════════╝________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________əˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________________silɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________pography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════╗________________________________________________________________ ║________________________________________________________________‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________________ ║________________________________________________________________Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________________ ║________________________________________________________________Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________________ ║________________________________________________________________‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________________ ║________________________________________________________________†, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________________ ║________________________________________________________________ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________________ ╭─────────╮ ║________________________________________________________________th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________________ ╰─────────╯ ║________________________________________________________________═════════════════════════════════════╝________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________təˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_______________________________________________________________________psilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________ypography in plain t@04ext@00 fil@04es:@00______________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════╗_______________________________________________________________ ║_______________________________________________________________ ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_______________________________________________________________ ║_______________________________________________________________ Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_______________________________________________________________ ║_______________________________________________________________ Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_______________________________________________________________ ║_______________________________________________________________ ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_______________________________________________________________ ║_______________________________________________________________ †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_______________________________________________________________ ║_______________________________________________________________ ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_______________________________________________________________ ╭─────────╮ ║_______________________________________________________________ th@04e e@00uro symbol: │ 14.95 € │ ║_______________________________________________________________ ╰─────────╯ ║_______________________________________________________________══════════════════════════════════════╝_______________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________təˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_______________________________________________________________________psilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________ypography in plain t@04ext@00 fil@04es:@00______________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════╗_______________________________________________________________ ║_______________________________________________________________ ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_______________________________________________________________ ║_______________________________________________________________ Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_______________________________________________________________ ║_______________________________________________________________ Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_______________________________________________________________ ║_______________________________________________________________ ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_______________________________________________________________ ║_______________________________________________________________ †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_______________________________________________________________ ║_______________________________________________________________ ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_______________________________________________________________ ╭─────────╮ ║_______________________________________________________________ th@04e e@00uro symbol: │ 14.95 € │ ║_______________________________________________________________ ╰─────────╯ ║_______________________________________________________________══════════════════════════════════════╝_______________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________təˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_______________________________________________________________________psilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________ypography in plain t@04ext@00 fil@04es:@00______________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════╗_______________________________________________________________ ║_______________________________________________________________ ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_______________________________________________________________ ║_______________________________________________________________ Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_______________________________________________________________ ║_______________________________________________________________ Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_______________________________________________________________ ║_______________________________________________________________ ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_______________________________________________________________ ║_______________________________________________________________ †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_______________________________________________________________ ║_______________________________________________________________ ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_______________________________________________________________ ╭─────────╮ ║_______________________________________________________________ th@04e e@00uro symbol: │ 14.95 € │ ║_______________________________________________________________ ╰─────────╯ ║_______________________________________________________________══════════════════════════════════════╝_______________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________ntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n______________________________________________________________________ʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________typography in plain t@04ext@00 fil@04es:@00_____________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════════╗______________________________________________________________ ║______________________________________________________________• ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║______________________________________________________________ ║______________________________________________________________• Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║______________________________________________________________ ║______________________________________________________________• Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║______________________________________________________________ ║______________________________________________________________• ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║______________________________________________________________ ║______________________________________________________________• †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║______________________________________________________________ ║______________________________________________________________• ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║______________________________________________________________ ╭─────────╮ ║______________________________________________________________• th@04e e@00uro symbol: │ 14.95 € │ ║______________________________________________________________ ╰─────────╯ ║______________________________________________________________═══════════════════════════════════════╝______________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n______________________________________________________________________ʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________typography in plain t@04ext@00 fil@04es:@00_____________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════════╗______________________________________________________________ ║______________________________________________________________• ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║______________________________________________________________ ║______________________________________________________________• Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║______________________________________________________________ ║______________________________________________________________• Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║______________________________________________________________ ║______________________________________________________________• ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║______________________________________________________________ ║______________________________________________________________• †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║______________________________________________________________ ║______________________________________________________________• ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║______________________________________________________________ ╭─────────╮ ║______________________________________________________________• th@04e e@00uro symbol: │ 14.95 € │ ║______________________________________________________________ ╰─────────╯ ║______________________________________________________________═══════════════════════════════════════╝______________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n______________________________________________________________________ʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________typography in plain t@04ext@00 fil@04es:@00_____________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════════╗______________________________________________________________ ║______________________________________________________________• ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║______________________________________________________________ ║______________________________________________________________• Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║______________________________________________________________ ║______________________________________________________________• Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║______________________________________________________________ ║______________________________________________________________• ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║______________________________________________________________ ║______________________________________________________________• †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║______________________________________________________________ ║______________________________________________________________• ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║______________________________________________________________ ╭─────────╮ ║______________________________________________________________• th@04e e@00uro symbol: │ 14.95 € │ ║______________________________________________________________ ╰─────────╯ ║______________________________________________________________═══════════════════════════════════════╝______________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_____________________________________________________________________ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________@04 @00typography in plain t@04ext@00 fil@04es:@00____________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════════╗_____________________________________________________________ ║_____________________________________________________________ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_____________________________________________________________ ║_____________________________________________________________ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_____________________________________________________________ ║_____________________________________________________________ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_____________________________________________________________ ║_____________________________________________________________ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_____________________________________________________________ ║_____________________________________________________________ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_____________________________________________________________ ║_____________________________________________________________ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_____________________________________________________________ ╭─────────╮ ║_____________________________________________________________ • th@04e e@00uro symbol: │ 14.95 € │ ║_____________________________________________________________ ╰─────────╯ ║_____________________________________________________________════════════════════════════════════════╝_____________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_____________________________________________________________________ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________@04 @00typography in plain t@04ext@00 fil@04es:@00____________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════════╗_____________________________________________________________ ║_____________________________________________________________ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_____________________________________________________________ ║_____________________________________________________________ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_____________________________________________________________ ║_____________________________________________________________ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_____________________________________________________________ ║_____________________________________________________________ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_____________________________________________________________ ║_____________________________________________________________ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_____________________________________________________________ ║_____________________________________________________________ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_____________________________________________________________ ╭─────────╮ ║_____________________________________________________________ • th@04e e@00uro symbol: │ 14.95 € │ ║_____________________________________________________________ ╰─────────╯ ║_____________________________________________________________════════════════════════════════════════╝_____________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_____________________________________________________________________ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________@04 @00typography in plain t@04ext@00 fil@04es:@00____________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════════╗_____________________________________________________________ ║_____________________________________________________________ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_____________________________________________________________ ║_____________________________________________________________ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_____________________________________________________________ ║_____________________________________________________________ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_____________________________________________________________ ║_____________________________________________________________ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_____________________________________________________________ ║_____________________________________________________________ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_____________________________________________________________ ║_____________________________________________________________ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_____________________________________________________________ ╭─────────╮ ║_____________________________________________________________ • th@04e e@00uro symbol: │ 14.95 € │ ║_____________________________________________________________ ╰─────────╯ ║_____________________________________________________________════════════════════════════════════════╝_____________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________ ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n____________________________________________________________________[ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________@04r @00typography in plain t@04ext@00 fil@04es:@00___________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════════╗____________________________________________________________ ║____________________________________________________________ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║____________________________________________________________ ║____________________________________________________________ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║____________________________________________________________ ║____________________________________________________________ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║____________________________________________________________ ║____________________________________________________________ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║____________________________________________________________ ║____________________________________________________________ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║____________________________________________________________ ║____________________________________________________________ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║____________________________________________________________ ╭─────────╮ ║____________________________________________________________ • th@04e e@00uro symbol: │ 14.95 € │ ║____________________________________________________________ ╰─────────╯ ║____________________________________________________________═════════════════════════════════════════╝____________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n____________________________________________________________________[ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________@04r @00typography in plain t@04ext@00 fil@04es:@00___________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════════╗____________________________________________________________ ║____________________________________________________________ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║____________________________________________________________ ║____________________________________________________________ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║____________________________________________________________ ║____________________________________________________________ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║____________________________________________________________ ║____________________________________________________________ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║____________________________________________________________ ║____________________________________________________________ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║____________________________________________________________ ║____________________________________________________________ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║____________________________________________________________ ╭─────────╮ ║____________________________________________________________ • th@04e e@00uro symbol: │ 14.95 € │ ║____________________________________________________________ ╰─────────╯ ║____________________________________________________________═════════════════════════════════════════╝____________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n____________________________________________________________________[ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________@04r @00typography in plain t@04ext@00 fil@04es:@00___________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════════╗____________________________________________________________ ║____________________________________________________________ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║____________________________________________________________ ║____________________________________________________________ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║____________________________________________________________ ║____________________________________________________________ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║____________________________________________________________ ║____________________________________________________________ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║____________________________________________________________ ║____________________________________________________________ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║____________________________________________________________ ║____________________________________________________________ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║____________________________________________________________ ╭─────────╮ ║____________________________________________________________ • th@04e e@00uro symbol: │ 14.95 € │ ║____________________________________________________________ ╰─────────╯ ║____________________________________________________________═════════════════════════════════════════╝____________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________i ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n___________________________________________________________________ [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________:___________________________________________________________________________________________________________________________________________________________________________________________________________(V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________@04er @00typography in plain t@04ext@00 fil@04es:@00__________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════════╗___________________________________________________________ ║___________________________________________________________ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║___________________________________________________________ ║___________________________________________________________ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║___________________________________________________________ ║___________________________________________________________ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║___________________________________________________________ ║___________________________________________________________ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║___________________________________________________________ ║___________________________________________________________ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║___________________________________________________________ ║___________________________________________________________ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║___________________________________________________________ ╭─────────╮ ║___________________________________________________________ • th@04e e@00uro symbol: │ 14.95 € │ ║___________________________________________________________ ╰─────────╯ ║___________________________________________________________══════════════════════════════════════════╝___________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________i ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n___________________________________________________________________ [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________:___________________________________________________________________________________________________________________________________________________________________________________________________________(V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________@04er @00typography in plain t@04ext@00 fil@04es:@00__________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════════╗___________________________________________________________ ║___________________________________________________________ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║___________________________________________________________ ║___________________________________________________________ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║___________________________________________________________ ║___________________________________________________________ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║___________________________________________________________ ║___________________________________________________________ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║___________________________________________________________ ║___________________________________________________________ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║___________________________________________________________ ║___________________________________________________________ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║___________________________________________________________ ╭─────────╮ ║___________________________________________________________ • th@04e e@00uro symbol: │ 14.95 € │ ║___________________________________________________________ ╰─────────╯ ║___________________________________________________________══════════════════════════════════════════╝___________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________i ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n___________________________________________________________________ [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________:___________________________________________________________________________________________________________________________________________________________________________________________________________(V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________@04er @00typography in plain t@04ext@00 fil@04es:@00__________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════════╗___________________________________________________________ ║___________________________________________________________ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║___________________________________________________________ ║___________________________________________________________ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║___________________________________________________________ ║___________________________________________________________ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║___________________________________________________________ ║___________________________________________________________ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║___________________________________________________________ ║___________________________________________________________ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║___________________________________________________________ ║___________________________________________________________ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║___________________________________________________________ ╭─────────╮ ║___________________________________________________________ • th@04e e@00uro symbol: │ 14.95 € │ ║___________________________________________________________ ╰─────────╯ ║___________________________________________________________══════════════════════════════════════════╝___________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n__________________________________________________________________Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________L:__________________________________________________________________________________________________________________________________________________________________________________________________________((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________c@04er @00typography in plain t@04ext@00 fil@04es:@00_________________________________________________________________________________________________________________________________________________________________________╔══════════════════════════════════════════╗__________________________________________________________║ ║__________________________________________________________║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║__________________________________________________________║ ║__________________________________________________________║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║__________________________________________________________║ ║__________________________________________________________║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║__________________________________________________________║ ║__________________________________________________________║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║__________________________________________________________║ ║__________________________________________________________║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║__________________________________________________________║ ║__________________________________________________________║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║__________________________________________________________║ ╭─────────╮ ║__________________________________________________________║ • th@04e e@00uro symbol: │ 14.95 € │ ║__________________________________________________________║ ╰─────────╯ ║__________________________________________________________╚══════════════════════════════════════════╝__________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n__________________________________________________________________Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________L:__________________________________________________________________________________________________________________________________________________________________________________________________________((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________c@04er @00typography in plain t@04ext@00 fil@04es:@00_________________________________________________________________________________________________________________________________________________________________________╔══════════════════════════════════════════╗__________________________________________________________║ ║__________________________________________________________║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║__________________________________________________________║ ║__________________________________________________________║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║__________________________________________________________║ ║__________________________________________________________║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║__________________________________________________________║ ║__________________________________________________________║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║__________________________________________________________║ ║__________________________________________________________║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║__________________________________________________________║ ║__________________________________________________________║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║__________________________________________________________║ ╭─────────╮ ║__________________________________________________________║ • th@04e e@00uro symbol: │ 14.95 € │ ║__________________________________________________________║ ╰─────────╯ ║__________________________________________________________╚══════════════════════════════════════════╝__________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n__________________________________________________________________Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________L:__________________________________________________________________________________________________________________________________________________________________________________________________________((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________c@04er @00typography in plain t@04ext@00 fil@04es:@00_________________________________________________________________________________________________________________________________________________________________________╔══════════════════════════════════════════╗__________________________________________________________║ ║__________________________________________________________║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║__________________________________________________________║ ║__________________________________________________________║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║__________________________________________________________║ ║__________________________________________________________║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║__________________________________________________________║ ║__________________________________________________________║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║__________________________________________________________║ ║__________________________________________________________║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║__________________________________________________________║ ║__________________________________________________________║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║__________________________________________________________║ ╭─────────╮ ║__________________________________________________________║ • th@04e e@00uro symbol: │ 14.95 € │ ║__________________________________________________________║ ╰─────────╯ ║__________________________________________________________╚══════════════════════════════════════════╝__________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________PL:_________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________ic@04er @00typography in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗_________________________________________________________ ║ ║_________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_________________________________________________________ ║ ║_________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_________________________________________________________ ║ ║_________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_________________________________________________________ ║ ║_________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_________________________________________________________ ║ ║_________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_________________________________________________________ ║ ║_________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_________________________________________________________ ║ ╭─────────╮ ║_________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║_________________________________________________________ ║ ╰─────────╯ ║_________________________________________________________ ╚══════════════════════════════════════════╝_________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________PL:_________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________ic@04er @00typography in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗_________________________________________________________ ║ ║_________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_________________________________________________________ ║ ║_________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_________________________________________________________ ║ ║_________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_________________________________________________________ ║ ║_________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_________________________________________________________ ║ ║_________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_________________________________________________________ ║ ║_________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_________________________________________________________ ║ ╭─────────╮ ║_________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║_________________________________________________________ ║ ╰─────────╯ ║_________________________________________________________ ╚══════════════════════════════════════════╝_________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n_________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________PL:_________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________ic@04er @00typography in plain t@04ext@00 fil@04es:@00________________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗_________________________________________________________ ║ ║_________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║_________________________________________________________ ║ ║_________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║_________________________________________________________ ║ ║_________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║_________________________________________________________ ║ ║_________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║_________________________________________________________ ║ ║_________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║_________________________________________________________ ║ ║_________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║_________________________________________________________ ║ ╭─────────╮ ║_________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║_________________________________________________________ ║ ╰─────────╯ ║_________________________________________________________ ╚══════════════════════════════════════════╝_________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________ ║ ╰─────────╯ ║________________________________________________________ ╚══════════════════════════════════════════╝________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________ ║ ╰─────────╯ ║________________________________________________________ ╚══════════════════════════════════════════╝________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________ ║ ╰─────────╯ ║________________________________________________________ ╚══════════════════════════════════════════╝________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________ ║ ╰─────────╯ ║________________________________________________________ ╚══════════════════════════════════════════╝________________________________________________________:#_____________________________________________________________________________________________________ +1b =______________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________ ║ ╰─────────╯ ║________________________________________________________ ╚══════════════════════════════════════════╝________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =______________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________ ║ ╰─────────╯ ║________________________________________________________ ╚══════════════════════════════════════════╝________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =______________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘singl@04e’ @00and “doubl@04e” @00quot@04es @00 ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostroph@04es:@00 “W@04e’ve been@00 h@04ere@00” ║________________________________________________________ ║ ║________________________________________________________ ║ • Latin-1 apostroph@04e a@00nd acc@04ent@00s: '´` ║________________________________________________________ ║ ║________________________________________________________ ║ • ‚d@04eut@00sch@04e‘ @00„Anführungsz@04eic@00h@04en“@00 ║________________________________________________________ ║ ║________________________________________________________ ║ • †, ‡, ‰, •, 3–4, —, −5/+5, ™, … ║________________________________________________________ ║ ║________________________________________________________ ║ • ASCII saf@04ety@00 t@04est@00: 1lI|, 0OD, 8B ║________________________________________________________ ║ ╭─────────╮ ║________________________________________________________ ║ • th@04e e@00uro symbol: │ 14.95 € │ ║________________________________________________________ ║ ╰─────────╯ ║________________________________________________________ ╚══════════════════════════════════════════╝________________________________________________________:#_____________________________________________________________________________________________________ +67 =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________:#_____________________________________________________________________________________________________ +45 =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________Examine: #_____________________________________________________________________________________________ +2e =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________Examine: .#____________________________________________________________________________________________ +2e =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________Examine: ..#___________________________________________________________________________________________ +2e =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________Examine: ...#__________________________________________________________________________________________ +2e =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________Examine: ....#_________________________________________________________________________________________ +a =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________@04....: No such file or directory (press RETURN)@00#_______________________________________________________ +2f =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________/#_____________________________________________________________________________________________________ +45 =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________/E#____________________________________________________________________________________________________ +2e =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________/E.#___________________________________________________________________________________________________ +2e =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________/E..#__________________________________________________________________________________________________ +2e =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________/E...#_________________________________________________________________________________________________ +2e =______________________________________________________________________________________________________$21y@04ell@00ow for@04egr@00ound$FF_____________________________________________________________________________________!29r@04ed @00background!FF______________________________________________________________________________________________________________________________________________________________________________________________Doubl@04e w@00idth________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1FE🐳$FF$1F F🐳$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Math@04ema@00tics and Sci@04ences:@00___________________________________________________________________________________________________________________________________________________________________________________ ∮ E⋅da = Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionari@04es:@00_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈ@04eıʃ@00n________________________________________________________________ Y [ˈʏpsilɔn], Y@04en @00[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nic@04er @00typography in plain t@04ext@00 fil@04es:@00_______________________________________________________________________________________________________________________________________________________________________/E....#________________________________________________________________________________________________ +a =A🐳 B🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ @04E⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________@04utf8-2.txt@00#____________________________________________________________________________________________ +1b =A🐳 B🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ @04E⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =A🐳 B🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ @04E⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║________________________________________________________ ║ ║________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =🐳 B🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________athematics and Sciences:____________________________________________________________________________________________________________________________________________________________________________________ ∮ @04E⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________inguistics and dictionaries:________________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________PL:_________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________icer typography in plain text files:________________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗_________________________________________________________ ║ ║_________________________________________________________ ║ • ‘single’ and “double” quotes ║_________________________________________________________ ║ ║_________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║_________________________________________________________ ║ ║_________________________________________________________:#_____________________________________________________________________________________________________ +1b =🐳 B🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________athematics and Sciences:____________________________________________________________________________________________________________________________________________________________________________________ ∮ @04E⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________inguistics and dictionaries:________________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________PL:_________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________icer typography in plain text files:________________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗_________________________________________________________ ║ ║_________________________________________________________ ║ • ‘single’ and “double” quotes ║_________________________________________________________ ║ ║_________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║_________________________________________________________ ║ ║_________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =🐳 B🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________athematics and Sciences:____________________________________________________________________________________________________________________________________________________________________________________ ∮ @04E⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________inguistics and dictionaries:________________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________PL:_________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________icer typography in plain text files:________________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗_________________________________________________________ ║ ║_________________________________________________________ ║ • ‘single’ and “double” quotes ║_________________________________________________________ ║ ║_________________________________________________________ ║ • Curly apostrophes: “We’ve been here” ║_________________________________________________________ ║ ║_________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =@04 @00 B🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________thematics and Sciences:_____________________________________________________________________________________________________________________________________________________________________________________∮ @04E⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________nguistics and dictionaries:_________________________________________________________________________________________________________________________________________________________________________________ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________L:__________________________________________________________________________________________________________________________________________________________________________________________________________((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________cer typography in plain text files:_________________________________________________________________________________________________________________________________________________________________________╔══════════════════════════════════════════╗__________________________________________________________║ ║__________________________________________________________║ • ‘single’ and “double” quotes ║__________________________________________________________║ ║__________________________________________________________║ • Curly apostrophes: “We’ve been here” ║__________________________________________________________║ ║__________________________________________________________:#_____________________________________________________________________________________________________ +1b =@04 @00 B🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________thematics and Sciences:_____________________________________________________________________________________________________________________________________________________________________________________∮ @04E⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________nguistics and dictionaries:_________________________________________________________________________________________________________________________________________________________________________________ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________L:__________________________________________________________________________________________________________________________________________________________________________________________________________((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________cer typography in plain text files:_________________________________________________________________________________________________________________________________________________________________________╔══════════════════════════════════════════╗__________________________________________________________║ ║__________________________________________________________║ • ‘single’ and “double” quotes ║__________________________________________________________║ ║__________________________________________________________║ • Curly apostrophes: “We’ve been here” ║__________________________________________________________║ ║__________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@04 @00 B🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________thematics and Sciences:_____________________________________________________________________________________________________________________________________________________________________________________∮ @04E⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________nguistics and dictionaries:_________________________________________________________________________________________________________________________________________________________________________________ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________L:__________________________________________________________________________________________________________________________________________________________________________________________________________((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________cer typography in plain text files:_________________________________________________________________________________________________________________________________________________________________________╔══════════════════════════════════════════╗__________________________________________________________║ ║__________________________________________________________║ • ‘single’ and “double” quotes ║__________________________________________________________║ ║__________________________________________________________║ • Curly apostrophes: “We’ve been here” ║__________________________________________________________║ ║__________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 = B🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________hematics and Sciences:______________________________________________________________________________________________________________________________________________________________________________________ @04E⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________guistics and dictionaries:__________________________________________________________________________________________________________________________________________________________________________________i ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________ [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________:___________________________________________________________________________________________________________________________________________________________________________________________________________(V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________er typography in plain text files:__________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════════╗___________________________________________________________ ║___________________________________________________________ • ‘single’ and “double” quotes ║___________________________________________________________ ║___________________________________________________________ • Curly apostrophes: “We’ve been here” ║___________________________________________________________ ║___________________________________________________________:#_____________________________________________________________________________________________________ +1b = B🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________hematics and Sciences:______________________________________________________________________________________________________________________________________________________________________________________ @04E⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________guistics and dictionaries:__________________________________________________________________________________________________________________________________________________________________________________i ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________ [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________:___________________________________________________________________________________________________________________________________________________________________________________________________________(V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________er typography in plain text files:__________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════════╗___________________________________________________________ ║___________________________________________________________ • ‘single’ and “double” quotes ║___________________________________________________________ ║___________________________________________________________ • Curly apostrophes: “We’ve been here” ║___________________________________________________________ ║___________________________________________________________ ESC#__________________________________________________________________________________________________ +4f = B🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________hematics and Sciences:______________________________________________________________________________________________________________________________________________________________________________________ @04E⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________guistics and dictionaries:__________________________________________________________________________________________________________________________________________________________________________________i ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________ [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________:___________________________________________________________________________________________________________________________________________________________________________________________________________(V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________er typography in plain text files:__________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════════╗___________________________________________________________ ║___________________________________________________________ • ‘single’ and “double” quotes ║___________________________________________________________ ║___________________________________________________________ • Curly apostrophes: “We’ve been here” ║___________________________________________________________ ║___________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =B🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________ematics and Sciences:_______________________________________________________________________________________________________________________________________________________________________________________@04E⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________uistics and dictionaries:___________________________________________________________________________________________________________________________________________________________________________________ ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn____________________________________________________________________[ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________r typography in plain text files:___________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════════╗____________________________________________________________ ║____________________________________________________________ • ‘single’ and “double” quotes ║____________________________________________________________ ║____________________________________________________________ • Curly apostrophes: “We’ve been here” ║____________________________________________________________ ║____________________________________________________________:#_____________________________________________________________________________________________________ +1b =B🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________ematics and Sciences:_______________________________________________________________________________________________________________________________________________________________________________________@04E⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________uistics and dictionaries:___________________________________________________________________________________________________________________________________________________________________________________ ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn____________________________________________________________________[ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________r typography in plain text files:___________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════════╗____________________________________________________________ ║____________________________________________________________ • ‘single’ and “double” quotes ║____________________________________________________________ ║____________________________________________________________ • Curly apostrophes: “We’ve been here” ║____________________________________________________________ ║____________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =B🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________ematics and Sciences:_______________________________________________________________________________________________________________________________________________________________________________________@04E⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________uistics and dictionaries:___________________________________________________________________________________________________________________________________________________________________________________ ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn____________________________________________________________________[ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________r typography in plain text files:___________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════════╗____________________________________________________________ ║____________________________________________________________ • ‘single’ and “double” quotes ║____________________________________________________________ ║____________________________________________________________ • Curly apostrophes: “We’ve been here” ║____________________________________________________________ ║____________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _________________________________________________________________________________________________________________________________________________________matics and Sciences:________________________________________________________________________________________________________________________________________________________________________________________@04⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),____________________________________________________________________________________________________________________________________ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),____________________________________________________________________________________________________________________________________________________ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm__________________________________________________________________________________________________________________________________________________________________________istics and dictionaries:____________________________________________________________________________________________________________________________________________________________________________________ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_____________________________________________________________________ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________ typography in plain text files:____________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════════╗_____________________________________________________________ ║_____________________________________________________________ • ‘single’ and “double” quotes ║_____________________________________________________________ ║_____________________________________________________________ • Curly apostrophes: “We’ve been here” ║_____________________________________________________________ ║_____________________________________________________________:#_____________________________________________________________________________________________________ +1b =🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _________________________________________________________________________________________________________________________________________________________matics and Sciences:________________________________________________________________________________________________________________________________________________________________________________________@04⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),____________________________________________________________________________________________________________________________________ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),____________________________________________________________________________________________________________________________________________________ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm__________________________________________________________________________________________________________________________________________________________________________istics and dictionaries:____________________________________________________________________________________________________________________________________________________________________________________ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_____________________________________________________________________ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________ typography in plain text files:____________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════════╗_____________________________________________________________ ║_____________________________________________________________ • ‘single’ and “double” quotes ║_____________________________________________________________ ║_____________________________________________________________ • Curly apostrophes: “We’ve been here” ║_____________________________________________________________ ║_____________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =🐳 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _________________________________________________________________________________________________________________________________________________________matics and Sciences:________________________________________________________________________________________________________________________________________________________________________________________@04⋅da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),____________________________________________________________________________________________________________________________________ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),____________________________________________________________________________________________________________________________________________________ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm__________________________________________________________________________________________________________________________________________________________________________istics and dictionaries:____________________________________________________________________________________________________________________________________________________________________________________ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_____________________________________________________________________ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________ typography in plain text files:____________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════════╗_____________________________________________________________ ║_____________________________________________________________ • ‘single’ and “double” quotes ║_____________________________________________________________ ║_____________________________________________________________ • Curly apostrophes: “We’ve been here” ║_____________________________________________________________ ║_____________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =@04 @00 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 __________________________________________________________________________________________________________________________________________________________atics and Sciences:_________________________________________________________________________________________________________________________________________________________________________________________@04da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_____________________________________________________________________________________________________________________________________ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_____________________________________________________________________________________________________________________________________________________+ O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm___________________________________________________________________________________________________________________________________________________________________________stics and dictionaries:_____________________________________________________________________________________________________________________________________________________________________________________ntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn______________________________________________________________________ʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________typography in plain text files:_____________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════════╗______________________________________________________________ ║______________________________________________________________• ‘single’ and “double” quotes ║______________________________________________________________ ║______________________________________________________________• Curly apostrophes: “We’ve been here” ║______________________________________________________________ ║______________________________________________________________:#_____________________________________________________________________________________________________ +1b =@04 @00 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 __________________________________________________________________________________________________________________________________________________________atics and Sciences:_________________________________________________________________________________________________________________________________________________________________________________________@04da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_____________________________________________________________________________________________________________________________________ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_____________________________________________________________________________________________________________________________________________________+ O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm___________________________________________________________________________________________________________________________________________________________________________stics and dictionaries:_____________________________________________________________________________________________________________________________________________________________________________________ntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn______________________________________________________________________ʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________typography in plain text files:_____________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════════╗______________________________________________________________ ║______________________________________________________________• ‘single’ and “double” quotes ║______________________________________________________________ ║______________________________________________________________• Curly apostrophes: “We’ve been here” ║______________________________________________________________ ║______________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@04 @00 C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 __________________________________________________________________________________________________________________________________________________________atics and Sciences:_________________________________________________________________________________________________________________________________________________________________________________________@04da @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_____________________________________________________________________________________________________________________________________ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_____________________________________________________________________________________________________________________________________________________+ O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm___________________________________________________________________________________________________________________________________________________________________________stics and dictionaries:_____________________________________________________________________________________________________________________________________________________________________________________ntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn______________________________________________________________________ʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________typography in plain text files:_____________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════════╗______________________________________________________________ ║______________________________________________________________• ‘single’ and “double” quotes ║______________________________________________________________ ║______________________________________________________________• Curly apostrophes: “We’ve been here” ║______________________________________________________________ ║______________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 = C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ___________________________________________________________________________________________________________________________________________________________tics and Sciences:__________________________________________________________________________________________________________________________________________________________________________________________@04a @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),______________________________________________________________________________________________________________________________________₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),______________________________________________________________________________________________________________________________________________________ O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm____________________________________________________________________________________________________________________________________________________________________________tics and dictionaries:______________________________________________________________________________________________________________________________________________________________________________________təˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_______________________________________________________________________psilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________ypography in plain text files:______________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════╗_______________________________________________________________ ║_______________________________________________________________ ‘single’ and “double” quotes ║_______________________________________________________________ ║_______________________________________________________________ Curly apostrophes: “We’ve been here” ║_______________________________________________________________ ║_______________________________________________________________:#_____________________________________________________________________________________________________ +1b = C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ___________________________________________________________________________________________________________________________________________________________tics and Sciences:__________________________________________________________________________________________________________________________________________________________________________________________@04a @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),______________________________________________________________________________________________________________________________________₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),______________________________________________________________________________________________________________________________________________________ O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm____________________________________________________________________________________________________________________________________________________________________________tics and dictionaries:______________________________________________________________________________________________________________________________________________________________________________________təˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_______________________________________________________________________psilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________ypography in plain text files:______________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════╗_______________________________________________________________ ║_______________________________________________________________ ‘single’ and “double” quotes ║_______________________________________________________________ ║_______________________________________________________________ Curly apostrophes: “We’ve been here” ║_______________________________________________________________ ║_______________________________________________________________ ESC#__________________________________________________________________________________________________ +4f = C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ___________________________________________________________________________________________________________________________________________________________tics and Sciences:__________________________________________________________________________________________________________________________________________________________________________________________@04a @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),______________________________________________________________________________________________________________________________________₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),______________________________________________________________________________________________________________________________________________________ O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm____________________________________________________________________________________________________________________________________________________________________________tics and dictionaries:______________________________________________________________________________________________________________________________________________________________________________________təˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_______________________________________________________________________psilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________ypography in plain text files:______________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════╗_______________________________________________________________ ║_______________________________________________________________ ‘single’ and “double” quotes ║_______________________________________________________________ ║_______________________________________________________________ Curly apostrophes: “We’ve been here” ║_______________________________________________________________ ║_______________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________ics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________________@04 @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________ics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________əˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________silɔn], Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________pography in plain text files:_______________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════╗________________________________________________________________ ║________________________________________________________________‘single’ and “double” quotes ║________________________________________________________________ ║________________________________________________________________Curly apostrophes: “We’ve been here” ║________________________________________________________________ ║________________________________________________________________:#_____________________________________________________________________________________________________ +1b =C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________ics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________________@04 @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________ics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________əˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________silɔn], Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________pography in plain text files:_______________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════╗________________________________________________________________ ║________________________________________________________________‘single’ and “double” quotes ║________________________________________________________________ ║________________________________________________________________Curly apostrophes: “We’ve been here” ║________________________________________________________________ ║________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =C🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________ics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________________@04 @00= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________ics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________əˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________silɔn], Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________pography in plain text files:_______________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════╗________________________________________________________________ ║________________________________________________________________‘single’ and “double” quotes ║________________________________________________________________ ║________________________________________________________________Curly apostrophes: “We’ve been here” ║________________________________________________________________ ║________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________________cs and Sciences:____________________________________________________________________________________________________________________________________________________________________________________________= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________________!29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________________₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________________cs and dictionaries:________________________________________________________________________________________________________________________________________________________________________________________ˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________________ilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________ography in plain text files:________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════╗_________________________________________________________________ ║_________________________________________________________________single’ and “double” quotes ║_________________________________________________________________ ║_________________________________________________________________urly apostrophes: “We’ve been here” ║_________________________________________________________________ ║_________________________________________________________________:#_____________________________________________________________________________________________________ +1b =🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________________cs and Sciences:____________________________________________________________________________________________________________________________________________________________________________________________= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________________!29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________________₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________________cs and dictionaries:________________________________________________________________________________________________________________________________________________________________________________________ˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________________ilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________ography in plain text files:________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════╗_________________________________________________________________ ║_________________________________________________________________single’ and “double” quotes ║_________________________________________________________________ ║_________________________________________________________________urly apostrophes: “We’ve been here” ║_________________________________________________________________ ║_________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =🐳 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________________cs and Sciences:____________________________________________________________________________________________________________________________________________________________________________________________= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________________!29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________________₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________________cs and dictionaries:________________________________________________________________________________________________________________________________________________________________________________________ˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________________ilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________ography in plain text files:________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════╗_________________________________________________________________ ║_________________________________________________________________single’ and “double” quotes ║_________________________________________________________________ ║_________________________________________________________________urly apostrophes: “We’ve been here” ║_________________________________________________________________ ║_________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =@04 @00 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________________s and Sciences:_____________________________________________________________________________________________________________________________________________________________________________________________ Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________________!29 ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________________ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________________s and dictionaries:_________________________________________________________________________________________________________________________________________________________________________________________næʃənəl fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________________lɔn], Yen [jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________graphy in plain text files:_________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════╗__________________________________________________________________ ║__________________________________________________________________ingle’ and “double” quotes ║__________________________________________________________________ ║__________________________________________________________________rly apostrophes: “We’ve been here” ║__________________________________________________________________ ║__________________________________________________________________:#_____________________________________________________________________________________________________ +1b =@04 @00 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________________s and Sciences:_____________________________________________________________________________________________________________________________________________________________________________________________ Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________________!29 ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________________ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________________s and dictionaries:_________________________________________________________________________________________________________________________________________________________________________________________næʃənəl fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________________lɔn], Yen [jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________graphy in plain text files:_________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════╗__________________________________________________________________ ║__________________________________________________________________ingle’ and “double” quotes ║__________________________________________________________________ ║__________________________________________________________________rly apostrophes: “We’ve been here” ║__________________________________________________________________ ║__________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@04 @00 D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________________s and Sciences:_____________________________________________________________________________________________________________________________________________________________________________________________ Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________________!29 ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________________ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________________s and dictionaries:_________________________________________________________________________________________________________________________________________________________________________________________næʃənəl fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________________lɔn], Yen [jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________graphy in plain text files:_________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════╗__________________________________________________________________ ║__________________________________________________________________ingle’ and “double” quotes ║__________________________________________________________________ ║__________________________________________________________________rly apostrophes: “We’ve been here” ║__________________________________________________________________ ║__________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 = D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________________ and Sciences:______________________________________________________________________________________________________________________________________________________________________________________________Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________________!29ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________________⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________________ and dictionaries:__________________________________________________________________________________________________________________________________________________________________________________________æʃənəl fəˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________________ɔn], Yen [jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________raphy in plain text files:__________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════╗___________________________________________________________________ ║___________________________________________________________________ngle’ and “double” quotes ║___________________________________________________________________ ║___________________________________________________________________ly apostrophes: “We’ve been here” ║___________________________________________________________________ ║___________________________________________________________________:#_____________________________________________________________________________________________________ +1b = D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________________ and Sciences:______________________________________________________________________________________________________________________________________________________________________________________________Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________________!29ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________________⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________________ and dictionaries:__________________________________________________________________________________________________________________________________________________________________________________________æʃənəl fəˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________________ɔn], Yen [jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________raphy in plain text files:__________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════╗___________________________________________________________________ ║___________________________________________________________________ngle’ and “double” quotes ║___________________________________________________________________ ║___________________________________________________________________ly apostrophes: “We’ve been here” ║___________________________________________________________________ ║___________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f = D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________________ and Sciences:______________________________________________________________________________________________________________________________________________________________________________________________Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________________!29ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________________⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________________ and dictionaries:__________________________________________________________________________________________________________________________________________________________________________________________æʃənəl fəˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________________ɔn], Yen [jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________raphy in plain text files:__________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════╗___________________________________________________________________ ║___________________________________________________________________ngle’ and “double” quotes ║___________________________________________________________________ ║___________________________________________________________________ly apostrophes: “We’ve been here” ║___________________________________________________________________ ║___________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________________and Sciences:_______________________________________________________________________________________________________________________________________________________________________________________________, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________________!29 ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________________ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________________and dictionaries:___________________________________________________________________________________________________________________________________________________________________________________________ʃənəl fəˈnɛtık əsoʊsiˈeıʃn____________________________________________________________________________n], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________________aphy in plain text files:___________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════╗____________________________________________________________________ ║____________________________________________________________________gle’ and “double” quotes ║____________________________________________________________________ ║____________________________________________________________________y apostrophes: “We’ve been here” ║____________________________________________________________________ ║____________________________________________________________________:#_____________________________________________________________________________________________________ +1b =D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________________and Sciences:_______________________________________________________________________________________________________________________________________________________________________________________________, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________________!29 ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________________ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________________and dictionaries:___________________________________________________________________________________________________________________________________________________________________________________________ʃənəl fəˈnɛtık əsoʊsiˈeıʃn____________________________________________________________________________n], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________________aphy in plain text files:___________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════╗____________________________________________________________________ ║____________________________________________________________________gle’ and “double” quotes ║____________________________________________________________________ ║____________________________________________________________________y apostrophes: “We’ve been here” ║____________________________________________________________________ ║____________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =D🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________________and Sciences:_______________________________________________________________________________________________________________________________________________________________________________________________, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________________!29 ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________________ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________________and dictionaries:___________________________________________________________________________________________________________________________________________________________________________________________ʃənəl fəˈnɛtık əsoʊsiˈeıʃn____________________________________________________________________________n], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________________aphy in plain text files:___________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════╗____________________________________________________________________ ║____________________________________________________________________gle’ and “double” quotes ║____________________________________________________________________ ║____________________________________________________________________y apostrophes: “We’ve been here” ║____________________________________________________________________ ║____________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _________________________________________________________________________________________________________________________________________________________________nd Sciences:________________________________________________________________________________________________________________________________________________________________________________________________ n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),____________________________________________________________________________________________________________________________________________!29⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),____________________________________________________________________________________________________________________________________________________________2H₂O, R = 4.7 kΩ, ⌀ 200 mm__________________________________________________________________________________________________________________________________________________________________________________nd dictionaries:____________________________________________________________________________________________________________________________________________________________________________________________ənəl fəˈnɛtık əsoʊsiˈeıʃn_____________________________________________________________________________], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________________phy in plain text files:____________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════╗_____________________________________________________________________ ║_____________________________________________________________________le’ and “double” quotes ║_____________________________________________________________________ ║_____________________________________________________________________ apostrophes: “We’ve been here” ║_____________________________________________________________________ ║_____________________________________________________________________:#_____________________________________________________________________________________________________ +1b =🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _________________________________________________________________________________________________________________________________________________________________nd Sciences:________________________________________________________________________________________________________________________________________________________________________________________________ n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),____________________________________________________________________________________________________________________________________________!29⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),____________________________________________________________________________________________________________________________________________________________2H₂O, R = 4.7 kΩ, ⌀ 200 mm__________________________________________________________________________________________________________________________________________________________________________________nd dictionaries:____________________________________________________________________________________________________________________________________________________________________________________________ənəl fəˈnɛtık əsoʊsiˈeıʃn_____________________________________________________________________________], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________________phy in plain text files:____________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════╗_____________________________________________________________________ ║_____________________________________________________________________le’ and “double” quotes ║_____________________________________________________________________ ║_____________________________________________________________________ apostrophes: “We’ve been here” ║_____________________________________________________________________ ║_____________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =🐳 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _________________________________________________________________________________________________________________________________________________________________nd Sciences:________________________________________________________________________________________________________________________________________________________________________________________________ n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),____________________________________________________________________________________________________________________________________________!29⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),____________________________________________________________________________________________________________________________________________________________2H₂O, R = 4.7 kΩ, ⌀ 200 mm__________________________________________________________________________________________________________________________________________________________________________________nd dictionaries:____________________________________________________________________________________________________________________________________________________________________________________________ənəl fəˈnɛtık əsoʊsiˈeıʃn_____________________________________________________________________________], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________________phy in plain text files:____________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════╗_____________________________________________________________________ ║_____________________________________________________________________le’ and “double” quotes ║_____________________________________________________________________ ║_____________________________________________________________________ apostrophes: “We’ve been here” ║_____________________________________________________________________ ║_____________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =@04 @00 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 __________________________________________________________________________________________________________________________________________________________________d Sciences:_________________________________________________________________________________________________________________________________________________________________________________________________ n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_____________________________________________________________________________________________________________________________________________!29 ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_____________________________________________________________________________________________________________________________________________________________H₂O, R = 4.7 kΩ, ⌀ 200 mm___________________________________________________________________________________________________________________________________________________________________________________d dictionaries:_____________________________________________________________________________________________________________________________________________________________________________________________nəl fəˈnɛtık əsoʊsiˈeıʃn______________________________________________________________________________, Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________________hy in plain text files:_____________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════╗______________________________________________________________________ ║______________________________________________________________________e’ and “double” quotes ║______________________________________________________________________ ║______________________________________________________________________apostrophes: “We’ve been here” ║______________________________________________________________________ ║______________________________________________________________________:#_____________________________________________________________________________________________________ +1b =@04 @00 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 __________________________________________________________________________________________________________________________________________________________________d Sciences:_________________________________________________________________________________________________________________________________________________________________________________________________ n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_____________________________________________________________________________________________________________________________________________!29 ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_____________________________________________________________________________________________________________________________________________________________H₂O, R = 4.7 kΩ, ⌀ 200 mm___________________________________________________________________________________________________________________________________________________________________________________d dictionaries:_____________________________________________________________________________________________________________________________________________________________________________________________nəl fəˈnɛtık əsoʊsiˈeıʃn______________________________________________________________________________, Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________________hy in plain text files:_____________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════╗______________________________________________________________________ ║______________________________________________________________________e’ and “double” quotes ║______________________________________________________________________ ║______________________________________________________________________apostrophes: “We’ve been here” ║______________________________________________________________________ ║______________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@04 @00 @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 __________________________________________________________________________________________________________________________________________________________________d Sciences:_________________________________________________________________________________________________________________________________________________________________________________________________ n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_____________________________________________________________________________________________________________________________________________!29 ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_____________________________________________________________________________________________________________________________________________________________H₂O, R = 4.7 kΩ, ⌀ 200 mm___________________________________________________________________________________________________________________________________________________________________________________d dictionaries:_____________________________________________________________________________________________________________________________________________________________________________________________nəl fəˈnɛtık əsoʊsiˈeıʃn______________________________________________________________________________, Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________________hy in plain text files:_____________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════╗______________________________________________________________________ ║______________________________________________________________________e’ and “double” quotes ║______________________________________________________________________ ║______________________________________________________________________apostrophes: “We’ve been here” ║______________________________________________________________________ ║______________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 = @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ___________________________________________________________________________________________________________________________________________________________________ Sciences:__________________________________________________________________________________________________________________________________________________________________________________________________n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),______________________________________________________________________________________________________________________________________________!29ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),______________________________________________________________________________________________________________________________________________________________₂O, R = 4.7 kΩ, ⌀ 200 mm____________________________________________________________________________________________________________________________________________________________________________________ dictionaries:______________________________________________________________________________________________________________________________________________________________________________________________əl fəˈnɛtık əsoʊsiˈeıʃn_______________________________________________________________________________ Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________________y in plain text files:______________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════╗_______________________________________________________________________ ║_______________________________________________________________________’ and “double” quotes ║_______________________________________________________________________ ║_______________________________________________________________________postrophes: “We’ve been here” ║_______________________________________________________________________ ║_______________________________________________________________________:#_____________________________________________________________________________________________________ +1b = @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ___________________________________________________________________________________________________________________________________________________________________ Sciences:__________________________________________________________________________________________________________________________________________________________________________________________________n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),______________________________________________________________________________________________________________________________________________!29ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),______________________________________________________________________________________________________________________________________________________________₂O, R = 4.7 kΩ, ⌀ 200 mm____________________________________________________________________________________________________________________________________________________________________________________ dictionaries:______________________________________________________________________________________________________________________________________________________________________________________________əl fəˈnɛtık əsoʊsiˈeıʃn_______________________________________________________________________________ Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________________y in plain text files:______________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════╗_______________________________________________________________________ ║_______________________________________________________________________’ and “double” quotes ║_______________________________________________________________________ ║_______________________________________________________________________postrophes: “We’ve been here” ║_______________________________________________________________________ ║_______________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f = @04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ___________________________________________________________________________________________________________________________________________________________________ Sciences:__________________________________________________________________________________________________________________________________________________________________________________________________n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),______________________________________________________________________________________________________________________________________________!29ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),______________________________________________________________________________________________________________________________________________________________₂O, R = 4.7 kΩ, ⌀ 200 mm____________________________________________________________________________________________________________________________________________________________________________________ dictionaries:______________________________________________________________________________________________________________________________________________________________________________________________əl fəˈnɛtık əsoʊsiˈeıʃn_______________________________________________________________________________ Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________________y in plain text files:______________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════╗_______________________________________________________________________ ║_______________________________________________________________________’ and “double” quotes ║_______________________________________________________________________ ║_______________________________________________________________________postrophes: “We’ve been here” ║_______________________________________________________________________ ║_______________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =@04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________ostrophes: “We’ve been here” ║________________________________________________________________________ ║________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =@04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________ostrophes: “We’ve been here” ║________________________________________________________________________ ║________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________ostrophes: “We’ve been here” ║________________________________________________________________________ ║________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =@04$1F🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________________________ciences:____________________________________________________________________________________________________________________________________________________________________________________________________→ ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________________________⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________________________, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________________________ictionaries:________________________________________________________________________________________________________________________________________________________________________________________________ fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________________________en [jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________________in plain text files:________________________________________________________________________________________________________________________________________________________________________________________════════════════════════════╗_________________________________________________________________________ ║_________________________________________________________________________and “double” quotes ║_________________________________________________________________________ ║_________________________________________________________________________strophes: “We’ve been here” ║_________________________________________________________________________ ║_________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =@04$1F🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________________________ciences:____________________________________________________________________________________________________________________________________________________________________________________________________→ ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________________________⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________________________, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________________________ictionaries:________________________________________________________________________________________________________________________________________________________________________________________________ fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________________________en [jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________________in plain text files:________________________________________________________________________________________________________________________________________________________________________________________════════════════════════════╗_________________________________________________________________________ ║_________________________________________________________________________and “double” quotes ║_________________________________________________________________________ ║_________________________________________________________________________strophes: “We’ve been here” ║_________________________________________________________________________ ║_________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@04$1F🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________________________ciences:____________________________________________________________________________________________________________________________________________________________________________________________________→ ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________________________⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________________________, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________________________ictionaries:________________________________________________________________________________________________________________________________________________________________________________________________ fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________________________en [jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________________in plain text files:________________________________________________________________________________________________________________________________________________________________________________________════════════════════════════╗_________________________________________________________________________ ║_________________________________________________________________________and “double” quotes ║_________________________________________________________________________ ║_________________________________________________________________________strophes: “We’ve been here” ║_________________________________________________________________________ ║_________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =@04 $1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________________________iences:_____________________________________________________________________________________________________________________________________________________________________________________________________ ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________________________ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________________________ R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________________________ctionaries:_________________________________________________________________________________________________________________________________________________________________________________________________fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________________________n [jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________________n plain text files:_________________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════╗__________________________________________________________________________ ║__________________________________________________________________________nd “double” quotes ║__________________________________________________________________________ ║__________________________________________________________________________trophes: “We’ve been here” ║__________________________________________________________________________ ║__________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =@04 $1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________________________iences:_____________________________________________________________________________________________________________________________________________________________________________________________________ ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________________________ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________________________ R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________________________ctionaries:_________________________________________________________________________________________________________________________________________________________________________________________________fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________________________n [jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________________n plain text files:_________________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════╗__________________________________________________________________________ ║__________________________________________________________________________nd “double” quotes ║__________________________________________________________________________ ║__________________________________________________________________________trophes: “We’ve been here” ║__________________________________________________________________________ ║__________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@04 $1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________________________iences:_____________________________________________________________________________________________________________________________________________________________________________________________________ ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________________________ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________________________ R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________________________ctionaries:_________________________________________________________________________________________________________________________________________________________________________________________________fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________________________n [jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________________n plain text files:_________________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════╗__________________________________________________________________________ ║__________________________________________________________________________nd “double” quotes ║__________________________________________________________________________ ║__________________________________________________________________________trophes: “We’ve been here” ║__________________________________________________________________________ ║__________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________________________ences:______________________________________________________________________________________________________________________________________________________________________________________________________∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________________________ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________________________R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________________________tionaries:__________________________________________________________________________________________________________________________________________________________________________________________________əˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________________________ [jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________________ plain text files:__________________________________________________________________________________________________________________________________________________________________________________________══════════════════════════╗___________________________________________________________________________ ║___________________________________________________________________________d “double” quotes ║___________________________________________________________________________ ║___________________________________________________________________________rophes: “We’ve been here” ║___________________________________________________________________________ ║___________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________________________ences:______________________________________________________________________________________________________________________________________________________________________________________________________∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________________________ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________________________R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________________________tionaries:__________________________________________________________________________________________________________________________________________________________________________________________________əˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________________________ [jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________________ plain text files:__________________________________________________________________________________________________________________________________________________________________________________________══════════════════════════╗___________________________________________________________________________ ║___________________________________________________________________________d “double” quotes ║___________________________________________________________________________ ║___________________________________________________________________________rophes: “We’ve been here” ║___________________________________________________________________________ ║___________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________________________ences:______________________________________________________________________________________________________________________________________________________________________________________________________∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________________________ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________________________R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________________________tionaries:__________________________________________________________________________________________________________________________________________________________________________________________________əˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________________________ [jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________________ plain text files:__________________________________________________________________________________________________________________________________________________________________________________________══════════════════════════╗___________________________________________________________________________ ║___________________________________________________________________________d “double” quotes ║___________________________________________________________________________ ║___________________________________________________________________________rophes: “We’ve been here” ║___________________________________________________________________________ ║___________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +43 =@04$1FF🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________________________nces:_______________________________________________________________________________________________________________________________________________________________________________________________________, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________________________ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________________________ = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________________________ionaries:___________________________________________________________________________________________________________________________________________________________________________________________________ˈnɛtık əsoʊsiˈeıʃn____________________________________________________________________________________[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________________________plain text files:___________________________________________________________________________________________________________________________________________________________________________________________═════════════════════════╗____________________________________________________________________________ ║____________________________________________________________________________ “double” quotes ║____________________________________________________________________________ ║____________________________________________________________________________ophes: “We’ve been here” ║____________________________________________________________________________ ║____________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =@04$1FF🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________________________nces:_______________________________________________________________________________________________________________________________________________________________________________________________________, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________________________ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________________________ = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________________________ionaries:___________________________________________________________________________________________________________________________________________________________________________________________________ˈnɛtık əsoʊsiˈeıʃn____________________________________________________________________________________[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________________________plain text files:___________________________________________________________________________________________________________________________________________________________________________________________═════════════════════════╗____________________________________________________________________________ ║____________________________________________________________________________ “double” quotes ║____________________________________________________________________________ ║____________________________________________________________________________ophes: “We’ve been here” ║____________________________________________________________________________ ║____________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@04$1FF🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________________________nces:_______________________________________________________________________________________________________________________________________________________________________________________________________, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________________________ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________________________ = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________________________ionaries:___________________________________________________________________________________________________________________________________________________________________________________________________ˈnɛtık əsoʊsiˈeıʃn____________________________________________________________________________________[jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________________________plain text files:___________________________________________________________________________________________________________________________________________________________________________________________═════════════════════════╗____________________________________________________________________________ ║____________________________________________________________________________ “double” quotes ║____________________________________________________________________________ ║____________________________________________________________________________ophes: “We’ve been here” ║____________________________________________________________________________ ║____________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________________________ences:______________________________________________________________________________________________________________________________________________________________________________________________________∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________________________ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________________________R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________________________tionaries:__________________________________________________________________________________________________________________________________________________________________________________________________əˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________________________ [jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________________ plain text files:__________________________________________________________________________________________________________________________________________________________________________________________══════════════════════════╗___________________________________________________________________________ ║___________________________________________________________________________d “double” quotes ║___________________________________________________________________________ ║___________________________________________________________________________rophes: “We’ve been here” ║___________________________________________________________________________ ║___________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________________________ences:______________________________________________________________________________________________________________________________________________________________________________________________________∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________________________ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________________________R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________________________tionaries:__________________________________________________________________________________________________________________________________________________________________________________________________əˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________________________ [jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________________ plain text files:__________________________________________________________________________________________________________________________________________________________________________________________══════════════════════════╗___________________________________________________________________________ ║___________________________________________________________________________d “double” quotes ║___________________________________________________________________________ ║___________________________________________________________________________rophes: “We’ve been here” ║___________________________________________________________________________ ║___________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________________________ences:______________________________________________________________________________________________________________________________________________________________________________________________________∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________________________ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________________________R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________________________tionaries:__________________________________________________________________________________________________________________________________________________________________________________________________əˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________________________ [jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________________ plain text files:__________________________________________________________________________________________________________________________________________________________________________________________══════════════════════════╗___________________________________________________________________________ ║___________________________________________________________________________d “double” quotes ║___________________________________________________________________________ ║___________________________________________________________________________rophes: “We’ve been here” ║___________________________________________________________________________ ║___________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =@04 $1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________________________iences:_____________________________________________________________________________________________________________________________________________________________________________________________________ ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________________________ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________________________ R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________________________ctionaries:_________________________________________________________________________________________________________________________________________________________________________________________________fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________________________n [jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________________n plain text files:_________________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════╗__________________________________________________________________________ ║__________________________________________________________________________nd “double” quotes ║__________________________________________________________________________ ║__________________________________________________________________________trophes: “We’ve been here” ║__________________________________________________________________________ ║__________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =@04 $1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________________________iences:_____________________________________________________________________________________________________________________________________________________________________________________________________ ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________________________ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________________________ R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________________________ctionaries:_________________________________________________________________________________________________________________________________________________________________________________________________fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________________________n [jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________________n plain text files:_________________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════╗__________________________________________________________________________ ║__________________________________________________________________________nd “double” quotes ║__________________________________________________________________________ ║__________________________________________________________________________trophes: “We’ve been here” ║__________________________________________________________________________ ║__________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@04 $1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________________________iences:_____________________________________________________________________________________________________________________________________________________________________________________________________ ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________________________ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________________________ R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________________________ctionaries:_________________________________________________________________________________________________________________________________________________________________________________________________fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________________________n [jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________________n plain text files:_________________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════╗__________________________________________________________________________ ║__________________________________________________________________________nd “double” quotes ║__________________________________________________________________________ ║__________________________________________________________________________trophes: “We’ve been here” ║__________________________________________________________________________ ║__________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =@04$1F🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________________________ciences:____________________________________________________________________________________________________________________________________________________________________________________________________→ ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________________________⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________________________, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________________________ictionaries:________________________________________________________________________________________________________________________________________________________________________________________________ fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________________________en [jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________________in plain text files:________________________________________________________________________________________________________________________________________________________________________________________════════════════════════════╗_________________________________________________________________________ ║_________________________________________________________________________and “double” quotes ║_________________________________________________________________________ ║_________________________________________________________________________strophes: “We’ve been here” ║_________________________________________________________________________ ║_________________________________________________________________________:#_____________________________________________________________________________________________________ +1b =@04$1F🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________________________ciences:____________________________________________________________________________________________________________________________________________________________________________________________________→ ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________________________⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________________________, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________________________ictionaries:________________________________________________________________________________________________________________________________________________________________________________________________ fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________________________en [jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________________in plain text files:________________________________________________________________________________________________________________________________________________________________________________________════════════════════════════╗_________________________________________________________________________ ║_________________________________________________________________________and “double” quotes ║_________________________________________________________________________ ║_________________________________________________________________________strophes: “We’ve been here” ║_________________________________________________________________________ ║_________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =@04$1F🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________________________ciences:____________________________________________________________________________________________________________________________________________________________________________________________________→ ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________________________⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________________________, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________________________ictionaries:________________________________________________________________________________________________________________________________________________________________________________________________ fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________________________en [jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________________in plain text files:________________________________________________________________________________________________________________________________________________________________________________________════════════════════════════╗_________________________________________________________________________ ║_________________________________________________________________________and “double” quotes ║_________________________________________________________________________ ║_________________________________________________________________________strophes: “We’ve been here” ║_________________________________________________________________________ ║_________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =@04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________ostrophes: “We’ve been here” ║________________________________________________________________________ ║________________________________________________________________________:#_____________________________________________________________________________________________________ +2d =@04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________ostrophes: “We’ve been here” ║________________________________________________________________________ ║________________________________________________________________________-#_____________________________________________________________________________________________________ +2d =@04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________ostrophes: “We’ve been here” ║________________________________________________________________________ ║________________________________________________________________________--#____________________________________________________________________________________________________ +75 =@04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________ostrophes: “We’ve been here” ║________________________________________________________________________ ║________________________________________________________________________--u#___________________________________________________________________________________________________ +73 =@04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________ostrophes: “We’ve been here” ║________________________________________________________________________ ║________________________________________________________________________--us#__________________________________________________________________________________________________ +65 =@04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________ostrophes: “We’ve been here” ║________________________________________________________________________ ║________________________________________________________________________--use#_________________________________________________________________________________________________ +2d =@04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________ostrophes: “We’ve been here” ║________________________________________________________________________ ║________________________________________________________________________--use-#________________________________________________________________________________________________ +63 =@04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________ostrophes: “We’ve been here” ║________________________________________________________________________ ║________________________________________________________________________--use-color#___________________________________________________________________________________________ +a =@04$1FE🐳@00$FF@04$1F F🐳@00$FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________ostrophes: “We’ve been here” ║________________________________________________________________________ ║________________________________________________________________________$1E!67Use color (press RETURN)$FF!FF#_____________________________________________________________________________ +a =$1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________ostrophes: “We’ve been here” ║________________________________________________________________________ ║________________________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +6b =______________________________________________________________________________________________________$1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________ostrophes: “We’ve been here” ║________________________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +6b =____________________________________________________________________________________________________________________________________________________________________________________________________________$1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =____________________________________________________________________________________________________________________________________________________________________________________________________________$1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =____________________________________________________________________________________________________________________________________________________________________________________________________________$1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________________Sciences:___________________________________________________________________________________________________________________________________________________________________________________________________ → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________________!29 !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________________O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________________dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________________l fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________________Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________________ in plain text files:_______________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════╗________________________________________________________________________ ║________________________________________________________________________ and “double” quotes ║________________________________________________________________________ ║________________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =____________________________________________________________________________________________________________________________________________________________________________________________________________ $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ___________________________________________________________________________________________________________________________________________________________________ Sciences:__________________________________________________________________________________________________________________________________________________________________________________________________n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),______________________________________________________________________________________________________________________________________________!29ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),______________________________________________________________________________________________________________________________________________________________₂O, R = 4.7 kΩ, ⌀ 200 mm____________________________________________________________________________________________________________________________________________________________________________________ dictionaries:______________________________________________________________________________________________________________________________________________________________________________________________əl fəˈnɛtık əsoʊsiˈeıʃn_______________________________________________________________________________ Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________________y in plain text files:______________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════╗_______________________________________________________________________ ║_______________________________________________________________________’ and “double” quotes ║_______________________________________________________________________ ║_______________________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =____________________________________________________________________________________________________________________________________________________________________________________________________________ $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ___________________________________________________________________________________________________________________________________________________________________ Sciences:__________________________________________________________________________________________________________________________________________________________________________________________________n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),______________________________________________________________________________________________________________________________________________!29ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),______________________________________________________________________________________________________________________________________________________________₂O, R = 4.7 kΩ, ⌀ 200 mm____________________________________________________________________________________________________________________________________________________________________________________ dictionaries:______________________________________________________________________________________________________________________________________________________________________________________________əl fəˈnɛtık əsoʊsiˈeıʃn_______________________________________________________________________________ Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________________y in plain text files:______________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════╗_______________________________________________________________________ ║_______________________________________________________________________’ and “double” quotes ║_______________________________________________________________________ ║_______________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =____________________________________________________________________________________________________________________________________________________________________________________________________________ $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ___________________________________________________________________________________________________________________________________________________________________ Sciences:__________________________________________________________________________________________________________________________________________________________________________________________________n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),______________________________________________________________________________________________________________________________________________!29ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),______________________________________________________________________________________________________________________________________________________________₂O, R = 4.7 kΩ, ⌀ 200 mm____________________________________________________________________________________________________________________________________________________________________________________ dictionaries:______________________________________________________________________________________________________________________________________________________________________________________________əl fəˈnɛtık əsoʊsiˈeıʃn_______________________________________________________________________________ Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________________y in plain text files:______________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════╗_______________________________________________________________________ ║_______________________________________________________________________’ and “double” quotes ║_______________________________________________________________________ ║_______________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =____________________________________________________________________________________________________________________________________________________________________________________________________________$1E!2E $FF!FF $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 __________________________________________________________________________________________________________________________________________________________________d Sciences:_________________________________________________________________________________________________________________________________________________________________________________________________ n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_____________________________________________________________________________________________________________________________________________!29 ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_____________________________________________________________________________________________________________________________________________________________H₂O, R = 4.7 kΩ, ⌀ 200 mm___________________________________________________________________________________________________________________________________________________________________________________d dictionaries:_____________________________________________________________________________________________________________________________________________________________________________________________nəl fəˈnɛtık əsoʊsiˈeıʃn______________________________________________________________________________, Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________________hy in plain text files:_____________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════╗______________________________________________________________________ ║______________________________________________________________________e’ and “double” quotes ║______________________________________________________________________ ║______________________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =____________________________________________________________________________________________________________________________________________________________________________________________________________$1E!2E $FF!FF $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 __________________________________________________________________________________________________________________________________________________________________d Sciences:_________________________________________________________________________________________________________________________________________________________________________________________________ n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_____________________________________________________________________________________________________________________________________________!29 ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_____________________________________________________________________________________________________________________________________________________________H₂O, R = 4.7 kΩ, ⌀ 200 mm___________________________________________________________________________________________________________________________________________________________________________________d dictionaries:_____________________________________________________________________________________________________________________________________________________________________________________________nəl fəˈnɛtık əsoʊsiˈeıʃn______________________________________________________________________________, Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________________hy in plain text files:_____________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════╗______________________________________________________________________ ║______________________________________________________________________e’ and “double” quotes ║______________________________________________________________________ ║______________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =____________________________________________________________________________________________________________________________________________________________________________________________________________$1E!2E $FF!FF $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 __________________________________________________________________________________________________________________________________________________________________d Sciences:_________________________________________________________________________________________________________________________________________________________________________________________________ n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_____________________________________________________________________________________________________________________________________________!29 ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_____________________________________________________________________________________________________________________________________________________________H₂O, R = 4.7 kΩ, ⌀ 200 mm___________________________________________________________________________________________________________________________________________________________________________________d dictionaries:_____________________________________________________________________________________________________________________________________________________________________________________________nəl fəˈnɛtık əsoʊsiˈeıʃn______________________________________________________________________________, Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________________hy in plain text files:_____________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════╗______________________________________________________________________ ║______________________________________________________________________e’ and “double” quotes ║______________________________________________________________________ ║______________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =____________________________________________________________________________________________________________________________________________________________________________________________________________🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _________________________________________________________________________________________________________________________________________________________________nd Sciences:________________________________________________________________________________________________________________________________________________________________________________________________ n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),____________________________________________________________________________________________________________________________________________!29⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),____________________________________________________________________________________________________________________________________________________________2H₂O, R = 4.7 kΩ, ⌀ 200 mm__________________________________________________________________________________________________________________________________________________________________________________nd dictionaries:____________________________________________________________________________________________________________________________________________________________________________________________ənəl fəˈnɛtık əsoʊsiˈeıʃn_____________________________________________________________________________], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________________phy in plain text files:____________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════╗_____________________________________________________________________ ║_____________________________________________________________________le’ and “double” quotes ║_____________________________________________________________________ ║_____________________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =____________________________________________________________________________________________________________________________________________________________________________________________________________🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _________________________________________________________________________________________________________________________________________________________________nd Sciences:________________________________________________________________________________________________________________________________________________________________________________________________ n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),____________________________________________________________________________________________________________________________________________!29⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),____________________________________________________________________________________________________________________________________________________________2H₂O, R = 4.7 kΩ, ⌀ 200 mm__________________________________________________________________________________________________________________________________________________________________________________nd dictionaries:____________________________________________________________________________________________________________________________________________________________________________________________ənəl fəˈnɛtık əsoʊsiˈeıʃn_____________________________________________________________________________], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________________phy in plain text files:____________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════╗_____________________________________________________________________ ║_____________________________________________________________________le’ and “double” quotes ║_____________________________________________________________________ ║_____________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =____________________________________________________________________________________________________________________________________________________________________________________________________________🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _________________________________________________________________________________________________________________________________________________________________nd Sciences:________________________________________________________________________________________________________________________________________________________________________________________________ n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),____________________________________________________________________________________________________________________________________________!29⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),____________________________________________________________________________________________________________________________________________________________2H₂O, R = 4.7 kΩ, ⌀ 200 mm__________________________________________________________________________________________________________________________________________________________________________________nd dictionaries:____________________________________________________________________________________________________________________________________________________________________________________________ənəl fəˈnɛtık əsoʊsiˈeıʃn_____________________________________________________________________________], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________________phy in plain text files:____________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════╗_____________________________________________________________________ ║_____________________________________________________________________le’ and “double” quotes ║_____________________________________________________________________ ║_____________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =____________________________________________________________________________________________________________________________________________________________________________________________________________D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________________and Sciences:_______________________________________________________________________________________________________________________________________________________________________________________________, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________________!29 ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________________ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________________and dictionaries:___________________________________________________________________________________________________________________________________________________________________________________________ʃənəl fəˈnɛtık əsoʊsiˈeıʃn____________________________________________________________________________n], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________________aphy in plain text files:___________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════╗____________________________________________________________________ ║____________________________________________________________________gle’ and “double” quotes ║____________________________________________________________________ ║____________________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =____________________________________________________________________________________________________________________________________________________________________________________________________________D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________________and Sciences:_______________________________________________________________________________________________________________________________________________________________________________________________, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________________!29 ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________________ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________________and dictionaries:___________________________________________________________________________________________________________________________________________________________________________________________ʃənəl fəˈnɛtık əsoʊsiˈeıʃn____________________________________________________________________________n], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________________aphy in plain text files:___________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════╗____________________________________________________________________ ║____________________________________________________________________gle’ and “double” quotes ║____________________________________________________________________ ║____________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =____________________________________________________________________________________________________________________________________________________________________________________________________________D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________________and Sciences:_______________________________________________________________________________________________________________________________________________________________________________________________, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________________!29 ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________________ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________________and dictionaries:___________________________________________________________________________________________________________________________________________________________________________________________ʃənəl fəˈnɛtık əsoʊsiˈeıʃn____________________________________________________________________________n], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________________aphy in plain text files:___________________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════╗____________________________________________________________________ ║____________________________________________________________________gle’ and “double” quotes ║____________________________________________________________________ ║____________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =h___________________________________________________________________________________________________________________________________________________________________________________________________________ D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________________ and Sciences:______________________________________________________________________________________________________________________________________________________________________________________________Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________________!29ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________________⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________________ and dictionaries:__________________________________________________________________________________________________________________________________________________________________________________________æʃənəl fəˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________________ɔn], Yen [jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________raphy in plain text files:__________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════╗___________________________________________________________________ ║___________________________________________________________________ngle’ and “double” quotes ║___________________________________________________________________ ║___________________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =h___________________________________________________________________________________________________________________________________________________________________________________________________________ D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________________ and Sciences:______________________________________________________________________________________________________________________________________________________________________________________________Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________________!29ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________________⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________________ and dictionaries:__________________________________________________________________________________________________________________________________________________________________________________________æʃənəl fəˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________________ɔn], Yen [jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________raphy in plain text files:__________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════╗___________________________________________________________________ ║___________________________________________________________________ngle’ and “double” quotes ║___________________________________________________________________ ║___________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =h___________________________________________________________________________________________________________________________________________________________________________________________________________ D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________________ and Sciences:______________________________________________________________________________________________________________________________________________________________________________________________Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________________!29ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________________⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________________ and dictionaries:__________________________________________________________________________________________________________________________________________________________________________________________æʃənəl fəˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________________ɔn], Yen [jɛn], Yoga [ˈjoːgɑ]___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________________raphy in plain text files:__________________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════╗___________________________________________________________________ ║___________________________________________________________________ngle’ and “double” quotes ║___________________________________________________________________ ║___________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =th__________________________________________________________________________________________________________________________________________________________________________________________________________$1E!2E $FF!FF D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________________s and Sciences:_____________________________________________________________________________________________________________________________________________________________________________________________ Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________________!29 ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________________ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________________s and dictionaries:_________________________________________________________________________________________________________________________________________________________________________________________næʃənəl fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________________lɔn], Yen [jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________graphy in plain text files:_________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════╗__________________________________________________________________ ║__________________________________________________________________ingle’ and “double” quotes ║__________________________________________________________________ ║__________________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =th__________________________________________________________________________________________________________________________________________________________________________________________________________$1E!2E $FF!FF D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________________s and Sciences:_____________________________________________________________________________________________________________________________________________________________________________________________ Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________________!29 ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________________ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________________s and dictionaries:_________________________________________________________________________________________________________________________________________________________________________________________næʃənəl fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________________lɔn], Yen [jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________graphy in plain text files:_________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════╗__________________________________________________________________ ║__________________________________________________________________ingle’ and “double” quotes ║__________________________________________________________________ ║__________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =th__________________________________________________________________________________________________________________________________________________________________________________________________________$1E!2E $FF!FF D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________________s and Sciences:_____________________________________________________________________________________________________________________________________________________________________________________________ Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________________!29 ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________________ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________________s and dictionaries:_________________________________________________________________________________________________________________________________________________________________________________________næʃənəl fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________________lɔn], Yen [jɛn], Yoga [ˈjoːgɑ]__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________________graphy in plain text files:_________________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════╗__________________________________________________________________ ║__________________________________________________________________ingle’ and “double” quotes ║__________________________________________________________________ ║__________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =dth_________________________________________________________________________________________________________________________________________________________________________________________________________🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________________cs and Sciences:____________________________________________________________________________________________________________________________________________________________________________________________= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________________!29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________________₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________________cs and dictionaries:________________________________________________________________________________________________________________________________________________________________________________________ˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________________ilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________ography in plain text files:________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════╗_________________________________________________________________ ║_________________________________________________________________single’ and “double” quotes ║_________________________________________________________________ ║_________________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =dth_________________________________________________________________________________________________________________________________________________________________________________________________________🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________________cs and Sciences:____________________________________________________________________________________________________________________________________________________________________________________________= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________________!29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________________₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________________cs and dictionaries:________________________________________________________________________________________________________________________________________________________________________________________ˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________________ilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________ography in plain text files:________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════╗_________________________________________________________________ ║_________________________________________________________________single’ and “double” quotes ║_________________________________________________________________ ║_________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =dth_________________________________________________________________________________________________________________________________________________________________________________________________________🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________________cs and Sciences:____________________________________________________________________________________________________________________________________________________________________________________________= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________________!29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________________₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________________cs and dictionaries:________________________________________________________________________________________________________________________________________________________________________________________ˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________________ilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________________ography in plain text files:________________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════╗_________________________________________________________________ ║_________________________________________________________________single’ and “double” quotes ║_________________________________________________________________ ║_________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =idth________________________________________________________________________________________________________________________________________________________________________________________________________C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________ics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________________$1E!66 $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________ics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________əˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________silɔn], Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________pography in plain text files:_______________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════╗________________________________________________________________ ║________________________________________________________________‘single’ and “double” quotes ║________________________________________________________________ ║________________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =idth________________________________________________________________________________________________________________________________________________________________________________________________________C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________ics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________________$1E!66 $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________ics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________əˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________silɔn], Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________pography in plain text files:_______________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════╗________________________________________________________________ ║________________________________________________________________‘single’ and “double” quotes ║________________________________________________________________ ║________________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =idth________________________________________________________________________________________________________________________________________________________________________________________________________C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________________ics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________________$1E!66 $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________________ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________________O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________________ics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________________əˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________________silɔn], Yen [jɛn], Yoga [ˈjoːgɑ]________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________________pography in plain text files:_______________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════╗________________________________________________________________ ║________________________________________________________________‘single’ and “double” quotes ║________________________________________________________________ ║________________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =width_______________________________________________________________________________________________________________________________________________________________________________________________________ C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ___________________________________________________________________________________________________________________________________________________________tics and Sciences:__________________________________________________________________________________________________________________________________________________________________________________________$1E!66a $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),______________________________________________________________________________________________________________________________________₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),______________________________________________________________________________________________________________________________________________________ O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm____________________________________________________________________________________________________________________________________________________________________________tics and dictionaries:______________________________________________________________________________________________________________________________________________________________________________________təˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_______________________________________________________________________psilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________ypography in plain text files:______________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════╗_______________________________________________________________ ║_______________________________________________________________ ‘single’ and “double” quotes ║_______________________________________________________________ ║_______________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =width_______________________________________________________________________________________________________________________________________________________________________________________________________ C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ___________________________________________________________________________________________________________________________________________________________tics and Sciences:__________________________________________________________________________________________________________________________________________________________________________________________$1E!66a $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),______________________________________________________________________________________________________________________________________₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),______________________________________________________________________________________________________________________________________________________ O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm____________________________________________________________________________________________________________________________________________________________________________tics and dictionaries:______________________________________________________________________________________________________________________________________________________________________________________təˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_______________________________________________________________________psilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________ypography in plain text files:______________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════╗_______________________________________________________________ ║_______________________________________________________________ ‘single’ and “double” quotes ║_______________________________________________________________ ║_______________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =width_______________________________________________________________________________________________________________________________________________________________________________________________________ C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ___________________________________________________________________________________________________________________________________________________________tics and Sciences:__________________________________________________________________________________________________________________________________________________________________________________________$1E!66a $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),______________________________________________________________________________________________________________________________________₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),______________________________________________________________________________________________________________________________________________________ O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm____________________________________________________________________________________________________________________________________________________________________________tics and dictionaries:______________________________________________________________________________________________________________________________________________________________________________________təˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_______________________________________________________________________psilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_________________________________________________________________________________________________________________________________________________________________________________ypography in plain text files:______________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════╗_______________________________________________________________ ║_______________________________________________________________ ‘single’ and “double” quotes ║_______________________________________________________________ ║_______________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 = width______________________________________________________________________________________________________________________________________________________________________________________________________$1E!2E $FF!FF C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 __________________________________________________________________________________________________________________________________________________________atics and Sciences:_________________________________________________________________________________________________________________________________________________________________________________________$1E!66da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_____________________________________________________________________________________________________________________________________ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_____________________________________________________________________________________________________________________________________________________+ O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm___________________________________________________________________________________________________________________________________________________________________________stics and dictionaries:_____________________________________________________________________________________________________________________________________________________________________________________ntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn______________________________________________________________________ʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________typography in plain text files:_____________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════════╗______________________________________________________________ ║______________________________________________________________• ‘single’ and “double” quotes ║______________________________________________________________ ║______________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b = width______________________________________________________________________________________________________________________________________________________________________________________________________$1E!2E $FF!FF C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 __________________________________________________________________________________________________________________________________________________________atics and Sciences:_________________________________________________________________________________________________________________________________________________________________________________________$1E!66da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_____________________________________________________________________________________________________________________________________ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_____________________________________________________________________________________________________________________________________________________+ O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm___________________________________________________________________________________________________________________________________________________________________________stics and dictionaries:_____________________________________________________________________________________________________________________________________________________________________________________ntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn______________________________________________________________________ʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________typography in plain text files:_____________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════════╗______________________________________________________________ ║______________________________________________________________• ‘single’ and “double” quotes ║______________________________________________________________ ║______________________________________________________________ ESC#__________________________________________________________________________________________________ +4f = width______________________________________________________________________________________________________________________________________________________________________________________________________$1E!2E $FF!FF C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 __________________________________________________________________________________________________________________________________________________________atics and Sciences:_________________________________________________________________________________________________________________________________________________________________________________________$1E!66da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_____________________________________________________________________________________________________________________________________ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_____________________________________________________________________________________________________________________________________________________+ O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm___________________________________________________________________________________________________________________________________________________________________________stics and dictionaries:_____________________________________________________________________________________________________________________________________________________________________________________ntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn______________________________________________________________________ʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈________________________________________________________________________________________________________________________________________________________________________________typography in plain text files:_____________________________________________________________________________________________________________________________________________________________________________═══════════════════════════════════════╗______________________________________________________________ ║______________________________________________________________• ‘single’ and “double” quotes ║______________________________________________________________ ║______________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =e width_____________________________________________________________________________________________________________________________________________________________________________________________________🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _________________________________________________________________________________________________________________________________________________________matics and Sciences:________________________________________________________________________________________________________________________________________________________________________________________$1E!66⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),____________________________________________________________________________________________________________________________________ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),____________________________________________________________________________________________________________________________________________________ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm__________________________________________________________________________________________________________________________________________________________________________istics and dictionaries:____________________________________________________________________________________________________________________________________________________________________________________ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_____________________________________________________________________ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________ typography in plain text files:____________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════════╗_____________________________________________________________ ║_____________________________________________________________ • ‘single’ and “double” quotes ║_____________________________________________________________ ║_____________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =e width_____________________________________________________________________________________________________________________________________________________________________________________________________🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _________________________________________________________________________________________________________________________________________________________matics and Sciences:________________________________________________________________________________________________________________________________________________________________________________________$1E!66⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),____________________________________________________________________________________________________________________________________ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),____________________________________________________________________________________________________________________________________________________ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm__________________________________________________________________________________________________________________________________________________________________________istics and dictionaries:____________________________________________________________________________________________________________________________________________________________________________________ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_____________________________________________________________________ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________ typography in plain text files:____________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════════╗_____________________________________________________________ ║_____________________________________________________________ • ‘single’ and “double” quotes ║_____________________________________________________________ ║_____________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =e width_____________________________________________________________________________________________________________________________________________________________________________________________________🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _________________________________________________________________________________________________________________________________________________________matics and Sciences:________________________________________________________________________________________________________________________________________________________________________________________$1E!66⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),____________________________________________________________________________________________________________________________________ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),____________________________________________________________________________________________________________________________________________________ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm__________________________________________________________________________________________________________________________________________________________________________istics and dictionaries:____________________________________________________________________________________________________________________________________________________________________________________ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_____________________________________________________________________ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_______________________________________________________________________________________________________________________________________________________________________________ typography in plain text files:____________________________________________________________________________________________________________________________________________________________________________════════════════════════════════════════╗_____________________________________________________________ ║_____________________________________________________________ • ‘single’ and “double” quotes ║_____________________________________________________________ ║_____________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =le width____________________________________________________________________________________________________________________________________________________________________________________________________B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________ematics and Sciences:_______________________________________________________________________________________________________________________________________________________________________________________$1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________uistics and dictionaries:___________________________________________________________________________________________________________________________________________________________________________________ ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn____________________________________________________________________[ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________r typography in plain text files:___________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════════╗____________________________________________________________ ║____________________________________________________________ • ‘single’ and “double” quotes ║____________________________________________________________ ║____________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =le width____________________________________________________________________________________________________________________________________________________________________________________________________B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________ematics and Sciences:_______________________________________________________________________________________________________________________________________________________________________________________$1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________uistics and dictionaries:___________________________________________________________________________________________________________________________________________________________________________________ ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn____________________________________________________________________[ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________r typography in plain text files:___________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════════╗____________________________________________________________ ║____________________________________________________________ • ‘single’ and “double” quotes ║____________________________________________________________ ║____________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =le width____________________________________________________________________________________________________________________________________________________________________________________________________B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ________________________________________________________________________________________________________________________________________________________ematics and Sciences:_______________________________________________________________________________________________________________________________________________________________________________________$1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),___________________________________________________________________________________________________________________________________⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),___________________________________________________________________________________________________________________________________________________₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_________________________________________________________________________________________________________________________________________________________________________uistics and dictionaries:___________________________________________________________________________________________________________________________________________________________________________________ ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn____________________________________________________________________[ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈______________________________________________________________________________________________________________________________________________________________________________r typography in plain text files:___________________________________________________________________________________________________________________________________________________________________________═════════════════════════════════════════╗____________________________________________________________ ║____________________________________________________________ • ‘single’ and “double” quotes ║____________________________________________________________ ║____________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =ble width___________________________________________________________________________________________________________________________________________________________________________________________________ B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________hematics and Sciences:______________________________________________________________________________________________________________________________________________________________________________________ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________guistics and dictionaries:__________________________________________________________________________________________________________________________________________________________________________________i ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________ [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________:___________________________________________________________________________________________________________________________________________________________________________________________________________(V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________er typography in plain text files:__________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════════╗___________________________________________________________ ║___________________________________________________________ • ‘single’ and “double” quotes ║___________________________________________________________ ║___________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =ble width___________________________________________________________________________________________________________________________________________________________________________________________________ B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________hematics and Sciences:______________________________________________________________________________________________________________________________________________________________________________________ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________guistics and dictionaries:__________________________________________________________________________________________________________________________________________________________________________________i ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________ [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________:___________________________________________________________________________________________________________________________________________________________________________________________________________(V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________er typography in plain text files:__________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════════╗___________________________________________________________ ║___________________________________________________________ • ‘single’ and “double” quotes ║___________________________________________________________ ║___________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =ble width___________________________________________________________________________________________________________________________________________________________________________________________________ B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _______________________________________________________________________________________________________________________________________________________hematics and Sciences:______________________________________________________________________________________________________________________________________________________________________________________ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),__________________________________________________________________________________________________________________________________ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),__________________________________________________________________________________________________________________________________________________H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm________________________________________________________________________________________________________________________________________________________________________guistics and dictionaries:__________________________________________________________________________________________________________________________________________________________________________________i ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn___________________________________________________________________ [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_______________________________________________________________________________________________________________________________________________________________________:___________________________________________________________________________________________________________________________________________________________________________________________________________(V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈_____________________________________________________________________________________________________________________________________________________________________________er typography in plain text files:__________________________________________________________________________________________________________________________________________________________________________══════════════════════════════════════════╗___________________________________________________________ ║___________________________________________________________ • ‘single’ and “double” quotes ║___________________________________________________________ ║___________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =uble width__________________________________________________________________________________________________________________________________________________________________________________________________$1E!2E $FF!FF B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________thematics and Sciences:_____________________________________________________________________________________________________________________________________________________________________________________∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________nguistics and dictionaries:_________________________________________________________________________________________________________________________________________________________________________________ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________L:__________________________________________________________________________________________________________________________________________________________________________________________________________((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________cer typography in plain text files:_________________________________________________________________________________________________________________________________________________________________________╔══════════════════════════════════════════╗__________________________________________________________║ ║__________________________________________________________║ • ‘single’ and “double” quotes ║__________________________________________________________║ ║__________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =uble width__________________________________________________________________________________________________________________________________________________________________________________________________$1E!2E $FF!FF B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________thematics and Sciences:_____________________________________________________________________________________________________________________________________________________________________________________∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________nguistics and dictionaries:_________________________________________________________________________________________________________________________________________________________________________________ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________L:__________________________________________________________________________________________________________________________________________________________________________________________________________((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________cer typography in plain text files:_________________________________________________________________________________________________________________________________________________________________________╔══════════════════════════════════════════╗__________________________________________________________║ ║__________________________________________________________║ • ‘single’ and “double” quotes ║__________________________________________________________║ ║__________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =uble width__________________________________________________________________________________________________________________________________________________________________________________________________$1E!2E $FF!FF B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ______________________________________________________________________________________________________________________________________________________thematics and Sciences:_____________________________________________________________________________________________________________________________________________________________________________________∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_________________________________________________________________________________________________________________________________ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_________________________________________________________________________________________________________________________________________________2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_______________________________________________________________________________________________________________________________________________________________________nguistics and dictionaries:_________________________________________________________________________________________________________________________________________________________________________________ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn__________________________________________________________________Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]______________________________________________________________________________________________________________________________________________________________________L:__________________________________________________________________________________________________________________________________________________________________________________________________________((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈____________________________________________________________________________________________________________________________________________________________________________cer typography in plain text files:_________________________________________________________________________________________________________________________________________________________________________╔══════════════════════════════════════════╗__________________________________________________________║ ║__________________________________________________________║ • ‘single’ and “double” quotes ║__________________________________________________________║ ║__________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =ouble width_________________________________________________________________________________________________________________________________________________________________________________________________🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________athematics and Sciences:____________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________inguistics and dictionaries:________________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________PL:_________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________icer typography in plain text files:________________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗_________________________________________________________ ║ ║_________________________________________________________ ║ • ‘single’ and “double” quotes ║_________________________________________________________ ║ ║_________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =ouble width_________________________________________________________________________________________________________________________________________________________________________________________________🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________athematics and Sciences:____________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________inguistics and dictionaries:________________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________PL:_________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________icer typography in plain text files:________________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗_________________________________________________________ ║ ║_________________________________________________________ ║ • ‘single’ and “double” quotes ║_________________________________________________________ ║ ║_________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =ouble width_________________________________________________________________________________________________________________________________________________________________________________________________🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 _____________________________________________________________________________________________________________________________________________________athematics and Sciences:____________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),________________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),________________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm______________________________________________________________________________________________________________________________________________________________________inguistics and dictionaries:________________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn_________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]_____________________________________________________________________________________________________________________________________________________________________PL:_________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈___________________________________________________________________________________________________________________________________________________________________________icer typography in plain text files:________________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗_________________________________________________________ ║ ║_________________________________________________________ ║ • ‘single’ and “double” quotes ║_________________________________________________________ ║ ║_________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +1b =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ESC#__________________________________________________________________________________________________ +4f =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________ ESCO#_________________________________________________________________________________________________ +44 =Double width________________________________________________________________________________________________________________________________________________________________________________________________A🐳 B🐳 C🐳 D🐳 $1E!66E🐳$FF!FF$1E!66 F🐳$FF!FF G🐳 H🐳 I🐳 J🐳 K🐳 L🐳 M🐳 N🐳 ____________________________________________________________________________________________________________________________________________________Mathematics and Sciences:___________________________________________________________________________________________________________________________________________________________________________________ ∮ $1E!66E⋅da $FF!FF= Q, n → ∞, ∑ f(i) = ∏ g(i), ∀x∈ℝ: ⌈x⌉ = −⌊−x⌋, α ∧ ¬β = ¬(¬α ∨ β),_______________________________________________________________________________________________________________________________ ℕ ⊆ ℕ₀ !29⊂ ℤ ⊂ ℚ !FF⊂ ℝ ⊂ ℂ, ⊥ < a ≠ b ≡ c ≤ d ≪ ⊤ ⇒ (A ⇔ B),_______________________________________________________________________________________________________________________________________________ 2H₂ + O₂ ⇌ 2H₂O, R = 4.7 kΩ, ⌀ 200 mm_____________________________________________________________________________________________________________________________________________________________________Linguistics and dictionaries:_______________________________________________________________________________________________________________________________________________________________________________ ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn________________________________________________________________ Y [ˈʏpsilɔn], Yen [jɛn], Yoga [ˈjoːgɑ]____________________________________________________________________________________________________________________________________________________________________APL:________________________________________________________________________________________________________________________________________________________________________________________________________ ((V⍳V)=⍳⍴V)/V←,V ⌷←⍳→⍴∆∇⊃‾⍎⍕⌈__________________________________________________________________________________________________________________________________________________________________________Nicer typography in plain text files:_______________________________________________________________________________________________________________________________________________________________________ ╔══════════════════════════════════════════╗________________________________________________________ ║ ║________________________________________________________ ║ • ‘single’ and “double” quotes ║________________________________________________________ ║ ║________________________________________________________$1E!6A:$FF!FF#_____________________________________________________________________________________________________ +71 Q less-668/lesstest/lt/version.c.lt0000644060175306017530000045541514700607711016146 0ustar marknmarkn!lesstest! !version 1 !created 2022-10-20 19:57:23 E "LESS_TERMCAP_am" "1" E "LESS_TERMCAP_cd" "S" E "LESS_TERMCAP_ce" "L" E "LESS_TERMCAP_cl" "A" E "LESS_TERMCAP_cr" "<" E "LESS_TERMCAP_cm" "%p2%d;%p1%dj" E "LESS_TERMCAP_ho" "h" E "LESS_TERMCAP_ll" "l" E "LESS_TERMCAP_mb" "b" E "LESS_TERMCAP_md" "" E "LESS_TERMCAP_me" "" E "LESS_TERMCAP_se" "" E "LESS_TERMCAP_so" "" E "LESS_TERMCAP_sr" "r" E "LESS_TERMCAP_ue" "" E "LESS_TERMCAP_us" "" E "LESS_TERMCAP_vb" "g" E "LESS_TERMCAP_kr" "OC" E "LESS_TERMCAP_kl" "OD" E "LESS_TERMCAP_ku" "OA" E "LESS_TERMCAP_kd" "OB" E "LESS_TERMCAP_kh" "OH" E "LESS_TERMCAP_@7" "OF" E "COLUMNS" "79" E "LINES" "34" E "LESSCHARSET" "utf8" E "LANG" "C" T "version.c" A "version.c" F "version.c" 50808 /* * Copyright (C) 1984-2022 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* ----------------------- CHANGE HISTORY -------------------------- 1/29/84 Allowed use on standard input 2/1/84 Added E, N, P commands 4/17/84 Added '=' command, 'stop' signal handling 4/20/84 Added line folding v2 4/27/84 Fixed '=' command to use BOTTOM_PLUS_ONE, instead of TOP, added 'p' & 'v' commands v3 5/3/84 Added -m and -t options, '-' command v4 5/3/84 Added LESS environment variable v5 5/3/84 New comments, fixed '-' command slightly v6 5/15/84 Added -Q, visual bell v7 5/24/84 Fixed jump_back(n) bug: n should count real lines, not folded lines. Also allow number on G command. v8 5/30/84 Re-do -q and -Q commands v9 9/25/84 Added "+" argument v10 10/10/84 Fixed bug in -b argument processing v11 10/18/84 Made error() ring bell if \n not entered. ----------------------------------------------------------------- v12 2/13/85 Reorganized signal handling and made portable to 4.2bsd. v13 2/16/85 Reword error message for '-' command. v14 2/22/85 Added -bf and -bp variants of -b. v15 2/25/85 Miscellaneous changes. v16 3/13/85 Added -u flag for backspace processing. v17 4/13/85 Added j and k commands, changed -t default. v18 4/20/85 Rewrote signal handling code. v19 5/2/85 Got rid of "verbose" eq_message(). Made search() scroll in some cases. v20 5/21/85 Fixed screen.c ioctls for System V. v21 5/23/85 Fixed some first_cmd bugs. v22 5/24/85 Added support for no RECOMP nor REGCMP. v23 5/25/85 Miscellanous changes and prettying up. Posted to USENET. ----------------------------------------------------------------- v24 6/3/85 Added ti,te terminal init & de-init. (Thanks to Mike Kersenbrock) v25 6/8/85 Added -U flag, standout mode underlining. v26 6/9/85 Added -M flag. Use underline termcap (us) if it exists. v27 6/15/85 Renamed some variables to make unique in 6 chars. Minor fix to -m. v28 6/28/85 Fixed right margin bug. v29 6/28/85 Incorporated M.Rose's changes to signal.c v30 6/29/85 Fixed stupid bug in argument processing. v31 7/15/85 Added -p flag, changed repaint algorithm. Added kludge for magic cookie terminals. v32 7/16/85 Added cat_file if output not a tty. v33 7/23/85 Added -e flag and EDITOR. v34 7/26/85 Added -s flag. v35 7/27/85 Rewrote option handling; added option.c. v36 7/29/85 Fixed -e flag to work if not last file. v37 8/10/85 Added -x flag. v38 8/19/85 Changed prompting; created prompt.c. v39 8/24/85 (Not -p) does not initially clear screen. v40 8/26/85 Added "skipping" indicator in forw(). Posted to USENET. ----------------------------------------------------------------- v41 9/17/85 ONLY_RETURN, control char commands, faster search, other minor fixes. v42 9/25/85 Added ++ command line syntax; ch_fsize for pipes. v43 10/15/85 Added -h flag, changed prim.c algorithms. v44 10/16/85 Made END print in all cases of eof; ignore SIGTTOU after receiv ing SIGTSTP. v45 10/16/85 Never print backspaces unless -u. v46 10/24/85 Backwards scroll in jump_loc. v47 10/30/85 Fixed bug in edit(): *first_cmd==0 v48 11/16/85 Use TIOCSETN instead of TIOCSETP. Added marks (m and ' commands). Posted to USENET. ----------------------------------------------------------------- v49 1/9/86 Fixed bug: signal didn't clear mcc. v50 1/15/86 Added ' (quote) to gomark. v51 1/16/86 Added + cmd, fixed problem if first_cmd fails, made g cmd sort of "work" on pipes ev en if bof is no longer buffered. v52 1/17/86 Made short files work better. v53 1/20/86 Added -P option. v54 1/20/86 Changed help to use HELPFILE. v55 1/23/86 Messages work better if not tty output. v56 1/24/86 Added -l option. v57 1/31/86 Fixed -l to get confirmation before ov erwriting an existing file. v58 8/28/86 Added filename globbing. v59 9/15/86 Fixed some bugs with very long filenames. v60 9/26/86 Incorporated changes from Leith (Casey) Leedom for boldface and -z option. v61 9/26/86 Got rid of annoying repaints after ! cmd. Posted to USENET. ----------------------------------------------------------------- v62 12/23/86 Added is_directory(); change -z default to -1 instead of 24; cat-and-exit if -e and file is less than a screenful. v63 1/8/87 Fixed bug in cat-and-exit if > 1 file. v64 1/12/87 Changed puts/putstr, putc/putchr, getc/getchr to av oid name conflict with stdio functions. v65 1/26/87 Allowed '-' command to change NUMBER v alued options (thanks to Gary Puckering) v66 2/13/87 Fixed bug: prepaint should use force=1. v67 2/24/87 Added !! and % expansion to ! command. v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support; changed is_directory to bad_file. (thanks to J. Robert Ward) v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC). v70 3/13/87 Changed help cmd from 'h' to 'H'; better error msgs in bad_file, errno_message. v71 5/11/87 Changed -p to -c, made triple -c/-C for clear-eol like more's -c. v72 6/26/87 Added -E, -L, use $SHELL in lsystem(). (thanks to Stev e Spearman) v73 6/26/87 Allow Examine "#" for previous file. Posted to USENET 8/25/87. ----------------------------------------------------------------- v74 9/18/87 Fix conflict in EOF symbol with stdio.h, Make os.c more portable to BSD. v75 9/23/87 Fix problems in get_term (thanks to Paul Eggert); new backwards scrolling in jump_loc (thanks to Marion Hakanson). v76 9/23/87 Added -i flag; allow single "!" to inv oke a shell (thanks to Franco Barber). v77 9/24/87 Added -n flag and line number support. v78 9/25/87 Fixed problem with prompts longer than the screen width. v79 9/29/87 Added the _ command. v80 10/6/87 Allow signal to break out of linenum scan. v81 10/6/87 Allow -b to be changed from within less. v82 10/7/87 Add cmd_decode to use a table for key binding (thanks to Dav id Nason). v83 10/9/87 Allow .less file for user-defined keys. v84 10/11/87 Fix -e/-E problems (thanks to Felix Lee). v85 10/15/87 Search now keeps track of line numbers. v86 10/20/87 Added -B option and autobuf; fixed "pipe error" bug. v87 3/1/88 Fix bug re BSD signals while reading file. v88 3/12/88 Use new format for -P option (thanks to der Mouse), allow "+-c" without message, fix bug re BSD hangup. v89 3/18/88 Turn off line numbers if linenum scan is interrupted. v90 3/30/88 Allow -P from within less. v91 3/30/88 Added tags file support (new -t option) (thanks to Brian Campbell). v92 4/4/88 Added -+option syntax. v93 4/11/88 Add support for slow input (thanks to Joe Orost & apologies for taking almost 3 years to get this in!) v94 4/11/88 Redo reading/signal stuff. v95 4/20/88 Repaint screen better after signal. v96 4/21/88 Add /! and ?! commands. v97 5/17/88 Allow -l/-L from within less. Eliminate some static arrays (use calloc). Posted to USENET. ----------------------------------------------------------------- v98 10/14/88 Fix incorrect calloc call; uninitialized var in exec_mca; core dump on unknown TERM. Make v cmd work if past last line of file. Fix some signal bugs. v99 10/29/88 Allow space between -X and string, when X is a string-valued option. v100 1/5/89 Fix globbing bug when $SHELL not set; allow spaces after -t command. v101 1/6/89 Fix problem with long (truncated) lines in tags file (thanks to Neil Dixon). v102 1/6/89 Fix bug with E# when no prev file; allow spaces after -l command. v103 3/14/89 Add -N, -f and -? options. Add z and w commands. Add %L for prompt strings. v104 3/16/89 Added EDITPROTO. v105 3/20/89 Fix bug in find_linenum which cached incorrectly on long lines. v106 3/31/89 Added -k option and multiple lesskey files. v107 4/27/89 Add 8-bit char support and -g option. Split option code into 3 files. v108 5/5/89 Allocate position table dynamically (thanks to Paul Eggert); change % command from "percent" to vi-style brace finder. v109 5/10/89 Added ESC-% command, split prim.c. v110 5/24/89 Fixed bug in + option; fixed repaint bug under Sun windows (thanks to Paul Eggert). v111 5/25/89 Generalized # and % expansion; use calloc for some error messages. v112 5/30/89 Get rid of ESC-%, add {}()[] commands. v113 5/31/89 Optimize lseeks (thanks to Paul Eggert). v114 7/25/89 Added ESC-/ and ESC-/! commands. v115 7/26/89 Added ESC-n command. v116 7/31/89 Added find_pos to optimize g command. v117 8/1/89 Change -f option to -r. v118 8/2/89 Save positions for all previous files, not just the immediately previous one. v119 8/7/89 Save marks across file boundaries. Add file handle stuff. v120 8/11/89 Add :ta command. v121 8/16/89 Add -f option. v122 8/30/89 Fix performance with many buffers. v123 8/31/89 Verbose prompts for string options. Posted beta to USENET. ----------------------------------------------------------------- v124 9/18/89 Reorganize search commands, N = rev, ESC-n = span, add ESC-N. v125 9/18/89 Fix tab bug (thanks to Alex Liu). Fix EOF bug when both -w and -c. v126 10/25/89 Add -j option. v127 10/27/89 Fix problems with blank lines before BOF. v128 10/27/89 Add %bj, etc. to prompt strings. v129 11/3/89 Add -+,-- commands; add set-option and unset-option to lesskey. v130 11/6/89 Generalize A_EXTRA to string, remove set-option, unset-option from lesskey. v131 11/7/89 Changed name of EDITPROTO to LESSEDIT. v132 11/8/89 Allow editing of command prefix. v133 11/16/89 Add -y option (thanks to Jeff Sullivan). v134 12/1/89 Glob filenames in the -l command. v135 12/5/89 Combined {}()[] commands into one, and added ESC-^F and ESC-^B commands. v136 1/20/90 Added -S, -R flags. Added | command. Added warning for binary files. (thanks to Richard Brittain and J. Sullivan). v137 1/21/90 Rewrote horrible pappend code. Added * notation for hi-bit chars. v138 1/24/90 Fix magic cookie terminal handling. Get rid of "cleanup" loop in ch_get. v139 1/27/90 Added MSDOS support. (many thanks to Richard Brittain). v140 2/7/90 Editing a new file adds it to the command line list. v141 2/8/90 Add edit_list for editing >1 file. v142 2/10/90 Add :x command. v143 2/11/90 Add * and @ modifies to search cmds. Change ESC-/ cmd from /@* to / *. v144 3/1/90 Messed around with ch_zero; no real change. v145 3/2/90 Added -R and -v/-V for MSDOS; renamed FILENAME to avoid conflict. v146 3/5/90 Pull cmdbuf functions out of command.c v147 3/7/90 Implement ?@; fix multi-file edit bugs. v148 3/29/90 Fixed bug in :e then :e#. v149 4/3/90 Change error,ierror,query to use PARG. v150 4/6/90 Add LESS_CHARSET, LESS_CHARDEF. v151 4/13/90 Remove -g option; clean up ispipe. v152 4/14/90 lsystem() closes input file, for editors which require exclusive open. v153 4/18/90 Fix bug if SHELL unset; fix bug in overstrike control char. v154 4/25/90 Output to fd 2 via buffer. v155 4/30/90 Ignore -i if uppercase in pattern (thanks to Michael Rendell.) v156 5/3/90 Remove scroll limits in forw() & back(); causes problems with -c. v157 5/4/90 Forward search starts at next real line (not screen line) after jump target. v158 6/14/90 Added F command. v159 7/29/90 Fix bug in exiting: output not flushed. v160 7/29/90 Clear screen before initial output w/ -c. v161 7/29/90 Add -T flag. v162 8/14/90 Fix bug with +F on command line. v163 8/21/90 Added LESSBINFMT variable. v164 9/5/90 Added -p, LINES, COLUMNS and unset mark ' == BOF, for 1003.2 D5. v165 9/6/90 At EOF with -c set, don't display empty screen when try to page forward. v166 9/6/90 Fix G when final line in file wraps. v167 9/11/90 Translate CR/LF -> LF for 1003.2. v168 9/13/90 Return to curr file if "tag not found". v169 12/12/90 G goes to EOF even if file has grown. v170 1/17/91 Add optimization for BSD _setjmp; fix #include ioctl.h TERMIO problem. (thanks to Paul Eggert) Posted to USENET. ----------------------------------------------------------------- v171 3/6/91 Fix -? bug in get_filename. v172 3/15/91 Fix G bug in empty file. Fix bug with ?\n and -i and uppercase pattern at EOF! (thanks to Paul Eggert) v173 3/17/91 Change N cmd to not permanently change direction. (thanks to Brian Matthews) v174 3/18/91 Fix bug with namelogfile not getting cleared when change files. v175 3/18/91 Fix bug with ++cmd on command line. (thanks to Jim Meyering) v176 4/2/91 Change | to not force current screen, include marked line, start/end from top of screen. Improve search speed. (thanks to Don Mears) v177 4/2/91 Add LESSHELP variable. Fix bug with F command with -e. Try /dev/tty for input before using fd 2. Patches posted to USENET 4/2/91. ----------------------------------------------------------------- v178 4/8/91 Fixed bug in globbing logfile name. (thanks to Jim Meyering) v179 4/9/91 Allow negative -z for screen-relative. v180 4/9/91 Clear to eos rather than eol if "db"; don't use "sr" if "da". (thanks to Tor Lillqvist) v181 4/18/91 Fixed bug with "negative" chars 80 - FF. (thanks to Benny Sander Hofmann) v182 5/16/91 Fixed bug with attribute at EOL. (thanks to Brian Matthews) v183 6/1/91 Rewrite linstall to do smart config. v184 7/11/91 Process \b in searches based on -u rather than -i. v185 7/11/91 -Pxxx sets short prompt; assume SIGWINCH after a SIGSTOP. (thanks to Ken Laprade) ----------------------------------------------------------------- v186 4/20/92 Port to MS-DOS (Microsoft C). v187 4/23/92 Added -D option & TAB_COMPLETE_FILENAME. v188 4/28/92 Added command line editing features. v189 12/8/92 Fix mem overrun in anscreen.c:init; fix edit_list to recover from bin file. v190 2/13/93 Make TAB enter one filename at a time; create ^L with old TAB functionality. v191 3/10/93 Defer creating "flash" page for MS-DOS. v192 9/6/93 Add BACK-TAB. v193 9/17/93 Simplify binary_file handling. v194 1/4/94 Add rudiments of alt_filename handling. v195 1/11/94 Port back to Unix; support keypad. ----------------------------------------------------------------- v196 6/7/94 Fix bug with bad filename; fix IFILE type problem. (thanks to David MacKenzie) v197 6/7/94 Fix bug with .less tables inserted wrong. v198 6/23/94 Use autoconf installation technology. (thanks to David MacKenzie) v199 6/29/94 Fix MS-DOS build (thanks to Tim Wiegman). v200 7/25/94 Clean up copyright, minor fixes. Posted to prep.ai.mit.edu ----------------------------------------------------------------- v201 7/27/94 Check for no memcpy; add casts to calloc; look for regcmp in libgen.a. (thanks to Kaveh Ghazi). v202 7/28/94 Fix bug in edit_next/edit_prev with non-existent files. v203 8/2/94 Fix a variety of configuration bugs on various systems. (thanks to Sakai Kiyotaka, Harald Koenig, Bjorn Brox, Teemu Rantanen, and Thorsten Lockert) v204 8/3/94 Use strerror if available. (thanks to J.T. Conklin) v205 8/5/94 Fix bug in finding "me" termcap entry. (thanks to Andreas Stolcke) 8/10/94 v205+: Change BUFSIZ to LBUFSIZE to avoid name conflict with stdio.h. Posted to prep.ai.mit.edu ----------------------------------------------------------------- v206 8/10/94 Use initial_scrpos for -t to avoid displaying first page before init(). (thanks to Dominique Petitpierre) v207 8/12/94 Fix bug if stdout is not tty. v208 8/16/94 Fix bug in close_altfile if goto err1 in edit_ifile. (Thanks to M.J. Hewitt) v209 8/16/94 Change scroll to wscroll to avoid conflict with library function. v210 8/16/94 Fix bug with bold on 8 bit chars. (thanks to Vitor Duarte) v211 8/16/94 Don't quit on EOI in jump_loc / forw. v212 8/18/94 Use time_t if available. v213 8/20/94 Allow ospeed to be defined in termcap.h. v214 8/20/94 Added HILITE_SEARCH, -F, ESC-u cmd. (thanks to Paul Lew and Bob Byrnes) v215 8/23/94 Fix -i toggle behavior. v216 8/23/94 Process BS in all searches, not only -u. v217 8/24/94 Added -X flag. v218 8/24/94 Reimplement undo_search. v219 8/24/94 Find tags marked with line number instead of pattern. v220 8/24/94 Stay at same position after SIG_WINCH. v221 8/24/94 Fix bug in file percentage in big file. v222 8/25/94 Do better if can't reopen current file. v223 8/27/94 Support setlocale. (thanks to Robert Joop) v224 8/29/94 Revert v216: process BS in search only if -u. v225 9/6/94 Rewrite undo_search again: toggle. v226 9/15/94 Configuration fixes. (thanks to David MacKenzie) v227 9/19/94 Fixed strerror config problem. Posted to prep.ai.mit.edu ----------------------------------------------------------------- v228 9/21/94 Fix bug in signals: repeated calls to get_editkeys overflowed st_edittable. v229 9/21/94 Fix "Nothing to search" error if -a and SRCH_PAST_EOF. v230 9/21/94 Don't print extra error msg in search after regerror(). v231 9/22/94 Fix hilite bug if search matches 0 chars. (thanks to John Polstra) v232 9/23/94 Deal with weird systems that have termios.h but not tcgetattr(). Posted to prep.ai.mit.edu ----------------------------------------------------------------- v233 9/26/94 Use get_term() instead of pos_init() in psignals to re-get lower_left termcap. (Thanks to John Malecki) v234 9/26/94 Make MIDDLE closer to middle of screen. v235 9/27/94 Use local strchr if system doesn't have. v236 9/28/94 Don't use libucb; use libterm if libtermcap & libcurses doesn't work. (Fix for Solaris; thanks to Frank Kaefer) v237 9/30/94 Use system isupper() etc if provided. Posted to prep.ai.mit.edu ----------------------------------------------------------------- v238 10/6/94 Make binary non-blinking if LESSBINFMT is set to a string without a *. v239 10/7/94 Don't let delimit_word run back past beginning of cmdbuf. v240 10/10/94 Don't write into termcap buffer. (Thanks to Benoit Speckel) v241 10/13/94 New lesskey file format. Don't expand filenames in search command. v242 10/14/94 Allow lesskey specification of "literal". v243 10/14/94 Add #stop command to lesskey. v244 10/16/94 Add -f flag to lesskey. v245 10/25/94 Allow TAB_COMPLETE_FILENAME to be undefd. v246 10/27/94 Move help file to /usr/local/share. v247 10/27/94 Add -V option. v248 11/5/94 Add -V option to lesskey. v249 11/5/94 Remove -f flag from lesskey; default input file is ~/.lesskey.in, not stdin. v250 11/7/94 Lesskey input file "-" means stdin. v251 11/9/94 Convert cfgetospeed result to ospeed. (Thanks to Andrew Chernov) v252 11/16/94 Change default lesskey input file from .lesskey.in to .lesskey. Posted to prep.ai.mit.edu ----------------------------------------------------------------- v253 11/21/94 Fix bug when tags file has a backslash. v254 12/6/94 Fix -k option. v255 12/8/94 Add #define EXAMINE to disable :e etc. v256 12/10/94 Change highlighting: only highlite search results (but now it is reliable). v257 12/10/94 Add goto_line and repaint_highlight to optimize highlight repaints. v258 12/12/94 Fixup in hilite_line if BS_SPECIAL. v259 12/12/94 Convert to autoconf 2.0. v260 12/13/94 Add SECURE define. v261 12/14/94 Use system WERASE char as EC_W_BACKSPACE. v262 12/16/94 Add -g/-G flag and screen_hilite. v263 12/20/94 Reimplement/optimize -G flag behavior. v264 12/23/94 Allow EXTRA string after line-edit cmd in lesskey file. v265 12/24/94 Add LESSOPEN=|cmd syntax. v266 12/26/94 Add -I flag. v267 12/28/94 Formalize the four-byte header emitted by a LESSOPEN pipe. v268 12/28/94 Get rid of four-byte header. v269 1/2/95 Close alt file before open new one. Avoids multiple popen(). v270 1/3/95 Use VISUAL; use S_ISDIR/S_ISREG; fix config problem with Solaris POSIX regcomp. v271 1/4/95 Don't quit on read error. v272 1/5/95 Get rid of -L. v273 1/6/95 Fix ch_ungetchar bug; don't call LESSOPEN on a pipe. v274 1/6/95 Ported to OS/2 (thanks to Kai Uwe Rommel) v275 1/18/95 Fix bug if toggle -G at EOF. v276 1/30/95 Fix OS/2 version. v277 1/31/95 Add "next" charset; don't display ^X for X > 128. v278 2/14/95 Change default for -G. Posted to prep.ai.mit.edu ----------------------------------------------------------------- v279 2/22/95 Add GNU options --help, --version. Minor config fixes. v280 2/24/95 Clean up calls to glob(); don't set # if we can't open the new file. v281 2/24/95 Repeat search should turn on hilites. v282 3/2/95 Minor fixes. v283 3/2/95 Fix homefile; make OS2 look in $HOME. v284 3/2/95 Error if "v" on LESSOPENed file; "%" figures out file size on pipe. v285 3/7/95 Don't set # in lsystem; lesskey try $HOME first. v286 3/7/95 Reformat change history (too much free time?). v287 3/8/95 Fix hilite bug if overstrike multiple chars. v288 3/8/95 Allow lesskey to override get_editkey keys. v289 3/9/95 Fix adj_hilite bug when line gets processed by hilite_line more than once. v290 3/9/95 Make configure automatically. Fix Sequent problem with incompatible sigsetmask(). Posted to prep.ai.mit.edu ----------------------------------------------------------------- v291 3/21/95 Add #env to lesskey. Fix MS-DOS build. Posted to simtel. ----------------------------------------------------------------- v292 4/24/95 Add MS-DOS support for Borland C. Fix arrow keys in MS-DOS versions. v293 4/28/95 Add auto-versioning stuff to make dist. v294 5/12/95 Fix Borland build. v295 1/20/96 Fix search on squished file; add /@@. v296 1/23/96 Allow cmdbuf larger than screen width. v297 1/24/96 Don't call termcap if tgetent fails; add #defines for buffers. v298 1/24/96 Change @@ to ^K. Add alternate search modifiers ^N, ^F, ^E. v299 1/25/96 Fix percent overflow in jump_percent (thanks to Brent Wiese); don't send "ti" after shell command till RETURN pressed. v300 1/25/96 Change -U to print tabs as ^I. v301 1/30/96 Make hilites work in cmd F output. v302 1/31/96 Fix cmd F to notice window-change signals. v303 1/31/96 Add ESC-SPACE command. v304 2/1/96 Add ^R search modifier; add LESSSECURE. v305 2/2/96 Workaround Linux /proc kernel bug; add LESSKEY. v306 3/16/96 Minor fixes. v307 3/25/96 Allow cmd line arg "--"; fix DOS & OS/2 defines.h. v308 4/4/96 Port to OS-9 (thanks to Boisy Pitre); fix -d. v309 4/9/96 Fix OS-9 version; fix tags bug with "$". v310 4/10/96 Get rid of HELPFILE. v311 4/22/96 Add Windows32 support; merge doscreen.c into screen.c. v312 4/24/96 Don't quit after "cannot reopen" error. v313 4/25/96 Added horizontal scrolling. v314 4/26/96 Modified -e to quit on reaching end of a squished file. v315 4/26/96 Fix "!;TAB" bug. v316 5/2/96 Make "|a" when (a < curr screen) go to end of curr screen. v317 5/14/96 Various fixes for the MS-DOS and OS/2 builds. Added ## and %% handling for filenames v318 5/29/96 Port to OS-9 Microware compiler; minor fixes (thanks to Martin Gregorie). v319 7/8/96 Fix Windows port (thanks to Jeff Paquette). v320 7/11/96 Final fixes for Windows port. v321 7/18/96 Minor fixes. Posted to Web page. ----------------------------------------------------------------- v322 8/13/96 Fix bug in shell escape from help file; add support for Microsoft Visual C under Windows; numerous small fixes. v323 8/19/96 Fixes for Windows version (thanks to Simon Munton); fix for Linux library weirdness (thanks to Jim Diamond); port to DJGPP (thanks to Eli Zaretskii). v324 8/21/96 Add support for spaces in filenames (thanks to Simon Munton). v325 8/21/96 Add lessecho, for spaces in filenames under Unix. v326 8/27/96 Fix DJGPP version. v327 9/1/96 Reorganize lglob, make spaces in filenames work better in Unix. v328 10/7/96 Append / to directory name in filename completion. Fix MS-DOS and OS-9 versions. v329 10/11/96 Fix more MS-DOS bugs; add LESSSEPARATOR; add -" option. Add LESSMETACHARS, LESSMETAESCAPE. v330 10/21/96 Minor fixes. Posted to Web page. ----------------------------------------------------------------- v331 4/22/97 Various Windows fixes (thanks to Gurusamy Sarathy). v332 4/22/97 Enter filenames from cmd line into edit history. Posted to Web page. ----------------------------------------------------------------- v333 3/4/99 Changed -w to highlite new line after forward movement. v334 3/9/99 Avoid overflowing prompt buffer; add %d and %D. v335 3/20/99 Add EBCDIC support (thanks to Thomas Dorner). Use HOMEDRIVE/HOMEPATH on Windows (thanks to Preston Bannister). Posted to Web page. ----------------------------------------------------------------- v336 4/8/99 Fix installation bugs. v337 4/9/99 Fix another installation bug. Posted to Web page. ----------------------------------------------------------------- v338 4/13/99 Add support for long option names. v339 4/18/99 Add \k, long option names to lesskey. Add -^P. Add :d. v340 4/21/99 Add regexec2. Fix Windows build. Posted to Web page. ----------------------------------------------------------------- v341 5/6/99 Add -F option; %c & ?c prompt escapes. (Thanks to Michele Maltoni) v342 7/22/99 Add system-wide lesskey file; allow GPL or Less License. v343 9/23/99 Support UTF-8 (Thanks to Robert Brady). Add %P and ?P in prompts. v344 10/27/99 -w highlights target line of g and p commands. v345 10/29/99 Make -R pass thru ESC but not other control chars. Posted to Web page. ----------------------------------------------------------------- v346 11/4/99 Fix bugs in long option processing; R cmd should clear hilites. Posted to Web page. ----------------------------------------------------------------- v347 12/13/99 Fixes for DJGPP version (thanks to Eli Zaretskii). v348 12/28/99 Fix deleting file with marks (thanks to Dimitar Jekov). Fix color problem in DJGPP version (thanks to Eli Zaretskii). v349 1/24/00 Fix minor DJGPP bugs; check environment vars for UTF-8; add --with-editor (thanks to Eli, Markus Kuhn, Thomas Schoepf). v350 3/1/00 Fix clear-while-standout bug. v351 3/5/00 Change -M and = prompts to show top & bottom line number. Posted to Web page. ----------------------------------------------------------------- v352 3/8/00 Fix scan_option NULL dereference. ----------------------------------------------------------------- v353 3/20/00 Fix SECURE compile bug, allow space after numeric option. v354 3/23/00 Add support for PCRE; add --with-regex configure option. ----------------------------------------------------------------- v355 6/28/00 Add -# option (thanks to Andy Levinson). v356 7/5/00 Add -J option. v357 7/6/00 Support sigprocmask. ----------------------------------------------------------------- v358 7/8/00 Fix problems with #stop in lesskey file. Posted to Web page. ----------------------------------------------------------------- v359 9/10/00 Fixes for Win32 display problems (thanks to Maurizio Vairani). v360 1/17/01 Move sysless to etc. v361 12/4/01 Add IBM-1047 charset & EBCDIC fixes (thanks to Thomas Dorner). Fix 32 bit dependencies (thanks to Paul Eggert). Fix UTF-8 overstriking (thanks to Robert Brady). v362 12/4/01 Make status column show search targets. v363 12/6/01 Add --no-keypad option. Add variable width tabstops (thanks to Peter Samuelson). v364 12/10/01 Better handling of very long lines in input; Fix horizontal shifting of colored text. v365 12/11/01 Fix overstriking of tabs; Add support for global(1) and multiple tag matches (thanks to Shigio Yamaguchi and Tim Vanderhoek). v366 12/11/01 Fixes for OS/2 (thanks to Kyosuke Tokoro). v367 12/13/01 Allow -D and -x options to terminate without dollar sign; Right/left arrow when entering N are shift cmds, not line edit. v368 12/18/01 Update lesskey commands. v370 12/23/01 Fix tags error messages. Posted to Web page. ----------------------------------------------------------------- v371 12/26/01 Fix new_file bug; use popen in Windows version; fix some compiler warnings. v372 12/29/01 Make -b be in units of 1K. v373 1/14/02 Improve handling of filenames containing shell metachars. v374 2/7/02 Fix memory leak; fix bug in -x argument parsing. v375 4/7/02 Fix searching for SGR sequences; fix SECURE build; add SGR support to DJGPP version (thanks to Eli Zaretskii). v376 6/10/02 Fix bug in overstriking mulitbyte UTF-8 characters (thanks to Jungshik Shin). Posted to Web page. ----------------------------------------------------------------- v377 9/10/02 Fix bug in Windows version when file contains CR; fix bug in search highlights with -R; make initial buffer limit really be 64K not unlimited. v378 9/30/02 Misc bug fixes and compiler warning cleanup. Posted to Web page. ----------------------------------------------------------------- v379 11/23/02 Add -L option; fix bug with ctrl-K in lesskey files; improve UTF-8 overstriking and underscore overstriking; fix minor man page problems; change to autoconf 2.54. v380 11/24/02 Make LINENUM same as POSITION. v381 11/28/02 Make -N use 7 columns for line number if possible. ----------------------------------------------------------------- v382 2/3/04 Remove copyrighted code. ----------------------------------------------------------------- v383 2/16/04 Add history file; add -K option; improve UTF-8 handling; fix some signed char bugs (thanks to Christian Biere); fix some upper/lower case bugs (thanks to Bjoern Jacke); add erase2 char (thanks to David Lawrence); add windows charset (thanks to Dimitar Zhekov). v384 2/20/04 Improvements in UTF-8 handling. v385 2/23/04 Fix UTF-8 output bug. ----------------------------------------------------------------- v386 9/13/05 Improvements to UTF-8 shift & color (thanks to Charles Levert); protect against invalid LESSOPEN and LESSCLOSE values. v387 9/14/05 Update Charles Levert's UTF-8 patch. v388 9/14/05 Change history behavior; change most sprintf calls to snprintf. v389 9/14/05 Fix copy & paste with long lines; improve performance of expand_linebuf; fix crash in init_mlist; v390 9/15/05 Show search matches in status column even if -G is set. ----------------------------------------------------------------- v391 9/17/05 Fix bugs. v392 10/14/05 Fix line wrapping bug. v393 10/19/05 Allow multiple attributes per char; fix bold+underline bug (thanks again to Charles Levert). v394 11/8/05 Fix prompt bug; fix compile problem in Windows build. ----------------------------------------------------------------- v395 1/12/07 Update Unicode tables (thanks to Charles Levert); don't chmod if LESSHISTFILE = /dev/null; make -f work for directories; support DESTDIR in Makefile; fix sigset_t detection in configure; make "t" cmd traverse tags in correct order v396 1/13/07 Add compatibility with POSIX more. v397 3/21/07 Allow decimal point in number for % command; Allow decimal point in number for -j option; Allow n command to fetch last search pattern from history (thanks to arno). v398 3/22/07 Don't rewrite history file if not necessary; fix bug when filenames contain "$". v399 3/22/07 Don't move to bottom of screen at startup; don't output extraneous newlines. v400 3/23/07 Allow search to find pattern after null byte (PCRE and no-regex) (thanks to Michael Constant). ----------------------------------------------------------------- v401 3/24/07 Minor documentation fixes. v402 3/30/07 Fix autoconf bug when memcpy etc are inline; fix bug in terminating number following -j option. v403 5/25/07 Fix Windows build. v404 6/5/07 Fix display bug with F command and long lines. v405 6/17/07 Fix display bug when using -w option. v406 6/17/07 Fix secure build. v407 8/16/07 Fix bugs; support CSI chars. v408 10/1/07 Fix bug in -i with non-ASCII chars. v409 10/12/07 Fix crash when viewing text with invalid UTF-8 sequences. v411 11/6/07 Fix case-insensitive searching with non-ASCII text. v412 11/6/07 Use symbolic SEEK constants. v413 11/6/07 Fix search highlight bug with non-ASCII text. v414 11/6/07 Fix display bug with no-wrap terminals. v415 11/14/07 Add --follow-name option. v416 11/22/07 Fix crash when searching text with invalid UTF-8 sequences. v417 12/31/07 Don't support single-char CSI in UTF-8 mode; fix bug with -R and invalid CSI sequences; fix bug searching text with SGR sequences with -r; emulate SGR sequences in WIN32 build. v418 12/31/07 Clean up. ----------------------------------------------------------------- v419 1/16/08 Make CSI char 0x9B work in UTF-8 mode (thanks to Colin Watson). v420 2/24/08 Add & command; fix -F option; fix '' after G. v421 2/24/08 Ignore filtered lines when searching. v422 3/2/08 Output CR at startup. v423 5/27/08 Clean up. v424 6/16/08 Fix compile bug with pcre; don't filter help file. v425 7/14/08 Fix non-ANSI code in list handling in ch.c. v426 10/27/08 Fix ignaw terminal handling (thanks to Per Hedeland); fix binary file detection in UTF-8 mode. v427 3/16/09 A few Win32 fixes (thanks to Jason Hood). v428 3/30/09 Add "|-" syntax to LESSOPEN. v429 4/10/09 Fix search highlighting bug with underlined text. ----------------------------------------------------------------- v430 4/22/09 Don't pass "-" to non-pipe LESSOPEN unless it starts with "-". v431 4/29/09 Fix highlight bug when match is at end of line. v432 6/27/09 Better fix for highlight bugs; fix new problems with ignaw terminals. v433 6/28/09 Cleanup search code. v434 6/29/09 More cleanup. v435 7/04/09 Fix bugs with non-regex filtering. v436 7/05/09 Fix memory leak. ----------------------------------------------------------------- v437 7/14/09 Fix bug in handling some long option names; make percentage calculation more accurate. v438 12/29/10 Fix bugs with -i/-I and & filtering; exit with status 2 on ctrl-C with -K. v439 12/31/10 Add -A option. v440 1/5/11 Fix bug displaying prompt after = command. v441 1/21/11 Fix semi-infinite loop if no newlines in file; make new -A behavior the default. ----------------------------------------------------------------- v442 3/2/11 Fix search bug. Add ctrl-G line edit command. v443 4/9/11 Fix Windows build. v444 6/8/11 Fix ungetc bug; remove vestiges of obsolete -l option. ----------------------------------------------------------------- v445 10/19/11 Fix hilite bug in backwards scroll with -J. Fix hilite bug with backspaces. Fix bugs handling SGR sequences in Win32 (thanks to Eric Lee). Add support for GNU regex (thanks to Reuben Thomas). v446 5/15/12 Up/down arrows in cmd editing search for matching cmd. v447 5/21/12 Add ESC-F command, two-pipe LESSOPEN syntax. v448 6/15/12 Print name of regex library in version message. v449 6/23/12 Allow config option --with-regex=none. v450 7/4/12 Fix EOF bug with ESC-F. v451 7/20/12 Fix typo. ----------------------------------------------------------------- v452 10/19/12 Fix --with-regex=none, fix "stty 0", fix Win32. Don't quit if errors in cmd line options. v453 10/27/12 Increase buffer sizes. v454 11/5/12 Fix typo. v455 11/5/12 Fix typo. v456 11/8/12 Fix option string incompatibility. v457 12/8/12 Use new option string syntax only after --use-backslash. v458 4/4/13 Fix display bug in using up/down in cmd buffer. ----------------------------------------------------------------- v459 5/6/13 Fix ++ bug. v460 6/19/13 Automate construction of Unicode tables. v461 6/21/13 Collapse multiple CRs before LF. v462 11/26/13 Don't overwrite history file, just append to it. v463 7/13/14 Misc. fixes. v464 7/19/14 Fix bugs & improve performance in & filtering (thanks to John Sullivan). v465 8/9/14 More fixes from John Sullivan. v466 8/23/14 Add colon to LESSANSIMIDCHARS. v467 9/18/14 Misc. fixes. v468 9/18/14 Fix typo v469 10/2/14 Allow extra string in command to append to a multichar cmd without executing it; fix bug using GNU regex. v470 10/5/14 Fix some compiler warnings. v471 12/14/14 Fix unget issues with prompt. Allow disabling history when compiled value of LESSHISTFILE = "-". v473 12/19/14 Fix prompt bug with stdin and -^P in lesskey extra string. v474 1/30/15 Fix bug in backwards search with match on bottom line. Make follow mode reopen file if file shrinks. v475 3/2/15 Fix possible buffer overrun with invalid UTF-8; fix bug when compiled with no regex; fix non-match search. v476 5/3/15 Update man pages. v477 5/19/15 Fix off-by-one in jump_forw_buffered; don't add FAKE_* files to cmd history. v478 5/21/15 Fix nonportable pointer usage in hilite tree. v479 7/6/15 Allow %% escapes in LESSOPEN variable. v480 7/24/15 Fix bug in no-regex searches; support MSVC v1900. v481 8/20/15 Fix broken -g option. ----------------------------------------------------------------- v482 2/25/16 Update Unicode database to "2015-06-16, 20:24:00 GMT [KW]". v483 2/27/16 Regenerate hilite when change search caselessness. (Thanks to Jason Hood) Fix bug when terminal has no "cm". (Thanks to Noel Cragg) v484 9/20/16 Update to Unicode 9.0.0 database. v485 10/21/16 Fix "nothing to search" bug when top/bottom line is empty; Display line numbers in bold. (thanks to Jason Hood); Fix incorrect display when entering double-width chars in search string. v486 10/22/16 New commands ESC-{ and ESC-} to shift to start/end of displayed lines; new option -Da in Windows version to enable SGR mode (thanks to Jason Hood). v487 10/23/16 configure --help formatting. ----------------------------------------------------------------- v488 2/23/17 Fix memory leaks in search (thanks to John Brooks). v489 3/30/17 Make -F not do init/deinit if file fits on one screen (thanks to Jindrich Novy). v490 4/5/17 Switch to ANSI prototypes in funcs.h; remove "register". v491 4/7/17 Fix signed char bug. v492 4/21/17 Handle SIGTERM. v493 6/22/17 Fix bug initializing charset in MSDOS build. v494 6/26/17 Update Unicode tables; make Cf chars composing not binary. v495 7/3/17 Improve binary file detection (thanks to Bela Lubkin); do -R filter when matching tags (thanks to Matthew Malcomson). v496 7/5/17 Add LESSRSCROLL marker. v497 7/5/17 Sync. v498 7/7/17 Fix early truncation of text if last char is double-width. v499 7/10/17 Misc fixes. v500 7/11/17 Fix bug where certain env variables couldn't be set in lesskey. v501 7/12/17 Make sure rscroll char is standout by default. v502 7/13/17 Control rscroll char via command line option not env variable. v503 7/13/17 Switch to git. v504 7/13/17 Call opt_rscroll at startup; change mkhelp.c to mkhelp.pl. v505 7/17/17 Add M and ESC-M commands; fix buffer handling with stdin and LESSOPEN. v506 7/17/17 On Windows, convert UTF-8 to multibyte if console is not UTF-8; handle extended chars on input (thanks to Jason Hood). v507 7/18/17 Fix some bugs handling filenames containing shell metachars. v508 7/19/17 Fix bugs when using LESSOPEN to read stdin. v509 7/19/17 Fix another stdin bug. v510 7/20/17 Fix bug in determining when to reopen a file. v511 7/25/17 Fix bugs in recent MSDOS changes (thanks to Jason Hood). v512 7/26/17 Fix MSDOS build. v513 7/26/17 Fix switch to normal attr at end of line with -R and rscroll. v514 7/27/17 Fix bug in fcomplete when pattern does not match a file. v515 7/28/17 Allow 'u' in -D option on Windows. v516 7/29/17 Fix bug using LESSOPEN with filename containing metachars. v517 7/30/17 Status column shows matches even if hiliting is disabled via -G. v518 8/1/17 Use underline in sgr mode in MSDOS (thanks to Jason Hood). v519 8/10/17 Fix rscroll bug when last char of line starts coloration. v520 9/3/17 Fix compiler warning. v521 10/20/17 Fix binary file warning in UTF-8 files with SGI sequences. v522 10/20/17 Handle keypad ENTER key properly. v523 10/23/17 Cleanup. v524 10/24/17 Fix getcc bug. v525 10/24/17 Change M command to mark last displayed line. v526 10/25/17 Fix search hilite bug introduced in v517. v527 10/30/17 Fix search hilite bug on last page with -a. v528 11/3/17 Make second ESC-u clear status column. v529 11/12/17 Display Unicode formatting chars in hex if -U is set. v530 12/2/17 Minor doc change and add missing VOID_PARAM. ----------------------------------------------------------------- v531 5/13/18 Fix bug with v on empty file; fix bug with v on file with metachars in name; add --nohistdups option. v532 7/27/18 Redraw screen on SIGWINCH even if screen size doesn't change. v533 8/1/18 Shell escape filenames in history; use PCRE_UTF8 flag; use wide-chars for Windows console title (thanks to Jason Hood). v534 8/9/18 Support PCRE2. v535 8/16/18 Don't count lines of initial screen if using -X with -F (thanks to Linus Torvalds). v536 8/31/18 Use descriptive error messages for PCRE2. v537 8/31/18 Support mingw build system (thanks to Mike Soyka). v538 9/3/18 Clean up some WIN32 code. v539 9/13/18 Fix spurious input on Windows with CAPSLOCK. v540 10/29/18 Add --mouse option. v541 10/30/18 Add --MOUSE option. v542 11/6/18 Add mouse support for WIN32; add --wheel-lines option. (thanks to Jason Hood). v543 11/12/18 Code cleanup. v544 11/16/18 Don't init/deinit keyboard/mouse if quit due to -F. v545 11/22/18 Fix Windows build, memory leaks. v546 11/29/18 Add --save-marks option. v547 11/30/18 Fix some bugs with saved marks. v548 12/14/18 Ignore mouse input when line editing. v549 2/10/19 Support X11 mouse extension 1006; Win32 fixes (thanks to Jason Hood). v550 2/16/19 Fix Win32 build; don't enable mouse unless --mouse is set. v551 6/10/19 Doc changes. ----------------------------------------------------------------- v552 7/8/19 Update Unicode tables. v553 10/17/19 Support tinfow; handle zero-width Hangul chars. v554 1/19/20 Remove erroneous free(). v555 3/15/20 Display error msg immediately when toggle -o without stdin. v556 3/15/20 Update copyright. v557 3/21/20 Fix memory corruption with libtermcap. v558 4/17/20 Don't init terminal if -F and file fits on one screen (WIN32). v559 4/19/20 Handle deinit correctly on WIN32. v560 5/3/20 Fix regression when command results in no movement; fix some less.nro issues (thanks to Bjarni I. Gislason). v561 5/11/20 Fix erroneous EOF calculation when F command is interrupted. v562 5/19/20 Update Unicode tables; minor doc formatting. v563 6/13/20 Fix crash due to realpath() incompatibility. v564 8/25/20 Handle realpath consistently; update docs. v565 11/3/20 Add ESC-U command, optimize calls to realpath(). v566 11/25/20 Fix crash when reopening a file while using LESSOPEN; support OSC 8 hyperlinks. v567 11/25/20 Fix typo. v568 11/29/20 Fix some hyperlink bugs; add ^W search modifier (thanks to Arminius); allow Makefile.aut to use Python instead of Perl (thanks to Charlie Lin). v569 12/1/20 Allow multiple & filters (thanks to Mattias Johansson), allow ^X to exit F command. v570 12/12/20 Better handling of multiple + or -p options; fix bugs in horizontal scrolling. v571 12/30/20 Add --line-num-width and --status-col-width options. v572 1/4/21 Save lastmark in history file; don't toggle mouse reporting; implement termcap delays. v573 1/9/21 Limit eof bell to 1 per second. v574 1/13/21 Add incremental search. v575 1/17/21 Fix build without HILITE_SEARCH; fix bug with ^K in lesskey extra string. v576 2/4/21 Make sure search result is visible; add --use-color and --color. v577 2/9/21 Use ttyname to get name of tty device. v578 2/9/21 Doc v579 2/14/21 Fix double-width char bugs and non-match search crash. v580 3/2/21 Some color fixes; fix compiler warnings; some lesstest support. v581 4/6/21 Ignore SIGTSTP in secure mode; don't print "skipping" when filtering. v582 4/21/21 Less now reads lesskey source file rather than binary; fix bug in finding tags with backslashes. v583 4/21/21 Use XDG_CONFIG_HOME and XDG_DATA_HOME to find files. v584 4/30/21 Add --file-size option. v585 5/2/21 Allow color desc W per man page. v586 5/7/21 Doc changes. v587 5/27/21 Fix --with-secure; fix --file-size message on Windows; fix colored search hilite in colored text; don't exit if -F and screen is resized; fix memcpy usage. v588 5/27/21 Fix release. v589 5/29/21 Copyright & build changes. v590 6/3/21 Fix non-autoconf Makefiles. v591 8/8/21 Use \kB for backspace key in lesskey; add more \k codes; handle multibyte chars in prompt. v592 8/24/21 Add --status-line option; limit use of /proc kludge; add --header. v593 8/30/21 Add header columns, --no-number-headers. v594 10/1/21 Let regex library handle caseless; add --redraw-on-quit option; add #version to lesskey. v595 10/12/21 Add H color type; add += to lesskey var section; add --search-options. v596 11/8/21 Look for lesskey in $HOME/.config. v597 11/16/21 Fix bugs in --header. v598 12/6/21 Look for lesshst in $XDG_STATE_HOME and $HOME/.local/state. v599 12/28/21 Defer moving to lower left in some cases; suppress TAB expansion in some cases. v600 1/7/22 Use /dev/tty if cannot open ttyname(). v601 1/31/22 Add --exit-follow-on-close option. v602 3/1/22 Doc changes. v603 3/14/22 Fix --header. v604 5/14/22 Fix termlib detection; fix non-ASCII input on Windows. v605 6/14/22 Update version number. v606 7/17/22 Fix bug with multibyte chars and --incsearch; escape filenames in LESSCLOSE; fix bin_file overrun. v607 7/19/22 Update Unicode tables. v608 7/22/22 Fix highlighting on colored text boundaries. v609 Add LESSUTFCHARDEF; fix overstrike color bug; fix procfs bug; fix signal race. */ char version[] = "609x"; R =/*_____________________________________________________________________________ * Copyright (C) 1984-2022 Mark Nudelman______________________________________ *_____________________________________________________________________________ * You may distribute under the terms of either the GNU General Public_________ * License or the Less License, as specified in the README file._______________ *_____________________________________________________________________________ * For more information, see the README file.__________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________----------------------- CHANGE HISTORY --------------------------_____________________________________________________________________________________________ 1/29/84 Allowed use on standard input__________________________________ 2/1/84 Added E, N, P commands_________________________________________ 4/17/84 Added '=' command, 'stop' signal handling______________________ 4/20/84 Added line folding_____________________________________________v2 4/27/84 Fixed '=' command to use BOTTOM_PLUS_ONE,______________________ instead of TOP, added 'p' & 'v' commands_______________________v3 5/3/84 Added -m and -t options, '-' command___________________________v4 5/3/84 Added LESS environment variable________________________________v5 5/3/84 New comments, fixed '-' command slightly_______________________v6 5/15/84 Added -Q, visual bell__________________________________________v7 5/24/84 Fixed jump_back(n) bug: n should count real____________________ lines, not folded lines. Also allow number on G command.______v8 5/30/84 Re-do -q and -Q commands_______________________________________v9 9/25/84 Added "+" argument________________________________________v10 10/10/84 Fixed bug in -b argument processing_________________________v11 10/18/84 Made error() ring bell if \\n not entered.______________________-----------------------------------------------------------------______________v12 2/13/85 Reorganized signal handling and made portable to 4.2bsd._______v13 2/16/85 Reword error message for '-' command.__________________________v14 2/22/85 Added -bf and -bp variants of -b.______________________________@04version.c@00#______________________________________________________________________ +6a = * Copyright (C) 1984-2022 Mark Nudelman______________________________________ *_____________________________________________________________________________ * You may distribute under the terms of either the GNU General Public_________ * License or the Less License, as specified in the README file._______________ *_____________________________________________________________________________ * For more information, see the README file.__________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________----------------------- CHANGE HISTORY --------------------------_____________________________________________________________________________________________ 1/29/84 Allowed use on standard input__________________________________ 2/1/84 Added E, N, P commands_________________________________________ 4/17/84 Added '=' command, 'stop' signal handling______________________ 4/20/84 Added line folding_____________________________________________v2 4/27/84 Fixed '=' command to use BOTTOM_PLUS_ONE,______________________ instead of TOP, added 'p' & 'v' commands_______________________v3 5/3/84 Added -m and -t options, '-' command___________________________v4 5/3/84 Added LESS environment variable________________________________v5 5/3/84 New comments, fixed '-' command slightly_______________________v6 5/15/84 Added -Q, visual bell__________________________________________v7 5/24/84 Fixed jump_back(n) bug: n should count real____________________ lines, not folded lines. Also allow number on G command.______v8 5/30/84 Re-do -q and -Q commands_______________________________________v9 9/25/84 Added "+" argument________________________________________v10 10/10/84 Fixed bug in -b argument processing_________________________v11 10/18/84 Made error() ring bell if \\n not entered.______________________-----------------------------------------------------------------______________v12 2/13/85 Reorganized signal handling and made portable to 4.2bsd._______v13 2/16/85 Reword error message for '-' command.__________________________v14 2/22/85 Added -bf and -bp variants of -b.______________________________v15 2/25/85 Miscellaneous changes._________________________________________:#______________________________________________________________________________ +6a = *_____________________________________________________________________________ * You may distribute under the terms of either the GNU General Public_________ * License or the Less License, as specified in the README file._______________ *_____________________________________________________________________________ * For more information, see the README file.__________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________----------------------- CHANGE HISTORY --------------------------_____________________________________________________________________________________________ 1/29/84 Allowed use on standard input__________________________________ 2/1/84 Added E, N, P commands_________________________________________ 4/17/84 Added '=' command, 'stop' signal handling______________________ 4/20/84 Added line folding_____________________________________________v2 4/27/84 Fixed '=' command to use BOTTOM_PLUS_ONE,______________________ instead of TOP, added 'p' & 'v' commands_______________________v3 5/3/84 Added -m and -t options, '-' command___________________________v4 5/3/84 Added LESS environment variable________________________________v5 5/3/84 New comments, fixed '-' command slightly_______________________v6 5/15/84 Added -Q, visual bell__________________________________________v7 5/24/84 Fixed jump_back(n) bug: n should count real____________________ lines, not folded lines. Also allow number on G command.______v8 5/30/84 Re-do -q and -Q commands_______________________________________v9 9/25/84 Added "+" argument________________________________________v10 10/10/84 Fixed bug in -b argument processing_________________________v11 10/18/84 Made error() ring bell if \\n not entered.______________________-----------------------------------------------------------------______________v12 2/13/85 Reorganized signal handling and made portable to 4.2bsd._______v13 2/16/85 Reword error message for '-' command.__________________________v14 2/22/85 Added -bf and -bp variants of -b.______________________________v15 2/25/85 Miscellaneous changes._________________________________________v16 3/13/85 Added -u flag for backspace processing.________________________:#______________________________________________________________________________ +6a = * You may distribute under the terms of either the GNU General Public_________ * License or the Less License, as specified in the README file._______________ *_____________________________________________________________________________ * For more information, see the README file.__________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________----------------------- CHANGE HISTORY --------------------------_____________________________________________________________________________________________ 1/29/84 Allowed use on standard input__________________________________ 2/1/84 Added E, N, P commands_________________________________________ 4/17/84 Added '=' command, 'stop' signal handling______________________ 4/20/84 Added line folding_____________________________________________v2 4/27/84 Fixed '=' command to use BOTTOM_PLUS_ONE,______________________ instead of TOP, added 'p' & 'v' commands_______________________v3 5/3/84 Added -m and -t options, '-' command___________________________v4 5/3/84 Added LESS environment variable________________________________v5 5/3/84 New comments, fixed '-' command slightly_______________________v6 5/15/84 Added -Q, visual bell__________________________________________v7 5/24/84 Fixed jump_back(n) bug: n should count real____________________ lines, not folded lines. Also allow number on G command.______v8 5/30/84 Re-do -q and -Q commands_______________________________________v9 9/25/84 Added "+" argument________________________________________v10 10/10/84 Fixed bug in -b argument processing_________________________v11 10/18/84 Made error() ring bell if \\n not entered.______________________-----------------------------------------------------------------______________v12 2/13/85 Reorganized signal handling and made portable to 4.2bsd._______v13 2/16/85 Reword error message for '-' command.__________________________v14 2/22/85 Added -bf and -bp variants of -b.______________________________v15 2/25/85 Miscellaneous changes._________________________________________v16 3/13/85 Added -u flag for backspace processing.________________________v17 4/13/85 Added j and k commands, changed -t default.____________________:#______________________________________________________________________________ +6a = * License or the Less License, as specified in the README file._______________ *_____________________________________________________________________________ * For more information, see the README file.__________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________----------------------- CHANGE HISTORY --------------------------_____________________________________________________________________________________________ 1/29/84 Allowed use on standard input__________________________________ 2/1/84 Added E, N, P commands_________________________________________ 4/17/84 Added '=' command, 'stop' signal handling______________________ 4/20/84 Added line folding_____________________________________________v2 4/27/84 Fixed '=' command to use BOTTOM_PLUS_ONE,______________________ instead of TOP, added 'p' & 'v' commands_______________________v3 5/3/84 Added -m and -t options, '-' command___________________________v4 5/3/84 Added LESS environment variable________________________________v5 5/3/84 New comments, fixed '-' command slightly_______________________v6 5/15/84 Added -Q, visual bell__________________________________________v7 5/24/84 Fixed jump_back(n) bug: n should count real____________________ lines, not folded lines. Also allow number on G command.______v8 5/30/84 Re-do -q and -Q commands_______________________________________v9 9/25/84 Added "+" argument________________________________________v10 10/10/84 Fixed bug in -b argument processing_________________________v11 10/18/84 Made error() ring bell if \\n not entered.______________________-----------------------------------------------------------------______________v12 2/13/85 Reorganized signal handling and made portable to 4.2bsd._______v13 2/16/85 Reword error message for '-' command.__________________________v14 2/22/85 Added -bf and -bp variants of -b.______________________________v15 2/25/85 Miscellaneous changes._________________________________________v16 3/13/85 Added -u flag for backspace processing.________________________v17 4/13/85 Added j and k commands, changed -t default.____________________v18 4/20/85 Rewrote signal handling code.__________________________________:#______________________________________________________________________________ +6a = *_____________________________________________________________________________ * For more information, see the README file.__________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________----------------------- CHANGE HISTORY --------------------------_____________________________________________________________________________________________ 1/29/84 Allowed use on standard input__________________________________ 2/1/84 Added E, N, P commands_________________________________________ 4/17/84 Added '=' command, 'stop' signal handling______________________ 4/20/84 Added line folding_____________________________________________v2 4/27/84 Fixed '=' command to use BOTTOM_PLUS_ONE,______________________ instead of TOP, added 'p' & 'v' commands_______________________v3 5/3/84 Added -m and -t options, '-' command___________________________v4 5/3/84 Added LESS environment variable________________________________v5 5/3/84 New comments, fixed '-' command slightly_______________________v6 5/15/84 Added -Q, visual bell__________________________________________v7 5/24/84 Fixed jump_back(n) bug: n should count real____________________ lines, not folded lines. Also allow number on G command.______v8 5/30/84 Re-do -q and -Q commands_______________________________________v9 9/25/84 Added "+" argument________________________________________v10 10/10/84 Fixed bug in -b argument processing_________________________v11 10/18/84 Made error() ring bell if \\n not entered.______________________-----------------------------------------------------------------______________v12 2/13/85 Reorganized signal handling and made portable to 4.2bsd._______v13 2/16/85 Reword error message for '-' command.__________________________v14 2/22/85 Added -bf and -bp variants of -b.______________________________v15 2/25/85 Miscellaneous changes._________________________________________v16 3/13/85 Added -u flag for backspace processing.________________________v17 4/13/85 Added j and k commands, changed -t default.____________________v18 4/20/85 Rewrote signal handling code.__________________________________v19 5/2/85 Got rid of "verbose" eq_message()._____________________________:#______________________________________________________________________________ +6a = * For more information, see the README file.__________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________----------------------- CHANGE HISTORY --------------------------_____________________________________________________________________________________________ 1/29/84 Allowed use on standard input__________________________________ 2/1/84 Added E, N, P commands_________________________________________ 4/17/84 Added '=' command, 'stop' signal handling______________________ 4/20/84 Added line folding_____________________________________________v2 4/27/84 Fixed '=' command to use BOTTOM_PLUS_ONE,______________________ instead of TOP, added 'p' & 'v' commands_______________________v3 5/3/84 Added -m and -t options, '-' command___________________________v4 5/3/84 Added LESS environment variable________________________________v5 5/3/84 New comments, fixed '-' command slightly_______________________v6 5/15/84 Added -Q, visual bell__________________________________________v7 5/24/84 Fixed jump_back(n) bug: n should count real____________________ lines, not folded lines. Also allow number on G command.______v8 5/30/84 Re-do -q and -Q commands_______________________________________v9 9/25/84 Added "+" argument________________________________________v10 10/10/84 Fixed bug in -b argument processing_________________________v11 10/18/84 Made error() ring bell if \\n not entered.______________________-----------------------------------------------------------------______________v12 2/13/85 Reorganized signal handling and made portable to 4.2bsd._______v13 2/16/85 Reword error message for '-' command.__________________________v14 2/22/85 Added -bf and -bp variants of -b.______________________________v15 2/25/85 Miscellaneous changes._________________________________________v16 3/13/85 Added -u flag for backspace processing.________________________v17 4/13/85 Added j and k commands, changed -t default.____________________v18 4/20/85 Rewrote signal handling code.__________________________________v19 5/2/85 Got rid of "verbose" eq_message()._____________________________ Made search() scroll in some cases.____________________________:#______________________________________________________________________________ +2f = * For more information, see the README file.__________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________----------------------- CHANGE HISTORY --------------------------_____________________________________________________________________________________________ 1/29/84 Allowed use on standard input__________________________________ 2/1/84 Added E, N, P commands_________________________________________ 4/17/84 Added '=' command, 'stop' signal handling______________________ 4/20/84 Added line folding_____________________________________________v2 4/27/84 Fixed '=' command to use BOTTOM_PLUS_ONE,______________________ instead of TOP, added 'p' & 'v' commands_______________________v3 5/3/84 Added -m and -t options, '-' command___________________________v4 5/3/84 Added LESS environment variable________________________________v5 5/3/84 New comments, fixed '-' command slightly_______________________v6 5/15/84 Added -Q, visual bell__________________________________________v7 5/24/84 Fixed jump_back(n) bug: n should count real____________________ lines, not folded lines. Also allow number on G command.______v8 5/30/84 Re-do -q and -Q commands_______________________________________v9 9/25/84 Added "+" argument________________________________________v10 10/10/84 Fixed bug in -b argument processing_________________________v11 10/18/84 Made error() ring bell if \\n not entered.______________________-----------------------------------------------------------------______________v12 2/13/85 Reorganized signal handling and made portable to 4.2bsd._______v13 2/16/85 Reword error message for '-' command.__________________________v14 2/22/85 Added -bf and -bp variants of -b.______________________________v15 2/25/85 Miscellaneous changes._________________________________________v16 3/13/85 Added -u flag for backspace processing.________________________v17 4/13/85 Added j and k commands, changed -t default.____________________v18 4/20/85 Rewrote signal handling code.__________________________________v19 5/2/85 Got rid of "verbose" eq_message()._____________________________ Made search() scroll in some cases.____________________________/#______________________________________________________________________________ +5c = * For more information, see the README file.__________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________----------------------- CHANGE HISTORY --------------------------_____________________________________________________________________________________________ 1/29/84 Allowed use on standard input__________________________________ 2/1/84 Added E, N, P commands_________________________________________ 4/17/84 Added '=' command, 'stop' signal handling______________________ 4/20/84 Added line folding_____________________________________________v2 4/27/84 Fixed '=' command to use BOTTOM_PLUS_ONE,______________________ instead of TOP, added 'p' & 'v' commands_______________________v3 5/3/84 Added -m and -t options, '-' command___________________________v4 5/3/84 Added LESS environment variable________________________________v5 5/3/84 New comments, fixed '-' command slightly_______________________v6 5/15/84 Added -Q, visual bell__________________________________________v7 5/24/84 Fixed jump_back(n) bug: n should count real____________________ lines, not folded lines. Also allow number on G command.______v8 5/30/84 Re-do -q and -Q commands_______________________________________v9 9/25/84 Added "+" argument________________________________________v10 10/10/84 Fixed bug in -b argument processing_________________________v11 10/18/84 Made error() ring bell if \\n not entered.______________________-----------------------------------------------------------------______________v12 2/13/85 Reorganized signal handling and made portable to 4.2bsd._______v13 2/16/85 Reword error message for '-' command.__________________________v14 2/22/85 Added -bf and -bp variants of -b.______________________________v15 2/25/85 Miscellaneous changes._________________________________________v16 3/13/85 Added -u flag for backspace processing.________________________v17 4/13/85 Added j and k commands, changed -t default.____________________v18 4/20/85 Rewrote signal handling code.__________________________________v19 5/2/85 Got rid of "verbose" eq_message()._____________________________ Made search() scroll in some cases.____________________________/\\#_____________________________________________________________________________ +21 = * For more information, see the README file.__________________________________ */__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________/*_____________________________________________________________________________----------------------- CHANGE HISTORY --------------------------_____________________________________________________________________________________________ 1/29/84 Allowed use on standard input__________________________________ 2/1/84 Added E, N, P commands_________________________________________ 4/17/84 Added '=' command, 'stop' signal handling______________________ 4/20/84 Added line folding_____________________________________________v2 4/27/84 Fixed '=' command to use BOTTOM_PLUS_ONE,______________________ instead of TOP, added 'p' & 'v' commands_______________________v3 5/3/84 Added -m and -t options, '-' command___________________________v4 5/3/84 Added LESS environment variable________________________________v5 5/3/84 New comments, fixed '-' command slightly_______________________v6 5/15/84 Added -Q, visual bell__________________________________________v7 5/24/84 Fixed jump_back(n) bug: n should count real____________________ lines, not folded lines. Also allow number on G command.______v8 5/30/84 Re-do -q and -Q commands_______________________________________v9 9/25/84 Added "+" argument________________________________________v10 10/10/84 Fixed bug in -b argument processing_________________________v11 10/18/84 Made error() ring bell if \\n not entered.______________________-----------------------------------------------------------------______________v12 2/13/85 Reorganized signal handling and made portable to 4.2bsd._______v13 2/16/85 Reword error message for '-' command.__________________________v14 2/22/85 Added -bf and -bp variants of -b.______________________________v15 2/25/85 Miscellaneous changes._________________________________________v16 3/13/85 Added -u flag for backspace processing.________________________v17 4/13/85 Added j and k commands, changed -t default.____________________v18 4/20/85 Rewrote signal handling code.__________________________________v19 5/2/85 Got rid of "verbose" eq_message()._____________________________ Made search() scroll in some cases.____________________________/\\\!#____________________________________________________________________________ +a =v61 9/26/86 Got rid of annoying repaints after @04\!@00 cmd.______________________ Posted to USENET.______________________________________________-----------------------------------------------------------------______________v62 12/23/86 Added is_directory(); change -z default to_____________________ -1 instead of 24; cat-and-exit if -e and_______________________ file is less than a screenful._________________________________v63 1/8/87 Fixed bug in cat-and-exit if > 1 file._________________________v64 1/12/87 Changed puts/putstr, putc/putchr,______________________________ getc/getchr to av oid name conflict with_______________________ stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added @04\!\!@00 and % expansion to @04\!@00 command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "\#" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "@04\!@00" to_____________________________:#______________________________________________________________________________ +6a = Posted to USENET.______________________________________________-----------------------------------------------------------------______________v62 12/23/86 Added is_directory(); change -z default to_____________________ -1 instead of 24; cat-and-exit if -e and_______________________ file is less than a screenful._________________________________v63 1/8/87 Fixed bug in cat-and-exit if > 1 file._________________________v64 1/12/87 Changed puts/putstr, putc/putchr,______________________________ getc/getchr to av oid name conflict with_______________________ stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added @04\!\!@00 and % expansion to @04\!@00 command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "\#" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "@04\!@00" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________:#______________________________________________________________________________ +6a =-----------------------------------------------------------------______________v62 12/23/86 Added is_directory(); change -z default to_____________________ -1 instead of 24; cat-and-exit if -e and_______________________ file is less than a screenful._________________________________v63 1/8/87 Fixed bug in cat-and-exit if > 1 file._________________________v64 1/12/87 Changed puts/putstr, putc/putchr,______________________________ getc/getchr to av oid name conflict with_______________________ stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added @04\!\!@00 and % expansion to @04\!@00 command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "\#" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "@04\!@00" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________:#______________________________________________________________________________ +6a =v62 12/23/86 Added is_directory(); change -z default to_____________________ -1 instead of 24; cat-and-exit if -e and_______________________ file is less than a screenful._________________________________v63 1/8/87 Fixed bug in cat-and-exit if > 1 file._________________________v64 1/12/87 Changed puts/putstr, putc/putchr,______________________________ getc/getchr to av oid name conflict with_______________________ stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added @04\!\!@00 and % expansion to @04\!@00 command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "\#" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "@04\!@00" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________:#______________________________________________________________________________ +6a = -1 instead of 24; cat-and-exit if -e and_______________________ file is less than a screenful._________________________________v63 1/8/87 Fixed bug in cat-and-exit if > 1 file._________________________v64 1/12/87 Changed puts/putstr, putc/putchr,______________________________ getc/getchr to av oid name conflict with_______________________ stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added @04\!\!@00 and % expansion to @04\!@00 command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "\#" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "@04\!@00" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________:#______________________________________________________________________________ +2f = -1 instead of 24; cat-and-exit if -e and_______________________ file is less than a screenful._________________________________v63 1/8/87 Fixed bug in cat-and-exit if > 1 file._________________________v64 1/12/87 Changed puts/putstr, putc/putchr,______________________________ getc/getchr to av oid name conflict with_______________________ stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added @04\!\!@00 and % expansion to @04\!@00 command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "\#" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "@04\!@00" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________/#______________________________________________________________________________ +5c = -1 instead of 24; cat-and-exit if -e and_______________________ file is less than a screenful._________________________________v63 1/8/87 Fixed bug in cat-and-exit if > 1 file._________________________v64 1/12/87 Changed puts/putstr, putc/putchr,______________________________ getc/getchr to av oid name conflict with_______________________ stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added @04\!\!@00 and % expansion to @04\!@00 command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "\#" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "@04\!@00" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________/\\#_____________________________________________________________________________ +24 = -1 instead of 24; cat-and-exit if -e and_______________________ file is less than a screenful._________________________________v63 1/8/87 Fixed bug in cat-and-exit if > 1 file._________________________v64 1/12/87 Changed puts/putstr, putc/putchr,______________________________ getc/getchr to av oid name conflict with_______________________ stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added @04\!\!@00 and % expansion to @04\!@00 command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "\#" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "@04\!@00" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________/\\\$#____________________________________________________________________________ +a =v72 6/26/87 Added -E, -L, use @04\$@00SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "\#" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "\!" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________v79 9/29/87 Added the _ command.___________________________________________v80 10/6/87 Allow signal to break out of linenum scan._____________________v81 10/6/87 Allow -b to be changed from within less._______________________v82 10/7/87 Add cmd_decode to use a table for key__________________________ binding (thanks to Dav id Nason).______________________________v83 10/9/87 Allow .less file for user-defined keys.________________________v84 10/11/87 Fix -e/-E problems (thanks to Felix Lee).______________________v85 10/15/87 Search now keeps track of line numbers.________________________v86 10/20/87 Added -B option and autobuf; fixed_____________________________ "pipe error" bug.______________________________________________v87 3/1/88 Fix bug re BSD signals while reading file._____________________v88 3/12/88 Use new format for -P option (thanks to________________________ der Mouse), allow "+-c" without message,_______________________ fix bug re BSD hangup._________________________________________v89 3/18/88 Turn off line numbers if linenum scan__________________________ is interrupted.________________________________________________v90 3/30/88 Allow -P from within less._____________________________________v91 3/30/88 Added tags file support (new -t option)________________________:#______________________________________________________________________________ +75 = file is less than a screenful._________________________________v63 1/8/87 Fixed bug in cat-and-exit if > 1 file._________________________v64 1/12/87 Changed puts/putstr, putc/putchr,______________________________ getc/getchr to av oid name conflict with_______________________ stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added \!\! and % expansion to \! command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use @04\$@00SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "\#" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "\!" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________v79 9/29/87 Added the _ command.___________________________________________:#______________________________________________________________________________ +2f = file is less than a screenful._________________________________v63 1/8/87 Fixed bug in cat-and-exit if > 1 file._________________________v64 1/12/87 Changed puts/putstr, putc/putchr,______________________________ getc/getchr to av oid name conflict with_______________________ stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added \!\! and % expansion to \! command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use @04\$@00SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "\#" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "\!" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________v79 9/29/87 Added the _ command.___________________________________________/#______________________________________________________________________________ +b = file is less than a screenful._________________________________v63 1/8/87 Fixed bug in cat-and-exit if > 1 file._________________________v64 1/12/87 Changed puts/putstr, putc/putchr,______________________________ getc/getchr to av oid name conflict with_______________________ stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added \!\! and % expansion to \! command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use @04\$@00SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "\#" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "\!" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________v79 9/29/87 Added the _ command.___________________________________________Keep-pos /#_____________________________________________________________________ +23 = file is less than a screenful._________________________________v63 1/8/87 Fixed bug in cat-and-exit if > 1 file._________________________v64 1/12/87 Changed puts/putstr, putc/putchr,______________________________ getc/getchr to av oid name conflict with_______________________ stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added \!\! and % expansion to \! command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use @04\$@00SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "\#" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "\!" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________v79 9/29/87 Added the _ command.___________________________________________Keep-pos /\##____________________________________________________________________ +a = file is less than a screenful._________________________________v63 1/8/87 Fixed bug in cat-and-exit if > 1 file._________________________v64 1/12/87 Changed puts/putstr, putc/putchr,______________________________ getc/getchr to av oid name conflict with_______________________ stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added \!\! and % expansion to \! command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "@04\#@00" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "\!" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________v79 9/29/87 Added the _ command.___________________________________________:#______________________________________________________________________________ +6a =v63 1/8/87 Fixed bug in cat-and-exit if > 1 file._________________________v64 1/12/87 Changed puts/putstr, putc/putchr,______________________________ getc/getchr to av oid name conflict with_______________________ stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added \!\! and % expansion to \! command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "@04\#@00" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "\!" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________v79 9/29/87 Added the _ command.___________________________________________v80 10/6/87 Allow signal to break out of linenum scan._____________________:#______________________________________________________________________________ +6a =v64 1/12/87 Changed puts/putstr, putc/putchr,______________________________ getc/getchr to av oid name conflict with_______________________ stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added \!\! and % expansion to \! command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "@04\#@00" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "\!" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________v79 9/29/87 Added the _ command.___________________________________________v80 10/6/87 Allow signal to break out of linenum scan._____________________v81 10/6/87 Allow -b to be changed from within less._______________________:#______________________________________________________________________________ +6a = getc/getchr to av oid name conflict with_______________________ stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added \!\! and % expansion to \! command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "@04\#@00" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "\!" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________v79 9/29/87 Added the _ command.___________________________________________v80 10/6/87 Allow signal to break out of linenum scan._____________________v81 10/6/87 Allow -b to be changed from within less._______________________v82 10/7/87 Add cmd_decode to use a table for key__________________________:#______________________________________________________________________________ +6a = stdio functions._______________________________________________v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added \!\! and % expansion to \! command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "@04\#@00" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "\!" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________v79 9/29/87 Added the _ command.___________________________________________v80 10/6/87 Allow signal to break out of linenum scan._____________________v81 10/6/87 Allow -b to be changed from within less._______________________v82 10/7/87 Add cmd_decode to use a table for key__________________________ binding (thanks to Dav id Nason).______________________________:#______________________________________________________________________________ +6a =v65 1/26/87 Allowed '-' command to change NUMBER___________________________ v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added \!\! and % expansion to \! command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "@04\#@00" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "\!" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________v79 9/29/87 Added the _ command.___________________________________________v80 10/6/87 Allow signal to break out of linenum scan._____________________v81 10/6/87 Allow -b to be changed from within less._______________________v82 10/7/87 Add cmd_decode to use a table for key__________________________ binding (thanks to Dav id Nason).______________________________v83 10/9/87 Allow .less file for user-defined keys.________________________:#______________________________________________________________________________ +6a = v alued options (thanks to Gary Puckering)_____________________v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added \!\! and % expansion to \! command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "@04\#@00" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "\!" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________v79 9/29/87 Added the _ command.___________________________________________v80 10/6/87 Allow signal to break out of linenum scan._____________________v81 10/6/87 Allow -b to be changed from within less._______________________v82 10/7/87 Add cmd_decode to use a table for key__________________________ binding (thanks to Dav id Nason).______________________________v83 10/9/87 Allow .less file for user-defined keys.________________________v84 10/11/87 Fix -e/-E problems (thanks to Felix Lee).______________________:#______________________________________________________________________________ +6a =v66 2/13/87 Fixed bug: prepaint should use force=1.________________________v67 2/24/87 Added \!\! and % expansion to \! command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "@04\#@00" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "\!" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________v79 9/29/87 Added the _ command.___________________________________________v80 10/6/87 Allow signal to break out of linenum scan._____________________v81 10/6/87 Allow -b to be changed from within less._______________________v82 10/7/87 Add cmd_decode to use a table for key__________________________ binding (thanks to Dav id Nason).______________________________v83 10/9/87 Allow .less file for user-defined keys.________________________v84 10/11/87 Fix -e/-E problems (thanks to Felix Lee).______________________v85 10/15/87 Search now keeps track of line numbers.________________________:#______________________________________________________________________________ +6a =v67 2/24/87 Added \!\! and % expansion to \! command._________________________v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support;_________________________ changed is_directory to bad_file.______________________________ (thanks to J. Robert Ward)_____________________________________v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC).______________________v70 3/13/87 Changed help cmd from 'h' to 'H'; better_______________________ error msgs in bad_file, errno_message._________________________v71 5/11/87 Changed -p to -c, made triple -c/-C____________________________ for clear-eol like more's -c.__________________________________v72 6/26/87 Added -E, -L, use \$SHELL in lsystem()._________________________ (thanks to Stev e Spearman)____________________________________v73 6/26/87 Allow Examine "@04\#@00" for previous file.___________________________ Posted to USENET 8/25/87.______________________________________-----------------------------------------------------------------______________v74 9/18/87 Fix conflict in EOF symbol with stdio.h,_______________________ Make os.c more portable to BSD.________________________________v75 9/23/87 Fix problems in get_term (thanks to ___________________________ Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "\!" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________v79 9/29/87 Added the _ command.___________________________________________v80 10/6/87 Allow signal to break out of linenum scan._____________________v81 10/6/87 Allow -b to be changed from within less._______________________v82 10/7/87 Add cmd_decode to use a table for key__________________________ binding (thanks to Dav id Nason).______________________________v83 10/9/87 Allow .less file for user-defined keys.________________________v84 10/11/87 Fix -e/-E problems (thanks to Felix Lee).______________________v85 10/15/87 Search now keeps track of line numbers.________________________v86 10/20/87 Added -B option and autobuf; fixed_____________________________:#______________________________________________________________________________ +64 = Paul Eggert); new backwards scrolling in_______________________ jump_loc (thanks to Marion Hakanson).__________________________v76 9/23/87 Added -i flag; allow single "\!" to_____________________________ inv oke a shell (thanks to Franco Barber)._____________________v77 9/24/87 Added -n flag and line number support._________________________v78 9/25/87 Fixed problem with prompts longer than_________________________ the screen width.______________________________________________v79 9/29/87 Added the _ command.___________________________________________v80 10/6/87 Allow signal to break out of linenum scan._____________________v81 10/6/87 Allow -b to be changed from within less._______________________v82 10/7/87 Add cmd_decode to use a table for key__________________________ binding (thanks to Dav id Nason).______________________________v83 10/9/87 Allow .less file for user-defined keys.________________________v84 10/11/87 Fix -e/-E problems (thanks to Felix Lee).______________________v85 10/15/87 Search now keeps track of line numbers.________________________v86 10/20/87 Added -B option and autobuf; fixed_____________________________ "pipe error" bug.______________________________________________v87 3/1/88 Fix bug re BSD signals while reading file._____________________v88 3/12/88 Use new format for -P option (thanks to________________________ der Mouse), allow "+-c" without message,_______________________ fix bug re BSD hangup._________________________________________v89 3/18/88 Turn off line numbers if linenum scan__________________________ is interrupted.________________________________________________v90 3/30/88 Allow -P from within less._____________________________________v91 3/30/88 Added tags file support (new -t option)________________________ (thanks to Brian Campbell).____________________________________v92 4/4/88 Added -+option syntax._________________________________________v93 4/11/88 Add support for slow input (thanks to__________________________ Joe Orost & apologies for taking almost________________________ 3 years to get this in\!)_______________________________________v94 4/11/88 Redo reading/signal stuff._____________________________________v95 4/20/88 Repaint screen better after signal.____________________________v96 4/21/88 Add /\! and ?\! commands.________________________________________:#______________________________________________________________________________ +64 =v87 3/1/88 Fix bug re BSD signals while reading file._____________________v88 3/12/88 Use new format for -P option (thanks to________________________ der Mouse), allow "+-c" without message,_______________________ fix bug re BSD hangup._________________________________________v89 3/18/88 Turn off line numbers if linenum scan__________________________ is interrupted.________________________________________________v90 3/30/88 Allow -P from within less._____________________________________v91 3/30/88 Added tags file support (new -t option)________________________ (thanks to Brian Campbell).____________________________________v92 4/4/88 Added -+option syntax._________________________________________v93 4/11/88 Add support for slow input (thanks to__________________________ Joe Orost & apologies for taking almost________________________ 3 years to get this in\!)_______________________________________v94 4/11/88 Redo reading/signal stuff._____________________________________v95 4/20/88 Repaint screen better after signal.____________________________v96 4/21/88 Add /\! and ?\! commands.________________________________________v97 5/17/88 Allow -l/-L from within less.__________________________________ Eliminate some static arrays (use calloc)._____________________ Posted to USENET.______________________________________________-----------------------------------------------------------------______________v98 10/14/88 Fix incorrect calloc call; uninitialized_______________________ var in exec_mca; core dump on unknown TERM.____________________ Make v cmd work if past last line of file._____________________ Fix some signal bugs.__________________________________________v99 10/29/88 Allow space between -X and string,_____________________________ when X is a string-valued option.______________________________v100 1/5/89 Fix globbing bug when \$SHELL not set;__________________________ allow spaces after -t command._________________________________v101 1/6/89 Fix problem with long (truncated) lines________________________ in tags file (thanks to Neil Dixon).___________________________v102 1/6/89 Fix bug with E@04\#@00 when no prev file;_____________________________ allow spaces after -l command._________________________________v103 3/14/89 Add -N, -f and -? options. Add z and w________________________:#______________________________________________________________________________ +64 = Eliminate some static arrays (use calloc)._____________________ Posted to USENET.______________________________________________-----------------------------------------------------------------______________v98 10/14/88 Fix incorrect calloc call; uninitialized_______________________ var in exec_mca; core dump on unknown TERM.____________________ Make v cmd work if past last line of file._____________________ Fix some signal bugs.__________________________________________v99 10/29/88 Allow space between -X and string,_____________________________ when X is a string-valued option.______________________________v100 1/5/89 Fix globbing bug when \$SHELL not set;__________________________ allow spaces after -t command._________________________________v101 1/6/89 Fix problem with long (truncated) lines________________________ in tags file (thanks to Neil Dixon).___________________________v102 1/6/89 Fix bug with E@04\#@00 when no prev file;_____________________________ allow spaces after -l command._________________________________v103 3/14/89 Add -N, -f and -? options. Add z and w________________________ commands. Add %L for prompt strings.__________________________v104 3/16/89 Added EDITPROTO._______________________________________________v105 3/20/89 Fix bug in find_linenum which cached___________________________ incorrectly on long lines._____________________________________v106 3/31/89 Added -k option and multiple lesskey _____________________ files._________________________________________________________v107 4/27/89 Add 8-bit char support and -g option.__________________________ Split option code into 3 files.________________________________v108 5/5/89 Allocate position table dynamically _____________________ (thanks to Paul Eggert); change % command______________________ from "percent" to vi-style brace finder._______________________v109 5/10/89 Added ESC-% command, split prim.c._____________________________v110 5/24/89 Fixed bug in + option; fixed repaint bug_______________________ under Sun windows (thanks to Paul Eggert)._____________________v111 5/25/89 Generalized @04\#@00 and % expansion; use ____________________________ calloc for some error messages.________________________________v112 5/30/89 Get rid of ESC-%, add {}()[] commands._________________________:#______________________________________________________________________________ +47 = if -F and screen is resized; fix memcpy usage._________________v588 5/27/21 Fix release.___________________________________________________v589 5/29/21 Copyright & build changes._____________________________________v590 6/3/21 Fix non-autoconf Makefiles.____________________________________v591 8/8/21 Use \\kB for backspace key in lesskey; add more \\k codes;_______ handle multibyte chars in prompt.______________________________v592 8/24/21 Add --status-line option; limit use of /proc kludge; add --header.____________________________________________________________________________v593 8/30/21 Add header columns, --no-number-headers._______________________v594 10/1/21 Let regex library handle caseless; add --redraw-on-quit option; add @04\#@00version to lesskey._______________________________________v595 10/12/21 Add H color type; add += to lesskey var section; ______________ add --search-options.__________________________________________v596 11/8/21 Look for lesskey in \$HOME/.config._____________________________v597 11/16/21 Fix bugs in --header.__________________________________________v598 12/6/21 Look for lesshst in \$XDG_STATE_HOME and \$HOME/.local/state.____v599 12/28/21 Defer moving to lower left in some cases; _____________________ suppress TAB expansion in some cases.__________________________v600 1/7/22 Use /dev/tty if cannot open ttyname()._________________________v601 1/31/22 Add --exit-follow-on-close option._____________________________v602 3/1/22 Doc changes.___________________________________________________v603 3/14/22 Fix --header.__________________________________________________v604 5/14/22 Fix termlib detection; fix non-ASCII input on Windows._________v605 6/14/22 Update version number._________________________________________v606 7/17/22 Fix bug with multibyte chars and --incsearch;__________________ escape filenames in LESSCLOSE; fix bin_file overrun.___________v607 7/19/22 Update Unicode tables._________________________________________v608 7/22/22 Fix highlighting on colored text boundaries.___________________v609 Add LESSUTFCHARDEF; fix overstrike color bug;__________________ fix procfs bug; fix signal race._______________________________*/____________________________________________________________________________________________________________________________________________________________char version[] = "609x";_______________________________________________________@04(END)@00#__________________________________________________________________________ +3d = if -F and screen is resized; fix memcpy usage._________________v588 5/27/21 Fix release.___________________________________________________v589 5/29/21 Copyright & build changes._____________________________________v590 6/3/21 Fix non-autoconf Makefiles.____________________________________v591 8/8/21 Use \\kB for backspace key in lesskey; add more \\k codes;_______ handle multibyte chars in prompt.______________________________v592 8/24/21 Add --status-line option; limit use of /proc kludge; add --header.____________________________________________________________________________v593 8/30/21 Add header columns, --no-number-headers._______________________v594 10/1/21 Let regex library handle caseless; add --redraw-on-quit option; add @04\#@00version to lesskey._______________________________________v595 10/12/21 Add H color type; add += to lesskey var section; ______________ add --search-options.__________________________________________v596 11/8/21 Look for lesskey in \$HOME/.config._____________________________v597 11/16/21 Fix bugs in --header.__________________________________________v598 12/6/21 Look for lesshst in \$XDG_STATE_HOME and \$HOME/.local/state.____v599 12/28/21 Defer moving to lower left in some cases; _____________________ suppress TAB expansion in some cases.__________________________v600 1/7/22 Use /dev/tty if cannot open ttyname()._________________________v601 1/31/22 Add --exit-follow-on-close option._____________________________v602 3/1/22 Doc changes.___________________________________________________v603 3/14/22 Fix --header.__________________________________________________v604 5/14/22 Fix termlib detection; fix non-ASCII input on Windows._________v605 6/14/22 Update version number._________________________________________v606 7/17/22 Fix bug with multibyte chars and --incsearch;__________________ escape filenames in LESSCLOSE; fix bin_file overrun.___________v607 7/19/22 Update Unicode tables._________________________________________v608 7/22/22 Fix highlighting on colored text boundaries.___________________v609 Add LESSUTFCHARDEF; fix overstrike color bug;__________________ fix procfs bug; fix signal race._______________________________*/____________________________________________________________________________________________________________________________________________________________char version[] = "609x";_______________________________________________________@04version.c lines 930-961/961 byte 50808/50808 (END) (press RETURN)@00#_____________ +a = if -F and screen is resized; fix memcpy usage._________________v588 5/27/21 Fix release.___________________________________________________v589 5/29/21 Copyright & build changes._____________________________________v590 6/3/21 Fix non-autoconf Makefiles.____________________________________v591 8/8/21 Use \\kB for backspace key in lesskey; add more \\k codes;_______ handle multibyte chars in prompt.______________________________v592 8/24/21 Add --status-line option; limit use of /proc kludge; add --header.____________________________________________________________________________v593 8/30/21 Add header columns, --no-number-headers._______________________v594 10/1/21 Let regex library handle caseless; add --redraw-on-quit option; add @04\#@00version to lesskey._______________________________________v595 10/12/21 Add H color type; add += to lesskey var section; ______________ add --search-options.__________________________________________v596 11/8/21 Look for lesskey in \$HOME/.config._____________________________v597 11/16/21 Fix bugs in --header.__________________________________________v598 12/6/21 Look for lesshst in \$XDG_STATE_HOME and \$HOME/.local/state.____v599 12/28/21 Defer moving to lower left in some cases; _____________________ suppress TAB expansion in some cases.__________________________v600 1/7/22 Use /dev/tty if cannot open ttyname()._________________________v601 1/31/22 Add --exit-follow-on-close option._____________________________v602 3/1/22 Doc changes.___________________________________________________v603 3/14/22 Fix --header.__________________________________________________v604 5/14/22 Fix termlib detection; fix non-ASCII input on Windows._________v605 6/14/22 Update version number._________________________________________v606 7/17/22 Fix bug with multibyte chars and --incsearch;__________________ escape filenames in LESSCLOSE; fix bin_file overrun.___________v607 7/19/22 Update Unicode tables._________________________________________v608 7/22/22 Fix highlighting on colored text boundaries.___________________v609 Add LESSUTFCHARDEF; fix overstrike color bug;__________________ fix procfs bug; fix signal race._______________________________*/____________________________________________________________________________________________________________________________________________________________char version[] = "609x";_______________________________________________________@04(END)@00#__________________________________________________________________________ +71 Q less-668/lesstest/ltview0000755060175306017530000004343414700607714014515 0ustar marknmarkn#!/usr/bin/env perl use strict; use Getopt::Std; use IO::Stty; my $usage = "usage: ltview [-cfr] [-w wide.uni] lt-file [error-file]\n" . " -c = use color\n" . " -f = use lt-file even if it does not fit on screen\n" . " -r = don't put terminal in raw mode\n" . " -w = list of Unicode wide chars\n" . " error-file is output from \"lesstest -D\"\n"; my $help = <<_EOF_; Commands: [N]l Go to (N-th) next lt state. [N]h Go to (N-th) previous lt state. [N]g Go to first (or N-th) lt state. [N]G Go to last (or N-th) lt state. j Go to next error file state. k Go to previous error file state. e Go to lt state corresponding to error file state. = Print info about lt file and error file. ? Display this help. _EOF_ my $ATTR_BOLD = (1<<0); my $ATTR_UNDERLINE = (1<<1); my $ATTR_STANDOUT = (1<<2); my $ATTR_BLINK = (1<<3); my $NULL_COLOR = 0xFF; my $DIFF_ATTR_ON = "\e[101m"; # blink my $DIFF_ATTR_OFF = "\e[m"; my %spec_chars = ( ord("\b") => '\\b', ord("\e") => 'ESC', ord("\n") => '\\n', ord("\r") => '\\r', ); my @show_expects = ('', 'expected', 'got'); my %wides; my %opt; # --------------------------------------------------------------------- exit (main() ? 0 : 1); sub main { die $usage if not getopts('cfrw:', \%opt); my $ltfile = shift @ARGV; my $errfile = shift @ARGV; my $wide_file = ($opt{w} or "../wide.uni"); die $usage if not defined $ltfile or @ARGV; parse_wides($wide_file); my $lt = parse_ltfile($ltfile); return 0 if not $lt; my $lt_lines = $lt->{lines} + 2; # 2 lines for prompt at bottom of screen if (not $opt{f} and ($lt_lines > $ENV{LINES} or $lt->{columns} > $ENV{COLUMNS})) { print "Screen size used by $ltfile ($lt->{columns}x$lt_lines) does not fit on your screen ($ENV{COLUMNS}x$ENV{LINES}).\n"; print "Use -f to view it anyway (but it won't look correct).\n"; return 0; } my $errf = defined $errfile ? parse_errfile($errfile) : undef; binmode(STDOUT, ":encoding(UTF-8)"); run($lt, $errf); return 1; } # --------------------------------------------------------------------- sub run { my ($lt, $errf) = @_; return if not @{$lt->{states}}; my $omode = IO::Stty::stty(\*STDIN, '-g'); IO::Stty::stty(\*STDIN, ('raw','-echo')) unless $opt{r}; run_loop($lt, $errf); tgoto_bot($lt); IO::Stty::stty(\*STDIN, $omode) unless $opt{r}; } # --------------------------------------------------------------------- sub run_loop { my ($lt, $errf) = @_; my $param = ''; my %running = ( 'sindex' => 0, 'show_expect' => 0 ); for (;;) { display_running($lt, $errf, $param, \%running); my $ch = getc(); $ch = substr($ch,0,1); last if $ch eq 'q'; if ($ch ge '0' and $ch le '9') { $param .= $ch; } else { run_cmd($lt, $errf, $ch, $param, \%running); $param = ''; } } } # --------------------------------------------------------------------- sub display_running { my ($lt, $errf, $param, $running) = @_; my $states = $lt->{states}; my ($prompt1, $prompt2, $prompt3, $img, $cmp_img); my $filename; my $failure = 0; if ($running->{show_expect} > 0) { my $exp = $show_expects[$running->{show_expect}]; $prompt1 = sprintf "[%d/%d] ", $errf->{fail_index}, scalar @$states; $prompt2 = "($exp)"; $prompt3 = sprintf " next: %s", prchar($errf->{fail_char}); $filename = $errf->{filename}; $img = $errf->{$exp}; $cmp_img = ${$$states[$errf->{fail_index}]}{img}; } else { $prompt1 = sprintf "[%d/%d] ", $running->{sindex}, scalar @$states; $prompt2 = "(stored)"; $prompt3 = sprintf " next: %s", prchar(${$$states[$running->{sindex}]}{keystroke}); $filename = $lt->{filename}; $img = ${$$states[$running->{sindex}]}{img}; $failure = ($errf and $running->{sindex} == $errf->{fail_index}); } display($img, $prompt1, $prompt2, $prompt3, $filename, $failure, $lt, $cmp_img); } # --------------------------------------------------------------------- sub prchar { my ($ich) = @_; my $spec = $spec_chars{$ich}; return "'$spec'" if $spec; return ($ich >= 0x20 and $ich < 0x7f) ? sprintf("'%c'", $ich) : sprintf("(%02x)", $ich); } # --------------------------------------------------------------------- sub run_cmd { my ($lt, $errf, $ch, $num, $running) = @_; my $states = $lt->{states}; $num = 0 if $num !~ /^\d+$/ or $num <= 0; if ($ch eq '?') { tgoto_bot($lt); print cr("\n" . $usage . $help); press_to_continue(); } elsif ($ch eq '=') { tgoto_bot($lt); print_ltfile_info($lt); print_errfile_info($errf); press_to_continue(); } elsif ($ch eq 'l') { $running->{show_expect} = 0; $num = 1 if $num == 0; $running->{sindex} = check_sindex($running->{sindex} + $num, $states); } elsif ($ch eq 'h') { $running->{show_expect} = 0; $num = 1 if $num == 0; $running->{sindex} = check_sindex($running->{sindex} - $num, $states); } elsif ($ch eq 'g' or $ch eq 'G') { $running->{show_expect} = 0; $num = @$states-1 if $ch eq 'G' and $num == 0; $running->{sindex} = check_sindex($num, $states); } elsif ($ch eq 'e') { if (not $errf) { beep(); } else { $running->{show_expect} = 0; $running->{sindex} = check_sindex($errf->{fail_index}, $states); } } elsif ($ch eq 'j') { if (not $errf) { beep(); } else { if (++$running->{show_expect} >= @show_expects) { $running->{show_expect} = 0; } } } elsif ($ch eq 'k') { if (not $errf) { beep(); } else { if (--$running->{show_expect} < 0) { $running->{show_expect} = @show_expects-1; } } } else { beep(); } } # --------------------------------------------------------------------- sub check_sindex { my ($sindex, $states) = @_; if ($sindex < 0) { beep(); $sindex = 0; } if ($sindex >= @$states) { beep(); $sindex = @$states-1; } return $sindex; } # --------------------------------------------------------------------- sub display { my ($img, $prompt1, $prompt2, $prompt3, $filename, $failure, $lt, $cmp_img) = @_; my $x = 0; my $y = 0; my $cursor_x = 0; my $cursor_y = 0; my $literal = 0; my $curr_attr = 0; my $curr_fg_color = $NULL_COLOR; my $curr_bg_color = $NULL_COLOR; tgoto(0,0); tclear(); for (my $cpos = 0; $cpos < length $img; ) { my $clen = utf8_len(substr($img, $cpos, 1)); my $ich = utf8_char(substr($img, $cpos, $clen)); my $cmp_ich = $cmp_img ? utf8_char(substr($cmp_img, $cpos, $clen)) : $ich; $cpos += $clen; if (not $literal) { if ($ich eq ord '\\') { # escape $literal = 1; next; } if ($ich eq ord '@') { # attr $curr_attr = hex substr($img, $cpos, 2); display_attr_color($curr_attr, $curr_fg_color, $curr_bg_color); $cpos += 2; next; } if ($ich eq ord '$') { # fg color $curr_fg_color = hex substr($img, $cpos, 2); display_attr_color($curr_attr, $curr_fg_color, $curr_bg_color); $cpos += 2; next; } if ($ich eq ord '!') { # bg color $curr_bg_color = hex substr($img, $cpos, 2); display_attr_color($curr_attr, $curr_fg_color, $curr_bg_color); $cpos += 2; next; } if ($ich eq ord '#') { # cursor $cursor_x = $x; $cursor_y = $y; next; } } $literal = 0; if ($ich > 0) { my $diff = ($cmp_ich != $ich); print $DIFF_ATTR_ON if $diff; print chr($ich); print $DIFF_ATTR_OFF if $diff; $x += cwidth($ich); if ($x >= $lt->{columns}) { print "\r\n"; $x = 0; ++$y; } } } my $sp = $lt->{columns} - length($prompt1) - length($prompt2) - length($prompt3) - length($filename) - 2; $sp = 1 if $sp < 1; my $p2 = ($prompt2 =~ /got/ or $failure) ? "go" : ($prompt2 =~ /stored/) ? "st" : "ex"; print "\r\n ", attr_string("so"), $prompt1, attr_string(), attr_string($p2), $prompt2, attr_string(), attr_string("so"), $prompt3, attr_string(), ' ' x $sp, attr_string("so"), $filename, attr_string(); tgoto($cursor_x, $cursor_y); } # --------------------------------------------------------------------- sub parse_wides { my ($wide_file) = @_; my $wf; if (not open $wf, '<', $wide_file) { print ERR "cannot open $wide_file: $!\n"; return 0; } while (<$wf>) { if (/^\s*\{\s*0x([\da-f]+)\s*,\s*0x([\da-f]+)/i) { my $lo = hex $1; my $hi = hex $2; for (my $v = $lo; $v <= $hi; ++$v) { $wides{$v} = 1; } } } close $wf; return 1; } # --------------------------------------------------------------------- sub cwidth { my ($ich) = @_; return 2 if $wides{$ich}; return 1; } # --------------------------------------------------------------------- sub display_attr_color { my ($attr, $fg_color, $bg_color) = @_; print "\e[m"; print "\e[${fg_color}m" if ($fg_color != $NULL_COLOR); print "\e[${bg_color}m" if ($bg_color != $NULL_COLOR); print "\e[4m" if ($attr & $ATTR_UNDERLINE); print "\e[1m" if ($attr & $ATTR_BOLD); print "\e[5m" if ($attr & $ATTR_BLINK); print "\e[7m" if ($attr & $ATTR_STANDOUT); } sub attr_string { my ($mode) = @_; return "\e[m" if not $mode; return ($opt{c} ? "\e[100;97;1m" : "\e[7;1m") if $mode eq 'so'; # standout: black on cyan return ($opt{c} ? "\e[97;44;1m" : "\e[7;1m") if $mode eq 'st'; # stored white on blue return ($opt{c} ? "\e[102;30;1m" : "\e[7;1m") if $mode eq 'ex'; # expected: black on green return ($opt{c} ? "\e[101;97;1m" : "\e[7;1m") if $mode eq 'go'; # got: white on red return ""; } sub tgoto { my ($x, $y) = @_; printf "\e[%d;%dH", $y+1, $x+1; } sub tgoto_bot { my ($lt) = @_; tgoto(0, $lt->{lines}+2); print "\r\n"; } sub tclear { print "\e[J"; } sub beep { print "\7"; } sub cr { my ($s) = @_; $s =~ s|\n|\r\n|gs; return $s; } sub press_to_continue { print cr("\nPress any key to continue. "); getc(); } # --------------------------------------------------------------------- sub parse_ltfile { my ($file) = @_; my $fd; if (not open $fd, '<', $file) { print STDERR "cannot open $file: $!\n"; return undef; } my @states; my %lt = ( 'filename' => $file, 'states' => \@states ); my $filetype = ''; my $linenum = 0; while (<$fd>) { ++$linenum; chomp; if ($linenum > 1 and $filetype ne 'lesstest') { print STDERR "$file is not an lt file\n"; return undef; } my $type = substr $_,0,1; next if not defined $type; if ($type eq '!') { # file header if (/^!([^!]+)!/) { $filetype = $1; } } elsif ($type eq 'A') { # less cmd line parameters } elsif ($type eq 'E') { # environment variable parse_env($_, \%lt); } elsif ($type eq 'F') { # text file parse_filedesc($_, $fd, \%lt); } elsif ($type eq 'Q') { # end of test last; } elsif ($type eq 'R') { # end of test header; start run } elsif ($type eq 'T') { # test header } elsif ($type eq '=') { # board image parse_img($_, \%lt); } elsif ($type eq '+') { # keystroke parse_keystroke($_, \%lt); } } close $fd; if (not $lt{lines} or not $lt{columns}) { print STDERR "$file: missing geometry\n"; return undef; } return \%lt; } # --------------------------------------------------------------------- sub parse_env { my ($line, $lt) = @_; my ($ename, $evalue) = /^E \s* "(\w*)" \s* "([^"]*)" /x; if ($ename eq "COLUMNS") { $lt->{columns} = $evalue; } elsif ($ename eq "LINES") { $lt->{lines} = $evalue; } return 1; } # --------------------------------------------------------------------- sub parse_filedesc { my ($line, $fd, $lt) = @_; my ($filename, $filesize) = $line =~ /^F \s* "([^"]*)" \s* (\d+)/x; my $filedata; my $nread = read $fd, $filedata, $filesize; return 0 if not $nread or $nread != $filesize; $lt->{filesize} = $filesize; return 1; } # --------------------------------------------------------------------- sub parse_img { my ($line, $lt) = @_; my $img = substr $line, 1; my %state = ( 'img'=>$img ); my $states = $lt->{states}; if (@$states) { my $last_state = ${$states}[@$states-1]; if (not $last_state->{img} or not $last_state->{keystroke}) { print STDERR "incomplete state image ignored\n"; ## ?? pop @$states; } } push @$states, \%state; return 1; } # --------------------------------------------------------------------- sub parse_errfile { my ($errfile) = @_; my $ef; if (not open $ef, '<', $errfile) { print STDERR "cannot open $errfile: $!\n"; return undef; } my %errf = ( 'filename' => $errfile ); my $expect; my $datalines = 0; my $linenum = 0; while (<$ef>) { ++$linenum; chomp; if (0) { } elsif (/^INFO: mismatch: expect:/) { $expect = 'expected'; $datalines = 1; } elsif (/^INFO: got:/) { $expect = 'got'; $datalines = 1; } elsif (/^TEST\s+([^\s]+)/) { $errf{name} = $1; } elsif (/^DIFF\s+([^\s]+) on cmd #(\d+) \(.\s+(\w+)\s*\)/) { $errf{fail_index} = $2; # FIXME why not $2-1? $errf{fail_char} = hex $3; $datalines = 0; } elsif (/^FAIL:.*\((\d+) step/) { $errf{steps} = $1; } elsif (/^ERR\s+(.*)/) { $errf{msg} = $1; } elsif (/^RAN\s+(\d+) tests with (\d+) error/) { $errf{tests} = $1; $errf{errors} = $2; } elsif (/^DATA: (.*)/) { if ($datalines) { $errf{$expect} .= parse_errline($1); } else { print STDERR "$errfile:$linenum: unexpected data line\n"; } } else { print STDERR "$errfile:$linenum: unrecognized line\n"; } } close $ef; if (not defined $errf{expected} or not defined $errf{got} or not defined $errf{fail_index}) { print STDERR "incomplete error file $errfile ignored\n"; return undef; } return \%errf; } # --------------------------------------------------------------------- sub parse_errline { my ($line) = @_; $line =~ s/<([\da-f]+)>/utf8_str($1)/eig; return $line; } # --------------------------------------------------------------------- sub print_ltfile_info { my ($lt) = @_; printf "\r\nLT file:\r\n"; printf " name %s\r\n", $lt->{filename}; printf " size %d\r\n", $lt->{filesize}; printf " states %d\r\n", scalar @{$lt->{states}}; printf " lines %d\r\n", $lt->{lines}; printf " columns %d\r\n", $lt->{columns}; } # --------------------------------------------------------------------- sub print_errfile_info { my ($errf) = @_; return if not $errf; printf "\r\nError file:\r\n"; printf " name %s\r\n", $errf->{name}; printf " tests %d\r\n", $errf->{tests}; printf " errors %d\r\n", $errf->{errors}; printf " steps %d\r\n", $errf->{steps}; printf " cmd# %d\r\n", $errf->{fail_index}; my $ch = $errf->{fail_char}; printf " char 0x%02x", $ch; printf " (%s)", chr($ch) if $ch >= 0x20 and $ch < 0x7f; printf "\r\n"; printf " msg %s\r\n", $errf->{msg}; } # --------------------------------------------------------------------- sub parse_keystroke { my ($line, $lt) = @_; my ($hex) = $line =~ /^\+ \s* (\w+)/x; my $states = $lt->{states}; return 0 if not @$states; ${$$states[@$states-1]}{keystroke} = hex $hex; return 1; } # --------------------------------------------------------------------- sub utf8_len { my ($ch) = @_; my $ich = ord $ch; return 2 if ($ich & 0xE0) == 0xC0; return 3 if ($ich & 0xF0) == 0xE0; return 4 if ($ich & 0xF8) == 0xF0; return 1; } # --------------------------------------------------------------------- sub utf8_char { my ($ch) = @_; my @ich; for (my $i = 0; $i < length($ch); ++$i) { push @ich, ord substr($ch, $i, 1); } if (@ich == 2) { return (($ich[0] & 0x1F) << 6) | ($ich[1] & 0x3F); } if (@ich == 3) { return (($ich[0] & 0x0F) << 12) | (($ich[1] & 0x3F) << 6) | ($ich[2] & 0x3F); } if (@ich == 4) { return (($ich[0] & 0x07) << 18) | (($ich[1] & 0x3F) << 12) | (($ich[2] & 0x3F) << 6) | ($ich[3] & 0x3F); } die if @ich != 1; return $ich[0]; } # --------------------------------------------------------------------- sub utf8_str { my ($xch) = @_; my $ich = hex $xch; if ($ich < 0x80) { return chr($ich); } if ($ich < 0x800) { return chr(0xC0 | (($ich >> 6) & 0x1F)) . chr(0x80 | ($ich & 0x3F)); } if ($ich < 0x10000) { return chr(0xE0 | (($ich >> 12) & 0x0F)) . chr(0x80 | (($ich >> 6) & 0x3F)) . chr(0x80 | ($ich & 0x3F)); } return chr(0xF0 | (($ich >> 18) & 0x07)) . chr(0x80 | (($ich >> 12) & 0x3F)) . chr(0x80 | (($ich >> 6) & 0x3F)) . chr(0x80 | ($ich & 0x3F)); } less-668/lesstest/lt_screen.c0000644060175306017530000003212014700607675015373 0ustar marknmarkn#include #include #include #include #include #include #include "lt_types.h" #include "wchar.h" static const char version[] = "lt_screen|v=1"; #define ERROR_CHAR ' ' #define WIDESHADOW_CHAR ((wchar)0) static char const* osc8_start[] = { "\033]8;", NULL }; static char const* osc8_end[] = { "\033\\", "\7", NULL }; #define NUM_LASTCH 4 // must be >= strlen(osc8_*[*]) static wchar lastch[NUM_LASTCH]; static int lastch_curr = 0; int usage(void) { fprintf(stderr, "usage: lt_screen [-w width] [-h height] [-qv]\n"); return 0; } // ------------------------------------------------------------------ #define MAX_PARAMS 3 typedef struct ScreenChar { wchar ch; Attr attr; Color fg_color; Color bg_color; } ScreenChar; typedef struct ScreenState { ScreenChar* chars; int w; int h; int cx; int cy; Attr curr_attr; Color curr_fg_color; Color curr_bg_color; int param_top; int params[MAX_PARAMS+1]; int in_esc; int in_osc8; } ScreenState; static ScreenState screen; static int ttyin; // input text and control sequences static int ttyout; // output for screen dump static int quiet = 0; static int verbose = 0; // ------------------------------------------------------------------ // Initialize ScreenState. static void screen_init(void) { screen.w = 80; screen.h = 24; screen.cx = 0; screen.cy = 0; screen.in_esc = 0; screen.in_osc8 = 0; screen.curr_attr = 0; screen.curr_fg_color = screen.curr_bg_color = NULL_COLOR; screen.param_top = -1; screen.params[0] = 0; } static int num_params(void) { return screen.param_top+1; } static void param_print(void) { int i; fprintf(stderr, "("); for (i = 0; i < num_params(); ++i) fprintf(stderr, "%d ", screen.params[i]); fprintf(stderr, ")"); } static void param_clear(void) { screen.param_top = -1; } static void param_push(int v) { if (screen.param_top >= (int) countof(screen.params)-1) { param_clear(); return; } screen.params[++screen.param_top] = v; } static int param_pop(void){ if (num_params() == 0) return -1; // missing param return screen.params[screen.param_top--]; } static int screen_x(int x) { if (x < 0) x = 0; if (x >= screen.w) x = screen.w-1; return x; } static int screen_y(int y) { if (y < 0) y = 0; if (y >= screen.h) y = screen.h-1; return y; } // Return the char at a given screen position. static ScreenChar* screen_char(int x, int y) { x = screen_x(x); y = screen_y(y); return &screen.chars[y * screen.w + x]; } // Step the cursor after printing a char. static int screen_incr(int* px, int* py) { if (++(*px) >= screen.w) { *px = 0; if (++(*py) >= screen.h) { *py = 0; return 0; } } return 1; } // Set the value, attributes and colors of a char on the screen. static void screen_char_set(int x, int y, wchar ch, Attr attr, Color fg_color, Color bg_color) { ScreenChar* sc = screen_char(x, y); sc->ch = ch; sc->attr = attr; sc->fg_color = fg_color; sc->bg_color = bg_color; } static int screen_clear(int x, int y, int count) { while (count-- > 0) { screen_char_set(x, y, '_', 0, NULL_COLOR, NULL_COLOR); screen_incr(&x, &y); } return 1; } static void store_hex(byte** pp, int val) { char hexchar[] = "0123456789ABCDEF"; *(*pp)++ = hexchar[(val >> 4) & 0xf]; *(*pp)++ = hexchar[val & 0xf]; } // Print an encoded image of the current screen to ttyout. // The LTS_CHAR_* metachars encode changes of color and attribute. static int screen_read(int x, int y, int count) { Attr attr = 0; int fg_color = NULL_COLOR; int bg_color = NULL_COLOR; while (count-- > 0) { byte buf[32]; byte* bufp = buf; ScreenChar* sc = screen_char(x, y); if (sc->attr != attr) { attr = sc->attr; *bufp++ = LTS_CHAR_ATTR; store_hex(&bufp, attr); } if (sc->fg_color != fg_color) { fg_color = sc->fg_color; *bufp++ = LTS_CHAR_FG_COLOR; store_hex(&bufp, fg_color); } if (sc->bg_color != bg_color) { bg_color = sc->bg_color; *bufp++ = LTS_CHAR_BG_COLOR; store_hex(&bufp, bg_color); } if (x == screen.cx && y == screen.cy) *bufp++ = LTS_CHAR_CURSOR; if (sc->ch == '\\' || sc->ch == LTS_CHAR_ATTR || sc->ch == LTS_CHAR_FG_COLOR || sc->ch == LTS_CHAR_BG_COLOR || sc->ch == LTS_CHAR_CURSOR) *bufp++ = '\\'; store_wchar(&bufp, sc->ch); write(ttyout, buf, bufp-buf); screen_incr(&x, &y); } write(ttyout, "\n", 1); return 1; } static int screen_move(int x, int y) { screen.cx = screen_x(x); screen.cy = screen_y(y); return 1; } static int screen_cr(void) { screen.cx = 0; return 1; } static int screen_bs(void) { if (screen.cx <= 0) return 0; --screen.cx; return 1; } static int screen_scroll(void) { int len = screen.w * (screen.h-1); memmove(screen_char(0,0), screen_char(0,1), len * sizeof(ScreenChar)); screen_clear(0, screen.h-1, screen.w); return 1; } static int screen_rscroll(void) { int len = screen.w * (screen.h-1); memmove(screen_char(0,1), screen_char(0,0), len * sizeof(ScreenChar)); screen_clear(0, 0, screen.w); return 1; } static int screen_set_attr(int attr) { screen.curr_attr |= attr; if (verbose) fprintf(stderr, "[%d,%d] set_attr(%d)=%d\n", screen.cx, screen.cy, attr, screen.curr_attr); return 1; } static int screen_clear_attr(int attr) { screen.curr_attr &= ~attr; if (verbose) fprintf(stderr, "[%d,%d] clr_attr(%d)=%d\n", screen.cx, screen.cy, attr, screen.curr_attr); return 1; } // ------------------------------------------------------------------ // lt_screen supports certain ANSI color values. // This simplifies testing SGR sequences with less -R // compared to inventing custom color sequences. static int screen_set_color(int color) { int ret = 0; switch (color) { case 1: ret = screen_set_attr(ATTR_BOLD); break; case 4: ret = screen_set_attr(ATTR_UNDERLINE); break; case 5: case 6: ret = screen_set_attr(ATTR_BLINK); break; case 7: ret = screen_set_attr(ATTR_STANDOUT); break; case 21: case 22: ret = screen_clear_attr(ATTR_BOLD); break; case 24: ret = screen_clear_attr(ATTR_UNDERLINE); break; case 25: ret = screen_clear_attr(ATTR_BLINK); break; case 27: ret = screen_clear_attr(ATTR_STANDOUT); break; // case 38: break; // case 48: break; default: if (color <= 0) { screen.curr_fg_color = screen.curr_bg_color = NULL_COLOR; screen.curr_attr = 0; ret = 1; } else if (color == 39) { screen.curr_fg_color = NULL_COLOR; ret = 1; } else if (color == 49) { screen.curr_bg_color = NULL_COLOR; ret = 1; } else if ((color >= 30 && color <= 37) || (color >= 90 && color <= 97)) { screen.curr_fg_color = color; ret = 1; } else if ((color >= 40 && color <= 47) || (color >= 100 && color <= 107)) { screen.curr_bg_color = color; ret = 1; } else { fprintf(stderr, "[%d,%d] unrecognized color %d\n", screen.cx, screen.cy, color); } if (verbose) fprintf(stderr, "[%d,%d] set_color(%d)=%d/%d\n", screen.cx, screen.cy, color, screen.curr_fg_color, screen.curr_bg_color); break; } return ret; } // ------------------------------------------------------------------ static void beep(void) { if (!quiet) fprintf(stderr, "\7"); } // Execute an escape sequence ending with a given char. static int exec_esc(wchar ch) { int x, y, count; if (verbose) { fprintf(stderr, "exec ESC-%c ", (char)ch); param_print(); fprintf(stderr, "\n"); } switch (ch) { case 'A': // clear all return screen_clear(0, 0, screen.w * screen.h); case 'L': // clear from cursor to end of line return screen_clear(screen.cx, screen.cy, screen.w - screen.cx); case 'S': // clear from cursor to end of screen return screen_clear(screen.cx, screen.cy, (screen.w - screen.cx) + (screen.h - screen.cy -1) * screen.w); case 'R': // read N3 chars starting at (N1,N2) count = param_pop(); y = param_pop(); x = param_pop(); if (x < 0) x = 0; if (y < 0) y = 0; if (count < 0) count = 0; return screen_read(x, y, count); case 'j': // jump cursor to (N1,N2) y = param_pop(); x = param_pop(); return screen_move(x, y); case 'g': // visual bell return 0; case 'h': // cursor home return screen_move(0, 0); case 'l': // cursor lower left return screen_move(0, screen.h-1); case 'r': // reverse scroll return screen_rscroll(); case '<': // cursor left to start of line return screen_cr(); case 'e': // exit bold return screen_clear_attr(ATTR_BOLD); case 'b': // enter blink return screen_set_attr(ATTR_BLINK); case 'c': // exit blink return screen_clear_attr(ATTR_BLINK); case 'm': // SGR (Select Graphics Rendition) if (num_params() == 0) { screen_set_color(-1); } else { while (num_params() > 0) screen_set_color(param_pop()); } return 0; case '?': // print version string write(ttyout, version, strlen(version)); return 1; default: return 0; } } // Print a char on the screen. // Handles cursor movement and scrolling. static int add_char(wchar ch) { //if (verbose) fprintf(stderr, "add (%c) %lx at %d,%d\n", (char)ch, (long)ch, screen.cx, screen.cy); screen_char_set(screen.cx, screen.cy, ch, screen.curr_attr, screen.curr_fg_color, screen.curr_bg_color); int fits = 1; int zero_width = (is_composing_char(ch) || (screen.cx > 0 && is_combining_char(screen_char(screen.cx-1,screen.cy)->ch, ch))); if (!zero_width) { fits = screen_incr(&screen.cx, &screen.cy); if (fits) { if (is_wide_char(ch)) { // The "shadow" is the second column used by a wide char. screen_char_set(screen.cx, screen.cy, WIDESHADOW_CHAR, 0, NULL_COLOR, NULL_COLOR); fits = screen_incr(&screen.cx, &screen.cy); } if (screen_char(screen.cx, screen.cy)->ch == WIDESHADOW_CHAR) { // We overwrote the first half of a wide character. // Change the orphaned shadow to an error char. screen_char_set(screen.cx, screen.cy, ERROR_CHAR, screen.curr_attr, NULL_COLOR, NULL_COLOR); } } } if (!fits) { // Wrap at bottom of screen = scroll screen.cx = 0; screen.cy = screen.h-1; return screen_scroll(); } return 1; } // Remember the last few chars sent to the screen. static void add_last(wchar ch) { lastch[lastch_curr++] = ch; if (lastch_curr >= NUM_LASTCH) lastch_curr = 0; } // Do the last entered characters match a string? static int last_matches_str(char const* str) { int ci = lastch_curr; int si; for (si = strlen(str)-1; si >= 0; --si) { ci = (ci > 0) ? ci-1 : NUM_LASTCH-1; if (str[si] != lastch[ci]) return 0; } return 1; } // Do the last entered characters match any one of a list of strings? static int last_matches(const char* const* tbl) { int ti; for (ti = 0; tbl[ti] != NULL; ++ti) { if (last_matches_str(tbl[ti])) return 1; } return 0; } // Handle a char sent to the screen while it is receiving an escape sequence. static int process_esc(wchar ch) { int ok = 1; if (screen.in_osc8) { if (last_matches(osc8_end)) { screen.in_osc8 = screen.in_esc = 0; } else { // Discard everything between osc8_start and osc8_end. } } else if (last_matches(osc8_start)) { param_pop(); // pop the '8' screen.in_osc8 = 1; } else if (ch >= '0' && ch <= '9') { int d = (num_params() == 0) ? 0 : screen.params[screen.param_top--]; param_push(10 * d + ch - '0'); } else if (ch == ';') { param_push(0); } else if (ch == '[' || ch == ']') { ; // Ignore ANSI marker } else { // end of escape sequence screen.in_esc = 0; ok = exec_esc(ch); param_clear(); } return ok; } // Handle a char sent to the screen. // Normally it is just printed, but some control chars are handled specially. static int process_char(wchar ch) { int ok = 1; add_last(ch); if (screen.in_esc) { ok = process_esc(ch); } else if (ch == ESC) { screen.in_esc = 1; } else if (ch == '\r') { screen_cr(); } else if (ch == '\b') { screen_bs(); } else if (ch == '\n') { if (screen.cy < screen.h-1) ++screen.cy; else screen_scroll(); screen_cr(); // auto CR } else if (ch == '\7') { beep(); } else if (ch == '\t') { ok = add_char(' '); // hardware tabs not supported } else if (ch >= '\40') { // printable char ok = add_char(ch); } return ok; } // ------------------------------------------------------------------ static int setup(int argc, char** argv) { int ch; screen_init(); while ((ch = getopt(argc, argv, "h:qvw:")) != -1) { switch (ch) { case 'h': screen.h = atoi(optarg); break; case 'q': quiet = 1; break; case 'v': ++verbose; break; case 'w': screen.w = atoi(optarg); break; default: return usage(); } } int len = screen.w * screen.h; screen.chars = malloc(len * sizeof(ScreenChar)); screen_clear(0, 0, len); if (optind >= argc) { ttyin = 0; ttyout = 1; } else { ttyin = ttyout = open(argv[optind], O_RDWR); if (ttyin < 0) { fprintf(stderr, "cannot open %s\n", argv[optind]); return 0; } } return 1; } static void set_signal(int signum, void (*handler)(int)) { struct sigaction sa; sa.sa_handler = handler; sa.sa_flags = 0; sigemptyset(&sa.sa_mask); sigaction(signum, &sa, NULL); } int main(int argc, char** argv) { set_signal(SIGINT, SIG_IGN); set_signal(SIGQUIT, SIG_IGN); set_signal(SIGKILL, SIG_IGN); if (!setup(argc, argv)) return RUN_ERR; for (;;) { wchar ch = read_wchar(ttyin); //if (verbose) fprintf(stderr, "screen read %c (%lx)\n", pr_ascii(ch), ch); if (ch == 0) break; if (!process_char(ch)) beep(); } return RUN_OK; } less-668/lesstest/lt_types.h0000644060175306017530000000147714700607700015265 0ustar marknmarkn#define LESSTEST_VERSION 1 typedef unsigned long wchar; typedef unsigned char byte; typedef unsigned char Attr; typedef unsigned char Color; #define NULL_COLOR ((Color)0xff) #define ATTR_BOLD (1<<0) #define ATTR_UNDERLINE (1<<1) #define ATTR_STANDOUT (1<<2) #define ATTR_BLINK (1<<3) #define ESC '\33' #define LESS_DUMP_CHAR '\35' #define UNICODE_MAX_BYTES 4 #define MAX_SCREENBUF_SIZE (16*1024) #define RUN_OK 0 #define RUN_ERR 1 #define LTS_CHAR_ATTR '@' #define LTS_CHAR_FG_COLOR '$' #define LTS_CHAR_BG_COLOR '!' #define LTS_CHAR_CURSOR '#' #define is_ascii(ch) ((ch) >= ' ' && (ch) < 0x7f) #define pr_ascii(ch) (is_ascii(ch) ? ((char)ch) : '.') #undef countof #define countof(a) (sizeof(a)/sizeof(*a)) less-668/lesstest/Makefile0000644060175306017530000000140014700607714014700 0ustar marknmarknCC ?= gcc CFLAGS ?= -Wall -O2 LDFLAGS ?= TERMLIB = -lncurses srcdir ?= . all: lesstest lt_screen LESSTEST_SRC = display.c env.c lesstest.c parse.c pipeline.c log.c run.c term.c wchar.c LESSTEST_OBJ = $(patsubst %.c,%.o,$(LESSTEST_SRC)) lesstest: $(LESSTEST_OBJ) $(CC) $(CFLAGS) $(LDFLAGS) -o lesstest $(LESSTEST_OBJ) $(TERMLIB) $(LIBS) LT_SCREEN_SRC = lt_screen.c unicode.c wchar.c LT_SCREEN_OBJ = $(patsubst %.c,%.o,$(LT_SCREEN_SRC)) lt_screen: $(LT_SCREEN_OBJ) $(CC) $(CFLAGS) $(LDFLAGS) -o lt_screen $(LT_SCREEN_OBJ) $(LIBS) HDR = lesstest.h lt_types.h wchar.h *.o: $(HDR) echo_distfiles: @echo $(patsubst %,$(srcdir)/%,$(LESSTEST_SRC) $(LT_SCREEN_SRC) $(HDR) lt/*.lt runtest maketest extract ltview Makefile README) clean: rm -f lesstest lt_screen *.o less-668/lesstest/maketest0000755060175306017530000000357514700607712015020 0ustar marknmarkn#!/usr/bin/env perl use strict; # Create a test file. # Wrapper for lesstest, using most common options. my $usage = "usage: maketest [-o lt-file] [-l less.exe] [-s lt_screen] [-t lesstest] [-w width] [-h height] [-O lesstest-opts] [-S lt_screen-opts] [-v] textfile\n"; use Getopt::Std; exit main(); sub main { my %opt; die $usage if not getopts('h:l:o:O:s:S:t:w:v', \%opt); my $textfile = shift @ARGV; die $usage if not defined $textfile; my $lesstest = ($opt{t} or "./lesstest"); my $lt_screen = ($opt{s} or "./lt_screen"); my $less = ($opt{l} or "../obj/less"); my $lines = ($opt{h} or $ENV{LINES}-1); my $columns = ($opt{w} or $ENV{COLUMNS}-1); my $verbose = ($opt{v} or 0); my $lt_opts = opts($opt{O} or ""); my $ls_opts = opts($opt{S} or ""); my $ltfile = $opt{o}; my $linked = 0; if (not less_is_test($less)) { print "$less is not compiled to support LESSTEST\n"; my ($dir) = $less =~ m|^(.*)/[^/]*$|; print "To fix: cd $dir; make clean; make LESSTEST=1\n"; exit 1; } if ($textfile =~ m|/|) { my ($basename) = $textfile =~ m|^.*/([^/]+)$|; if (not link $textfile, $basename) { print "cannot link $textfile to $basename: $!\n"; exit 1; } $linked = 1; $textfile = $basename; } if (not defined $ltfile) { for (my $i = 0;; ++$i) { my $suffix = $i ? "-$i" : ""; $ltfile = "lt/$textfile$suffix.lt"; last if not -e $ltfile; } } $ls_opts = "-S$ls_opts" if $ls_opts; my $cmd = "LINES=$lines COLUMNS=$columns $lesstest $lt_opts $ls_opts -s '$lt_screen' -o '$ltfile' -- $less '$textfile'"; print "$cmd\n" if $verbose; my $err = system($cmd); if ($err) { unlink $ltfile; } else { print "created $ltfile\n"; } unlink $textfile if $linked; exit $err; } sub opts { my ($opts) = @_; $opts = "-$opts" if $opts =~ /^[^-]/; return $opts; } sub less_is_test { my ($less) = @_; my $ver = `$less -V`; return $ver =~ /LESSTEST/; } less-668/lesstest/parse.c0000644060175306017530000001216114700607671014526 0ustar marknmarkn#include #include "lesstest.h" extern int verbose; // Return the interior string of a quoted string. static char* parse_qstring(const char** s) { while (*(*s) == ' ') ++(*s); if (*(*s)++ != '"') return NULL; const char* start = *s; while (*(*s) != '"' && *(*s) != '\0') ++(*s); char* ret = strndup(start, (*s)-start); if (*(*s) == '"') ++(*s); return ret; } static int parse_int(const char** s) { return (int) strtol(*s, (char**)s, 0); } // Parse a quoted name and value, // and add them as env vars to the Setup environment. static int parse_env(TestSetup* setup, const char* line, int line_len) { char* name = parse_qstring(&line); char* value = parse_qstring(&line); env_addpair(&setup->env, name, value); free(name); free(value); return 1; } static int parse_command(TestSetup* setup, const char* less, const char* line, int line_len) { setup->argv = (char**) malloc(32*sizeof(const char*)); setup->argc = 1; setup->argv[0] = (char*) less; for (;;) { const char* arg = parse_qstring(&line); setup->argv[setup->argc] = (char*) arg; if (arg == NULL) break; setup->argc++; } return 1; } static int parse_textfile(TestSetup* setup, const char* line, int line_len, FILE* fd, int create_file) { const char* filename = parse_qstring(&line); if (create_file && access(filename, F_OK) == 0) { fprintf(stderr, "%s already exists\n", filename); return 0; } int fsize = parse_int(&line); int len = strlen(filename)+1; setup->textfile = malloc(len); strcpy(setup->textfile, filename); FILE* textfd = NULL; if (create_file) { textfd = fopen(setup->textfile, "w"); if (textfd == NULL) { fprintf(stderr, "cannot create %s\n", setup->textfile); return 0; } } int nread = 0; while (nread < fsize) { char buf[4096]; int chunk = fsize - nread; if (chunk > sizeof(buf)) chunk = sizeof(buf); size_t len = fread(buf, 1, chunk, fd); if (textfd != NULL) fwrite(buf, 1, len, textfd); nread += len; } if (textfd != NULL) fclose(textfd); return 1; } static TestSetup* new_test_setup(void) { TestSetup* setup = (TestSetup*) malloc(sizeof(TestSetup)); setup->textfile = NULL; setup->argv = NULL; setup->argc = 0; env_init(&setup->env); return setup; } void free_test_setup(TestSetup* setup) { if (setup->textfile != NULL) { unlink(setup->textfile); free(setup->textfile); } int i; for (i = 1; i < setup->argc; ++i) free(setup->argv[i]); free((void*)setup->argv); free(setup); } // Read a newline-terminated line from a file and store it // as a null-terminated string without the newline. int read_zline(FILE* fd, char* line, int line_len) { int nread = 0; while (nread < line_len-1) { int ch = fgetc(fd); if (ch == EOF) return -1; if (ch == '\n') break; line[nread++] = (char) ch; } line[nread] = '\0'; return nread; } // Read the header of a .lt file (up to the R line). TestSetup* read_test_setup(FILE* fd, const char* less) { TestSetup* setup = new_test_setup(); int hdr_complete = 0; while (!hdr_complete) { char line[10000]; int line_len = read_zline(fd, line, sizeof(line)); if (line_len < 0) break; if (line_len < 1) continue; switch (line[0]) { case '!': // file header break; case 'T': // test header break; case 'R': // end of test header; start run hdr_complete = 1; break; case 'E': // environment variable if (!parse_env(setup, line+1, line_len-1)) { free_test_setup(setup); return NULL; } break; case 'F': // text file if (!parse_textfile(setup, line+1, line_len-1, fd, less != NULL)) { free_test_setup(setup); return NULL; } break; case 'A': // less cmd line parameters if (less != NULL && !parse_command(setup, less, line+1, line_len-1)) { free_test_setup(setup); return NULL; } break; default: break; } } if (less != NULL && (setup->textfile == NULL || setup->argv == NULL)) { free_test_setup(setup); return NULL; } if (verbose) { fprintf(stderr, "setup: textfile %s\n", setup->textfile); print_strings("argv:", setup->argv); } return setup; } static TestDetails* new_test_details(void) { TestDetails* td = (TestDetails*) malloc(sizeof(TestDetails)); td->textfile = NULL; td->img_should = td->img_actual = NULL; td->cmd_num = 0; td->len_should = td->len_actual = 0; return td; } void free_test_details(TestDetails* td) { if (td->img_should != NULL) free(td->img_should); if (td->img_actual != NULL) free(td->img_actual); free(td); } TestDetails* read_test_details(FILE* fd) { TestDetails* td = new_test_details(); for (;;) { char line[10000]; int line_len = read_zline(fd, line, sizeof(line)); if (line_len < 0) break; if (line_len < 1) continue; char const* linep = line; switch (*linep++) { case '!': break; case 'F': td->textfile = parse_qstring(&linep); break; case 'N': td->cmd_num = parse_int(&linep); break; case '=': td->len_should = line_len-1; td->img_should = malloc(td->len_should); memcpy(td->img_should, line+1, td->len_should); break; case '<': td->len_actual = line_len-1; td->img_actual = malloc(td->len_actual); memcpy(td->img_actual, line+1, td->len_actual); break; default: break; } } return td; } less-668/lesstest/pipeline.c0000644060175306017530000001446414700607672015232 0ustar marknmarkn#include #include #include #include #include "lesstest.h" #define RD 0 #define WR 1 extern int verbose; extern char* lt_screen; extern char* lt_screen_opts; static const int run_less = 1; // Make 2 specified file descriptors be stdin and stdout. static void dup_std(int fd0, int fd1) { if (fd0 >= 0) dup2(fd0, 0); if (fd1 >= 0) dup2(fd1, 1); } static const char* basename(const char* path) { const char* slash = strrchr(path, '/'); if (slash == NULL) return path; return slash+1; } // Exec an instance of less in the current process. static void become_child_less(char* less, int argc, char* const* argv, char* const* envp, const char* tempfile, int less_in_pipe[2], int screen_in_pipe[2]) { if (verbose) fprintf(stderr, "less child: in %d, out %d, close %d,%d\n", less_in_pipe[RD], screen_in_pipe[WR], less_in_pipe[WR], screen_in_pipe[RD]); close(less_in_pipe[WR]); close(screen_in_pipe[RD]); dup_std(less_in_pipe[RD], screen_in_pipe[WR]); char** less_argv = malloc(sizeof(char*) * (argc + 6)); int less_argc = 0; less_argv[less_argc++] = less; less_argv[less_argc++] = "--tty"; less_argv[less_argc++] = "/dev/stdin"; while (--argc > 0) { char* arg = *++argv; less_argv[less_argc++] = (argc > 1 || tempfile == NULL) ? arg : (char*) tempfile; } less_argv[less_argc] = NULL; if (verbose) { print_strings("less argv", less_argv); print_strings("less envp", envp); } execve(less, less_argv, envp); fprintf(stderr, "cannot exec %s: %s\n", less, strerror(errno)); exit(1); } // Exec an instance of lt_screen in the current process. static void become_child_screen(char* lt_screen, int screen_width, int screen_height, int screen_in_pipe[2], int screen_out_pipe[2]) { if (verbose) fprintf(stderr, "screen child: in %d, out %d, close %d\n", screen_in_pipe[RD], screen_out_pipe[WR], screen_out_pipe[RD]); close(screen_out_pipe[RD]); dup_std(screen_in_pipe[RD], screen_out_pipe[WR]); char* screen_argv[10]; int screen_argc = 0; char sw[16]; char sh[16]; screen_argv[screen_argc++] = lt_screen; if (screen_width >= 0) { snprintf(sw, sizeof(sw), "%d", screen_width); screen_argv[screen_argc++] = "-w"; screen_argv[screen_argc++] = sw; } if (screen_height >= 0) { snprintf(sh, sizeof(sh), "%d", screen_height); screen_argv[screen_argc++] = "-h"; screen_argv[screen_argc++] = sh; } if (lt_screen_opts != NULL) { screen_argv[screen_argc++] = lt_screen_opts; } if (1) screen_argv[screen_argc++] = "-q"; screen_argv[screen_argc] = NULL; if (verbose) print_strings("screen argv", screen_argv); char* const screen_envp[] = { NULL }; execve(lt_screen, screen_argv, screen_envp); fprintf(stderr, "cannot exec %s: %s\n", lt_screen, strerror(errno)); exit(1); } // Create an empty LessPipeline. static LessPipeline* new_pipeline(void) { LessPipeline* pipeline = malloc(sizeof(LessPipeline)); pipeline->less_in_pipe[RD] = pipeline->less_in_pipe[WR] = -1; pipeline->screen_in_pipe[RD] = pipeline->screen_in_pipe[WR] = -1; pipeline->screen_out_pipe[RD] = pipeline->screen_out_pipe[WR] = -1; pipeline->less_in = pipeline->screen_out = -1; pipeline->tempfile = NULL; pipeline->screen_pid = 0; pipeline->screen_width = pipeline->screen_height = 0; return pipeline; } // Create a LessPipeline. LessPipeline* create_less_pipeline(char* const* argv, int argc, char* const* envp) { // If textfile contains a slash, create a temporary link from // the named text file to its basename, and run less on the link. LessPipeline* pipeline = new_pipeline(); const char* textfile = argv[argc-1]; const char* textbase = basename(textfile); if (textbase != textfile) { pipeline->tempfile = textbase; if (link(textfile, textbase) < 0) { fprintf(stderr, "cannot link %s to %s: %s\n", textfile, textbase, strerror(errno)); return NULL; } textfile = textbase; } if (pipe(pipeline->screen_in_pipe) < 0) { destroy_less_pipeline(pipeline); return NULL; } const char* w = get_envp(envp, "COLUMNS"); const char* h = get_envp(envp, "LINES"); if (w != NULL) pipeline->screen_width = atoi(w); if (h != NULL) pipeline->screen_height = atoi(h); if (verbose) fprintf(stderr, "less out pipe %d,%d\n", pipeline->screen_in_pipe[0], pipeline->screen_in_pipe[1]); if (run_less) { if (pipe(pipeline->less_in_pipe) < 0) { destroy_less_pipeline(pipeline); return 0; } if (verbose) fprintf(stderr, "less in pipe %d,%d\n", pipeline->less_in_pipe[RD], pipeline->less_in_pipe[WR]); char* less = argv[0]; if (verbose) fprintf(stderr, "testing %s on %s\n", less, textfile); pipeline->less_pid = fork(); if (pipeline->less_pid < 0) { destroy_less_pipeline(pipeline); return NULL; } if (!pipeline->less_pid) become_child_less(less, argc, argv, envp, pipeline->tempfile, pipeline->less_in_pipe, pipeline->screen_in_pipe); if (verbose) fprintf(stderr, "less child %ld\n", (long) pipeline->less_pid); close(pipeline->less_in_pipe[RD]); pipeline->less_in_pipe[RD] = -1; close(pipeline->screen_in_pipe[WR]); pipeline->screen_in_pipe[WR] = -1; } if (pipe(pipeline->screen_out_pipe) < 0) { destroy_less_pipeline(pipeline); return NULL; } if (verbose) fprintf(stderr, "screen out pipe %d,%d\n", pipeline->screen_out_pipe[RD], pipeline->screen_out_pipe[WR]); pipeline->screen_pid = fork(); if (!pipeline->screen_pid) // child: lt_screen become_child_screen(lt_screen, pipeline->screen_width, pipeline->screen_height, pipeline->screen_in_pipe, pipeline->screen_out_pipe); if (verbose) fprintf(stderr, "screen child %ld\n", (long) pipeline->screen_pid); close(pipeline->screen_out_pipe[WR]); pipeline->screen_out_pipe[WR] = -1; close(pipeline->screen_in_pipe[RD]); pipeline->screen_in_pipe[RD] = -1; pipeline->less_in = run_less ? pipeline->less_in_pipe[WR] : pipeline->screen_in_pipe[WR]; pipeline->screen_out = pipeline->screen_out_pipe[RD]; if (verbose) fprintf(stderr, "less in %d, screen out %d, pid %ld\n", pipeline->less_in, pipeline->screen_out, (long) pipeline->screen_pid); return pipeline; } void destroy_less_pipeline(LessPipeline* pipeline) { close(pipeline->less_in); close(pipeline->screen_out); close(pipeline->less_in_pipe[RD]); close(pipeline->less_in_pipe[WR]); close(pipeline->screen_in_pipe[RD]); close(pipeline->screen_in_pipe[WR]); close(pipeline->screen_out_pipe[RD]); close(pipeline->screen_out_pipe[WR]); if (pipeline->tempfile != NULL) unlink(pipeline->tempfile); free(pipeline); } less-668/lesstest/README0000644060175306017530000000512614700607715014132 0ustar marknmarknlesstest is a test suite for less. The lesstest program runs an instance of less, but less's normal tty input instead comes from a pipe leading from lesstest to less, and less's normal terminal output instead goes to a pipe leading from less to an instance of lt_screen. lt_screen simulates a terminal, but also has a separate "dump channel" which allows lesstest to read the contents of the simulated screen. +---------<---------<----------<---------<---------+ | dump channel | | | v (screen_out) | (ttyout) +------------------+ (tty) +------+ (outfd) +-------------+ | lesstest |--------------->| less |--------------->| lt_screen | +------------------+ simulated +------+ simulated +-------------+ ^ (stdin) | ^ keyboard terminal | | | | real | | | keybd v | (testfile) +------------+ +-----------+ | developer | | LT file | | (maketest) | | (runtest) | +------------+ +-----------+ lesstest runs in one of two modes: In the "maketest" mode it reads single keystrokes from the developer and sends them to less. After each keystroke it then reads the lt_screen screen contents and logs the keystroke and the resulting screen contents to a log file, called an lt file. In the "runtest" mode, lesstest reads a previously-created lt file and "replays" the session; that is, it first reads a keystroke from the lt file and sends it to less. It then reads the lt_screen screen contents and compares it to the logged screen contents from the lt file. If they differ, it reports an error. Tools: maketest creates a .lt file interactively by running an instance of less on a text file. runtest tests an instance of less against a .lt file and reports errors. ltview interactively navigates the screens in a .lt file. Optionally, it can read error messages from a failed runtest and integrate the failed screen image into the view. To diagnose a failed test, do: ./runtest -Od lt/xxx.lt > xxx.err 2>&1 ./ltview lt/xxx.lt xxx.err extract reads a .lt file and creates a copy of the text file which was originally used to create the .lt file. It can also output the keystrokes that were used to create the .lt file. remaketest creates a .lt file using the same text file and keystroke inputs that were originally used to create the .lt file. This is useful if a benign change in less output causes a test to fail. less-668/lesstest/run.c0000644060175306017530000001653114700607673014227 0ustar marknmarkn#include #include #include #include #include #include #include "lesstest.h" extern int verbose; extern int less_quit; extern int details; extern char* details_file; extern int err_only; extern TermInfo terminfo; static pid_t less_pid; static jmp_buf run_catch; static void set_signal(int signum, void (*handler)(int)) { struct sigaction sa; sa.sa_handler = handler; sa.sa_flags = 0; sigemptyset(&sa.sa_mask); sigaction(signum, &sa, NULL); } static void child_handler(int signum) { int status; pid_t child = wait(&status); if (verbose) fprintf(stderr, "child %d died, status 0x%x\n", child, status); if (child == less_pid) { if (verbose) fprintf(stderr, "less died\n"); less_quit = 1; } } static void set_signal_handlers(int set) { set_signal(SIGINT, set ? SIG_IGN : SIG_DFL); set_signal(SIGQUIT, set ? SIG_IGN : SIG_DFL); set_signal(SIGKILL, set ? SIG_IGN : SIG_DFL); set_signal(SIGPIPE, set ? SIG_IGN : SIG_DFL); set_signal(SIGCHLD, set ? child_handler : SIG_DFL); } // Send a command char to a LessPipeline. static void send_char(LessPipeline* pipeline, wchar ch) { if (verbose) fprintf(stderr, "lt.send %lx\n", ch); byte cbuf[UNICODE_MAX_BYTES]; byte* cp = cbuf; store_wchar(&cp, ch); write(pipeline->less_in, cbuf, cp-cbuf); } // Read the screen image from the lt_screen in a LessPipeline. static int read_screen(LessPipeline* pipeline, byte* buf, int buflen) { if (verbose) fprintf(stderr, "lt.gen: read screen\n"); send_char(pipeline, LESS_DUMP_CHAR); int rn = 0; for (; rn <= buflen; ++rn) { byte ch; if (read(pipeline->screen_out, &ch, 1) != 1) break; if (ch == '\n') break; if (buf != NULL) buf[rn] = ch; } return rn; } // Read screen image from a LessPipeline and display it. static void read_and_display_screen(LessPipeline* pipeline) { byte rbuf[MAX_SCREENBUF_SIZE]; int rn = read_screen(pipeline, rbuf, sizeof(rbuf)); if (rn == 0) return; printf("%s", terminfo.clear_screen); display_screen(rbuf, rn, pipeline->screen_width, pipeline->screen_height); log_screen(rbuf, rn); } // Is the screen image in a LessPipeline equal to a given buffer? static int curr_screen_match(LessPipeline* pipeline, const byte* img, int imglen, char const* textfile, int cmd_num) { byte curr[MAX_SCREENBUF_SIZE]; int currlen = read_screen(pipeline, curr, sizeof(curr)); if (currlen == imglen && memcmp(img, curr, imglen) == 0) return 1; if (details) { fprintf(stderr, "INFO: mismatch: expect:\n"); display_screen_debug(img, imglen, pipeline->screen_width, pipeline->screen_height); fprintf(stderr, "INFO: got:\n"); display_screen_debug(curr, currlen, pipeline->screen_width, pipeline->screen_height); } if (details_file != NULL) { FILE* df = fopen(details_file, "w"); if (df == NULL) { fprintf(stderr, "cannot create %s: %s\n", details_file, strerror(errno)); } else { fprintf(df, "!lesstest-details!\n"); fprintf(df, "F \"%s\"\n", textfile); fprintf(df, "N %d\n", cmd_num); fprintf(df, "=%.*s\n", imglen, img); fprintf(df, "<%.*s\n", currlen, curr); fclose(df); } } return 0; } // Read a hex character codepoint from the keyfile. static wchar read_keyfile(FILE* keyin) { char line[32]; if (fgets(line, sizeof(line), keyin) == NULL) return 0; return strtoul(line, NULL, 16); } // Run an interactive lesstest session to create an lt file. // Read individual chars from stdin and send them to a LessPipeline. // After each char, read the LessPipeline screen and display it // on the user's screen. // Also log the char and the screen image in the lt file. int run_interactive(char* const* argv, int argc, char* const* prog_envp, char const* keyfile) { setup_term(); char* const* envp = less_envp(prog_envp, 1); LessPipeline* pipeline = create_less_pipeline(argv, argc, envp); if (pipeline == NULL) return 0; less_pid = pipeline->less_pid; const char* textfile = (pipeline->tempfile != NULL) ? pipeline->tempfile : argv[argc-1]; if (!log_test_header(argv, argc, textfile)) { destroy_less_pipeline(pipeline); return 0; } set_signal_handlers(1); less_quit = 0; int ttyin = 0; // stdin FILE* keyin = NULL; if (keyfile != NULL) { keyin = fopen(keyfile, "r"); if (keyin == NULL) { fprintf(stderr, "cannot open %s\n", keyfile); return 0; } } if (keyin == NULL) raw_mode(ttyin, 1); printf("%s%s", terminfo.init_term, terminfo.enter_keypad); read_and_display_screen(pipeline); while (!less_quit) { wchar ch = keyin != NULL ? read_keyfile(keyin) : read_wchar(ttyin); if (ch == terminfo.backspace_key) ch = '\b'; if (verbose) fprintf(stderr, "tty %c (%lx)\n", pr_ascii(ch), ch); log_tty_char(ch); send_char(pipeline, ch); read_and_display_screen(pipeline); } log_test_footer(); printf("%s%s%s", terminfo.clear_screen, terminfo.exit_keypad, terminfo.deinit_term); if (keyin == NULL) raw_mode(ttyin, 0); destroy_less_pipeline(pipeline); set_signal_handlers(0); return 1; } // Run a test of less, as directed by an open lt file. // Read a logged char and screen image from the lt file. // Send the char to a LessPipeline, then read the LessPipeline screen image // and compare it to the screen image from the lt file. // Report an error if they differ. static int run_test(TestSetup* setup, FILE* testfd) { const char* setup_name = setup->argv[setup->argc-1]; //fprintf(stderr, "RUN %s\n", setup_name); LessPipeline* pipeline = create_less_pipeline(setup->argv, setup->argc, less_envp(setup->env.env_list, 0)); if (pipeline == NULL) return 0; less_quit = 0; wchar last_char = 0; int ok = 1; int cmds = 0; if (setjmp(run_catch)) { fprintf(stderr, "\nINTR test interrupted\n"); ok = 0; } else { set_signal_handlers(1); (void) read_screen(pipeline, NULL, MAX_SCREENBUF_SIZE); // wait until less is running while (!less_quit) { char line[10000]; int line_len = read_zline(testfd, line, sizeof(line)); if (line_len < 0) break; if (line_len < 1) continue; switch (line[0]) { case '+': last_char = (wchar) strtol(line+1, NULL, 16); send_char(pipeline, last_char); ++cmds; break; case '=': if (!curr_screen_match(pipeline, (byte*)line+1, line_len-1, setup->textfile, cmds)) { ok = 0; less_quit = 1; fprintf(stderr, "DIFF %s on cmd #%d (%c %lx)\n", setup_name, cmds, pr_ascii(last_char), last_char); } break; case 'Q': less_quit = 1; break; case '\n': case '!': break; default: fprintf(stderr, "unrecognized char at start of \"%s\"\n", line); return 0; } } set_signal_handlers(0); } destroy_less_pipeline(pipeline); if (!ok) printf("FAIL: %s (%d steps)\n", setup_name, cmds); else if (!err_only) printf("PASS: %s (%d steps)\n", setup_name, cmds); return ok; } // Run a test of less, as directed by a named lt file. // Should be run in an empty temp directory; // it creates its own files in the current directory. int run_testfile(const char* ltfile, const char* less) { FILE* testfd = fopen(ltfile, "r"); if (testfd == NULL) { fprintf(stderr, "cannot open %s\n", ltfile); return 0; } int fails = 0; // This for loop is to handle multiple tests in one file. for (;;) { TestSetup* setup = read_test_setup(testfd, less); if (setup == NULL) break; int ok = run_test(setup, testfd); free_test_setup(setup); if (!ok) ++fails; } fclose(testfd); return (fails == 0); } less-668/lesstest/runtest0000755060175306017530000000547514700607712014710 0ustar marknmarkn#!/usr/bin/env perl use strict; # Run one or more test files. my $usage = "usage: runtest [-eED] [-d lesstest-dir] [-l less.exe] [-r temp-dir] [-s lt_screen] [-t lesstest] [-O lesstest-opts] [file.lt | dir]...\n"; use Getopt::Std; use File::Basename; use Cwd; my $rundir; my $lesstest; my $lt_screen; my $less; my $lt_opts; my $err_only; my $num_tests = 0; exit main(); sub main { my %opt; die $usage if not getopts('d:DeEl:O:r:s:t:', \%opt); die $usage if not @ARGV; my $cwd = getcwd(); my $srcdir = ($opt{d} or $cwd); $rundir = (rfile($opt{r}, $cwd) or "$srcdir/.runtest_dir"); $lesstest = (rfile($opt{t}, $cwd) or "$srcdir/lesstest"); $lt_screen = (rfile($opt{s}, $cwd) or "$srcdir/lt_screen"); $less = (rfile($opt{l}, $cwd) or "$srcdir/../obj/less"); $lt_opts = ($opt{O} or ""); $err_only = $opt{E} ? 2 : $opt{e} ? 1 : 0; $lt_opts = "-$lt_opts" if $lt_opts =~ /^[^-]/; $lt_opts .= ($err_only == 2) ? " -E" : $err_only ? " -e" : ""; die "cannot execute $lesstest: $!" if not -x $lesstest; die "cannot execute $lt_screen: $!" if not -x $lt_screen; die "cannot execute $less: $!" if not -x $less; die "$less is not compiled to support LESSTEST" if not less_is_test($less); die "cannot create $rundir: $!" if system "rm -rf '$rundir' && mkdir -p '$rundir'"; die "cannot chdir to $rundir: $!" if not chdir $rundir; my $errs = 0; foreach my $file (@ARGV) { my $dopt = $opt{D} ? ('-D' . rfile(basename($file,'.lt'), $cwd) . '.dt') : ''; $errs += run(rfile($file, $cwd), $dopt); } system "rm -rf '$rundir'"; print STDERR "RAN $num_tests tests with $errs errors\n" if $errs > 0 or $err_only != 2; return ($errs > 0); } # Run a test as directed by a lt file. sub run { my ($file, $opts) = @_; if (-d $file) { return run_dir($file); } if ($file !~ /\.lt$/) { print STDERR "SKIP unknown file suffix: $file\n"; return 0; } if (not -f $file) { print STDERR "ERR cannot open $file: $!\n"; return 1; } my ($basename) = $file =~ m|^.*/([^/]+)$|; if ($file =~ /'/) { print STDERR "ERR invalid character in $file\n"; return 1; } print STDERR "TEST $basename\n" unless $err_only; my $cmd = "$lesstest $lt_opts $opts -s '$lt_screen' -t '$file' '$less'"; my $err = system $cmd; ++$num_tests; if ($err) { print STDERR "ERR status $err from $cmd\n"; return 1; } return 0; } sub run_dir { my ($dir) = @_; my $errs = 0; my $dd; if (not opendir($dd, $dir)) { print STDERR "ERR cannot open directory $dir: $!\n"; return 1; } while (my $entry = readdir($dd)) { next if $entry =~ /^\./; $errs += run("$dir/$entry"); } closedir $dd; return $errs; } sub rfile { my ($file, $cwd) = @_; return undef if not defined $file; $file = "$cwd/$file" unless $file =~ m|^/|; return $file; } sub less_is_test { my ($less) = @_; my $ver = `$less -V`; return $ver =~ /LESSTEST/; } less-668/lesstest/term.c0000644060175306017530000000544214700607674014372 0ustar marknmarkn#include #include #include #include #include #include "lesstest.h" TermInfo terminfo; static void set_termio_flags(struct termios* s) { s->c_lflag &= ~(0 #ifdef ICANON | ICANON #endif #ifdef ECHO | ECHO #endif #ifdef ECHOE | ECHOE #endif #ifdef ECHOK | ECHOK #endif #if ECHONL | ECHONL #endif ); s->c_oflag |= (0 #ifdef OXTABS | OXTABS #else #ifdef TAB3 | TAB3 #else #ifdef XTABS | XTABS #endif #endif #endif #ifdef OPOST | OPOST #endif #ifdef ONLCR | ONLCR #endif ); s->c_oflag &= ~(0 #ifdef ONOEOT | ONOEOT #endif #ifdef OCRNL | OCRNL #endif #ifdef ONOCR | ONOCR #endif #ifdef ONLRET | ONLRET #endif ); } // Enable or disable raw mode on the given tty. void raw_mode(int tty, int on) { struct termios s; static struct termios save_term; if (!on) { s = save_term; } else { tcgetattr(tty, &s); save_term = s; set_termio_flags(&s); s.c_cc[VMIN] = 1; s.c_cc[VTIME] = 0; } tcsetattr(tty, TCSADRAIN, &s); } // Initialize the enter & exit capabilities for a given terminal mode. static void setup_mode(char* enter_cap, char* exit_cap, char** enter_str, char** exit_str, char** spp) { *enter_str = tgetstr(enter_cap, spp); if (*enter_str == NULL) *enter_str = ""; *exit_str = tgetstr(exit_cap, spp); if (*exit_str == NULL) *exit_str = tgetstr("me", spp); if (*exit_str == NULL) *exit_str = ""; } static char* ltgetstr(char* id, char** area) { char* str = tgetstr(id, area); if (str == NULL) str = ""; return str; } // Initialize the terminfo struct with info about the terminal $TERM. int setup_term(void) { static char termbuf[4096]; static char sbuf[4096]; char* term = getenv("TERM"); if (term == NULL) term = "dumb"; if (tgetent(termbuf, term) <= 0) { fprintf(stderr, "cannot setup terminal %s\n", term); return 0; } char* sp = sbuf; setup_mode("so", "se", &terminfo.enter_standout, &terminfo.exit_standout, &sp); setup_mode("us", "ue", &terminfo.enter_underline, &terminfo.exit_underline, &sp); setup_mode("md", "me", &terminfo.enter_bold, &terminfo.exit_bold, &sp); setup_mode("mb", "me", &terminfo.enter_blink, &terminfo.exit_blink, &sp); char* bs = ltgetstr("kb", &sp); terminfo.backspace_key = (strlen(bs) == 1) ? *bs : '\b'; terminfo.cursor_move = ltgetstr("cm", &sp); terminfo.clear_screen = ltgetstr("cl", &sp); terminfo.clear_eos = ltgetstr("cd", &sp); terminfo.init_term = ltgetstr("ti", &sp); terminfo.deinit_term = ltgetstr("te", &sp); terminfo.enter_keypad = ltgetstr("ks", &sp); terminfo.exit_keypad = ltgetstr("ke", &sp); terminfo.key_right = ltgetstr("kr", &sp); terminfo.key_left = ltgetstr("kl", &sp); terminfo.key_up = ltgetstr("ku", &sp); terminfo.key_down = ltgetstr("kd", &sp); terminfo.key_home = ltgetstr("kh", &sp); terminfo.key_end = ltgetstr("@7", &sp); return 1; } less-668/lesstest/unicode.c0000644060175306017530000000217714700607676015055 0ustar marknmarkn#include "lt_types.h" typedef struct wchar_range { wchar first, last; } wchar_range; static wchar_range wide_chars[] = { #include "../wide.uni" }; static wchar_range compose_table[] = { #include "../compose.uni" }; static wchar_range fmt_table[] = { #include "../fmt.uni" }; static wchar_range comb_table[] = { {0x0644,0x0622}, {0x0644,0x0623}, {0x0644,0x0625}, {0x0644,0x0627}, }; static int is_in_table(wchar ch, wchar_range table[], int count) { if (ch < table[0].first) return 0; int lo = 0; int hi = count - 1; while (lo <= hi) { int mid = (lo + hi) / 2; if (ch > table[mid].last) lo = mid + 1; else if (ch < table[mid].first) hi = mid - 1; else return 1; } return 0; } int is_wide_char(wchar ch) { return is_in_table(ch, wide_chars, countof(wide_chars)); } int is_composing_char(wchar ch) { return is_in_table(ch, compose_table, countof(compose_table)) || is_in_table(ch, fmt_table, countof(fmt_table)); } int is_combining_char(wchar ch1, wchar ch2) { int i; for (i = 0; i < countof(comb_table); i++) { if (ch1 == comb_table[i].first && ch2 == comb_table[i].last) return 1; } return 0; } less-668/lesstest/wchar.c0000644060175306017530000000312114700607676014521 0ustar marknmarkn#include #include "lt_types.h" // Return number of bytes in the UTF-8 sequence which begins with a given byte. int wchar_len(byte b) { if ((b & 0xE0) == 0xC0) return 2; if ((b & 0xF0) == 0xE0) return 3; if ((b & 0xF8) == 0xF0) return 4; return 1; } void store_wchar(byte** p, wchar ch) { if (ch < 0x80) { *(*p)++ = (char) ch; } else if (ch < 0x800) { *(*p)++ = (byte) (0xC0 | ((ch >> 6) & 0x1F)); *(*p)++ = (byte) (0x80 | (ch & 0x3F)); } else if (ch < 0x10000) { *(*p)++ = (byte) (0xE0 | ((ch >> 12) & 0x0F)); *(*p)++ = (byte) (0x80 | ((ch >> 6) & 0x3F)); *(*p)++ = (byte) (0x80 | (ch & 0x3F)); } else { *(*p)++ = (byte) (0xF0 | ((ch >> 18) & 0x07)); *(*p)++ = (byte) (0x80 | ((ch >> 12) & 0x3F)); *(*p)++ = (byte) (0x80 | ((ch >> 6) & 0x3F)); *(*p)++ = (byte) (0x80 | (ch & 0x3F)); } } wchar load_wchar(const byte** p) { wchar ch; switch (wchar_len(**p)) { default: ch = *(*p)++ & 0xFF; break; case 2: ch = (*(*p)++ & 0x1F) << 6; ch |= *(*p)++ & 0x3F; break; case 3: ch = (*(*p)++ & 0x0F) << 12; ch |= (*(*p)++ & 0x3F) << 6; ch |= (*(*p)++ & 0x3F); break; case 4: ch = (*(*p)++ & 0x07) << 18; ch |= (*(*p)++ & 0x3F) << 12; ch |= (*(*p)++ & 0x3F) << 6; ch |= (*(*p)++ & 0x3F); break; } return ch; } wchar read_wchar(int fd) { byte cbuf[UNICODE_MAX_BYTES]; int n = read(fd, &cbuf[0], 1); if (n <= 0) return 0; int len = wchar_len(cbuf[0]); int i; for (i = 1; i < len; ++i) { int n = read(fd, &cbuf[i], 1); if (n != 1) return 0; } const byte* cp = cbuf; wchar ch = load_wchar(&cp); // assert(cp-cbuf == len); return ch; } less-668/lesstest/wchar.h0000644060175306017530000000034414700607700014516 0ustar marknmarknint wchar_len(byte ch); void store_wchar(byte** p, wchar ch); wchar load_wchar(const byte** p); wchar read_wchar(int fd); int is_wide_char(wchar ch); int is_composing_char(wchar ch); int is_combining_char(wchar ch1, wchar ch2); less-668/lglob.h0000444060175306017530000000756214700607650012656 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Macros to define the method of doing filename "globbing". * There are three possible mechanisms: * 1. GLOB_LIST * This defines a function that returns a list of matching filenames. * 2. GLOB_NAME * This defines a function that steps thru the list of matching * filenames, returning one name each time it is called. * 3. GLOB_STRING * This defines a function that returns the complete list of * matching filenames as a single space-separated string. */ #if OS2 #define DECL_GLOB_LIST(list) char **list; char **pp; #define GLOB_LIST(filename,list) list = _fnexplode(filename) #define GLOB_LIST_FAILED(list) list == NULL #define SCAN_GLOB_LIST(list,p) pp = list; *pp != NULL; pp++ #define INIT_GLOB_LIST(list,p) p = *pp #define GLOB_LIST_DONE(list) _fnexplodefree(list) #else #if MSDOS_COMPILER==DJGPPC #define DECL_GLOB_LIST(list) glob_t list; int i; #define GLOB_LIST(filename,list) glob(filename,GLOB_NOCHECK,0,&list) #define GLOB_LIST_FAILED(list) 0 #define SCAN_GLOB_LIST(list,p) i = 0; i < list.gl_pathc; i++ #define INIT_GLOB_LIST(list,p) p = list.gl_pathv[i] #define GLOB_LIST_DONE(list) globfree(&list) #else #if MSDOS_COMPILER==MSOFTC || MSDOS_COMPILER==BORLANDC #define GLOB_FIRST_NAME(filename,fndp,h) h = _dos_findfirst(filename, ~_A_VOLID, fndp) #define GLOB_FIRST_FAILED(handle) ((handle) != 0) #define GLOB_NEXT_NAME(handle,fndp) _dos_findnext(fndp) #define GLOB_NAME_DONE(handle) #define GLOB_NAME name #define DECL_GLOB_NAME(fnd,drive,dir,fname,ext,handle) \ struct find_t fnd; \ char drive[_MAX_DRIVE]; \ char dir[_MAX_DIR]; \ char fname[_MAX_FNAME]; \ char ext[_MAX_EXT]; \ int handle; #else #if MSDOS_COMPILER==WIN32C && (defined(_MSC_VER) || defined(MINGW)) #define GLOB_FIRST_NAME(filename,fndp,h) h = _findfirst(filename, fndp) #define GLOB_FIRST_FAILED(handle) ((handle) == -1) #define GLOB_NEXT_NAME(handle,fndp) _findnext(handle, fndp) #define GLOB_NAME_DONE(handle) _findclose(handle) #define GLOB_NAME name #define DECL_GLOB_NAME(fnd,drive,dir,fname,ext,handle) \ struct _finddata_t fnd; \ char drive[_MAX_DRIVE]; \ char dir[_MAX_DIR]; \ char fname[_MAX_FNAME]; \ char ext[_MAX_EXT]; \ intptr_t handle; #else #if MSDOS_COMPILER==WIN32C && !defined(_MSC_VER) /* Borland C for Windows */ #define GLOB_FIRST_NAME(filename,fndp,h) h = findfirst(filename, fndp, ~FA_LABEL) #define GLOB_FIRST_FAILED(handle) ((handle) != 0) #define GLOB_NEXT_NAME(handle,fndp) findnext(fndp) #define GLOB_NAME_DONE(handle) #define GLOB_NAME ff_name #define DECL_GLOB_NAME(fnd,drive,dir,fname,ext,handle) \ struct ffblk fnd; \ char drive[MAXDRIVE]; \ char dir[MAXDIR]; \ char fname[MAXFILE]; \ char ext[MAXEXT]; \ int handle; #endif #endif #endif #endif #endif less-668/LICENSE0000444060175306017530000000236714700607637012416 0ustar marknmarkn Less License ------------ Less Copyright (C) 1984-2024 Mark Nudelman Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. less-668/line.c0000444060175306017530000012134414700607621012472 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Routines to manipulate the "line buffer". * The line buffer holds a line of output as it is being built * in preparation for output to the screen. */ #include "less.h" #include "charset.h" #include "position.h" #if MSDOS_COMPILER==WIN32C #define WIN32_LEAN_AND_MEAN #include #endif #define MAX_PFX_WIDTH (MAX_LINENUM_WIDTH + MAX_STATUSCOL_WIDTH + 1) static struct { char *buf; /* Buffer which holds the current output line */ int *attr; /* Parallel to buf, to hold attributes */ size_t print; /* Index in buf of first printable char */ size_t end; /* Number of chars in buf */ char pfx[MAX_PFX_WIDTH]; /* Holds status column and line number */ int pfx_attr[MAX_PFX_WIDTH]; size_t pfx_end; /* Number of chars in pfx */ } linebuf; /* * Buffer of ansi sequences which have been shifted off the left edge * of the screen. */ static struct xbuffer shifted_ansi; /* * Ring buffer of last ansi sequences sent. * While sending a line, these will be resent at the end * of any highlighted string, to restore text modes. * {{ Not ideal, since we don't really know how many to resend. }} */ #define NUM_LAST_ANSIS 3 static struct xbuffer last_ansi; static struct xbuffer last_ansis[NUM_LAST_ANSIS]; static int curr_last_ansi; public size_t size_linebuf = 0; /* Size of line buffer (and attr buffer) */ static struct ansi_state *line_ansi = NULL; static lbool ansi_in_line; static int hlink_in_line; static int line_mark_attr; static int cshift; /* Current left-shift of output line buffer */ public int hshift; /* Desired left-shift of output line buffer */ public int tabstops[TABSTOP_MAX] = { 0 }; /* Custom tabstops */ public int ntabstops = 1; /* Number of tabstops */ public int tabdefault = 8; /* Default repeated tabstops */ public POSITION highest_hilite; /* Pos of last hilite in file found so far */ static POSITION line_pos; static int end_column; /* Printable length, accounting for backspaces, etc. */ static int right_curr; static int right_column; static int overstrike; /* Next char should overstrike previous char */ static int last_overstrike = AT_NORMAL; static lbool is_null_line; /* There is no current line */ static LWCHAR pendc; static POSITION pendpos; static constant char *end_ansi_chars; static constant char *mid_ansi_chars; static int in_hilite; static int attr_swidth(int a); static int attr_ewidth(int a); static int do_append(LWCHAR ch, constant char *rep, POSITION pos); extern int sigs; extern int bs_mode; extern int proc_backspace; extern int proc_tab; extern int proc_return; extern int linenums; extern int ctldisp; extern int twiddle; extern int status_col; extern int status_col_width; extern int linenum_width; extern int auto_wrap, ignaw; extern int bo_s_width, bo_e_width; extern int ul_s_width, ul_e_width; extern int bl_s_width, bl_e_width; extern int so_s_width, so_e_width; extern int sc_width, sc_height; extern int utf_mode; extern POSITION start_attnpos; extern POSITION end_attnpos; extern LWCHAR rscroll_char; extern int rscroll_attr; extern int use_color; extern int status_line; static char mbc_buf[MAX_UTF_CHAR_LEN]; static int mbc_buf_len = 0; static int mbc_buf_index = 0; static POSITION mbc_pos; static size_t saved_line_end; static int saved_end_column; /* Configurable color map */ struct color_map { int attr; char color[12]; }; static struct color_map color_map[] = { { AT_UNDERLINE, "" }, { AT_BOLD, "" }, { AT_BLINK, "" }, { AT_STANDOUT, "" }, { AT_COLOR_ATTN, "Wm" }, { AT_COLOR_BIN, "kR" }, { AT_COLOR_CTRL, "kR" }, { AT_COLOR_ERROR, "kY" }, { AT_COLOR_LINENUM, "c" }, { AT_COLOR_MARK, "Wb" }, { AT_COLOR_PROMPT, "kC" }, { AT_COLOR_RSCROLL, "kc" }, { AT_COLOR_HEADER, "" }, { AT_COLOR_SEARCH, "kG" }, { AT_COLOR_SUBSEARCH(1), "ky" }, { AT_COLOR_SUBSEARCH(2), "wb" }, { AT_COLOR_SUBSEARCH(3), "YM" }, { AT_COLOR_SUBSEARCH(4), "Yr" }, { AT_COLOR_SUBSEARCH(5), "Wc" }, }; /* State while processing an ANSI escape sequence */ struct ansi_state { int oindex; /* Index into OSC8 prefix */ osc8_state ostate; /* State while processing OSC8 sequence */ }; /* * Initialize from environment variables. */ public void init_line(void) { int ax; end_ansi_chars = lgetenv("LESSANSIENDCHARS"); if (isnullenv(end_ansi_chars)) end_ansi_chars = "m"; mid_ansi_chars = lgetenv("LESSANSIMIDCHARS"); if (isnullenv(mid_ansi_chars)) mid_ansi_chars = "0123456789:;[?!\"'#%()*+ "; linebuf.buf = (char *) ecalloc(LINEBUF_SIZE, sizeof(char)); linebuf.attr = (int *) ecalloc(LINEBUF_SIZE, sizeof(int)); size_linebuf = LINEBUF_SIZE; xbuf_init(&shifted_ansi); xbuf_init(&last_ansi); for (ax = 0; ax < NUM_LAST_ANSIS; ax++) xbuf_init(&last_ansis[ax]); curr_last_ansi = 0; } /* * Expand the line buffer. */ static int expand_linebuf(void) { /* Double the size of the line buffer. */ size_t new_size = size_linebuf * 2; char *new_buf = (char *) calloc(new_size, sizeof(char)); int *new_attr = (int *) calloc(new_size, sizeof(int)); if (new_buf == NULL || new_attr == NULL) { if (new_attr != NULL) free(new_attr); if (new_buf != NULL) free(new_buf); return 1; } /* * We just calloc'd the buffers; copy the old contents. */ memcpy(new_buf, linebuf.buf, size_linebuf * sizeof(char)); memcpy(new_attr, linebuf.attr, size_linebuf * sizeof(int)); free(linebuf.attr); free(linebuf.buf); linebuf.buf = new_buf; linebuf.attr = new_attr; size_linebuf = new_size; return 0; } /* * Is a character ASCII? */ public lbool is_ascii_char(LWCHAR ch) { return (ch <= 0x7F); } /* */ static void inc_end_column(int w) { if (end_column > right_column && w > 0) { right_column = end_column; right_curr = (int) linebuf.end; } end_column += w; } public POSITION line_position(void) { return line_pos; } /* * Rewind the line buffer. */ public void prewind(void) { int ax; linebuf.print = 6; /* big enough for longest UTF-8 sequence */ linebuf.pfx_end = 0; for (linebuf.end = 0; linebuf.end < linebuf.print; linebuf.end++) { linebuf.buf[linebuf.end] = '\0'; linebuf.attr[linebuf.end] = 0; } end_column = 0; right_curr = 0; right_column = 0; cshift = 0; overstrike = 0; last_overstrike = AT_NORMAL; mbc_buf_len = 0; is_null_line = FALSE; pendc = '\0'; in_hilite = 0; ansi_in_line = FALSE; hlink_in_line = 0; line_mark_attr = 0; line_pos = NULL_POSITION; xbuf_reset(&shifted_ansi); xbuf_reset(&last_ansi); for (ax = 0; ax < NUM_LAST_ANSIS; ax++) xbuf_reset(&last_ansis[ax]); curr_last_ansi = 0; } /* * Set a character in the line buffer. */ static void set_linebuf(size_t n, char ch, int attr) { if (n >= size_linebuf) { /* * Won't fit in line buffer. * Try to expand it. */ if (expand_linebuf()) return; } linebuf.buf[n] = ch; linebuf.attr[n] = attr; } /* * Append a character to the line buffer. */ static void add_linebuf(char ch, int attr, int w) { set_linebuf(linebuf.end++, ch, attr); inc_end_column(w); } /* * Append a string to the line buffer. */ static void addstr_linebuf(constant char *s, int attr, int cw) { for ( ; *s != '\0'; s++) add_linebuf(*s, attr, cw); } /* * Set a character in the line prefix buffer. */ static void set_pfx(size_t n, char ch, int attr) { linebuf.pfx[n] = ch; linebuf.pfx_attr[n] = attr; } /* * Append a character to the line prefix buffer. */ static void add_pfx(char ch, int attr) { set_pfx(linebuf.pfx_end++, ch, attr); } /* * Insert the status column and line number into the line buffer. */ public void plinestart(POSITION pos) { LINENUM linenum = 0; if (linenums == OPT_ONPLUS) { /* * Get the line number and put it in the current line. * {{ Note: since find_linenum calls forw_raw_line, * it may seek in the input file, requiring the caller * of plinestart to re-seek if necessary. }} * {{ Since forw_raw_line modifies linebuf, we must * do this first, before storing anything in linebuf. }} */ linenum = find_linenum(pos); } /* * Display a status column if the -J option is set. */ if (status_col || status_line) { char c = posmark(pos); if (c != 0) line_mark_attr = AT_HILITE|AT_COLOR_MARK; else if (start_attnpos != NULL_POSITION && pos >= start_attnpos && pos <= end_attnpos) line_mark_attr = AT_HILITE|AT_COLOR_ATTN; if (status_col) { add_pfx(c ? c : ' ', line_mark_attr); /* column 0: status */ while (linebuf.pfx_end < (size_t) status_col_width) /*{{type-issue}}*/ add_pfx(' ', AT_NORMAL); } } /* * Display the line number at the start of each line * if the -N option is set. */ if (linenums == OPT_ONPLUS) { char buf[INT_STRLEN_BOUND(linenum) + 2]; size_t len; size_t i; linenum = vlinenum(linenum); if (linenum == 0) len = 0; else { linenumtoa(linenum, buf, 10); len = strlen(buf); } for (i = 0; i + len < (size_t) linenum_width; i++) add_pfx(' ', AT_NORMAL); for (i = 0; i < len; i++) add_pfx(buf[i], AT_BOLD|AT_COLOR_LINENUM); add_pfx(' ', AT_NORMAL); } end_column = (int) linebuf.pfx_end; /*{{type-issue}}*/ } /* * Return the width of the line prefix (status column and line number). * {{ Actual line number can be wider than linenum_width. }} */ public int line_pfx_width(void) { int width = 0; if (status_col) width += status_col_width; if (linenums == OPT_ONPLUS) width += linenum_width + 1; return width; } /* * Shift line left so that the last char is just to the left * of the first visible column. */ public void pshift_all(void) { size_t i; for (i = linebuf.print; i < linebuf.end; i++) if (linebuf.attr[i] == AT_ANSI) xbuf_add_char(&shifted_ansi, linebuf.buf[i]); linebuf.end = linebuf.print; end_column = (int) linebuf.pfx_end; /*{{type-issue}}*/ line_pos = NULL_POSITION; } /* * Return the printing width of the start (enter) sequence * for a given character attribute. */ static int attr_swidth(int a) { int w = 0; a = apply_at_specials(a); if (a & AT_UNDERLINE) w += ul_s_width; if (a & AT_BOLD) w += bo_s_width; if (a & AT_BLINK) w += bl_s_width; if (a & AT_STANDOUT) w += so_s_width; return w; } /* * Return the printing width of the end (exit) sequence * for a given character attribute. */ static int attr_ewidth(int a) { int w = 0; a = apply_at_specials(a); if (a & AT_UNDERLINE) w += ul_e_width; if (a & AT_BOLD) w += bo_e_width; if (a & AT_BLINK) w += bl_e_width; if (a & AT_STANDOUT) w += so_e_width; return w; } /* * Return the printing width of a given character and attribute, * if the character were added after prev_ch. * Adding a character with a given attribute may cause an enter or exit * attribute sequence to be inserted, so this must be taken into account. */ public int pwidth(LWCHAR ch, int a, LWCHAR prev_ch, int prev_a) { int w; if (ch == '\b') { /* * Backspace moves backwards one or two positions. */ if (prev_a & (AT_ANSI|AT_BINARY)) return (int) strlen(prchar('\b')); /*{{type-issue}}*/ return (utf_mode && is_wide_char(prev_ch)) ? -2 : -1; } if (!utf_mode || is_ascii_char(ch)) { if (control_char(ch)) { /* * Control characters do unpredictable things, * so we don't even try to guess; say it doesn't move. * This can only happen if the -r flag is in effect. */ return (0); } } else { if (is_composing_char(ch) || is_combining_char(prev_ch, ch)) { /* * Composing and combining chars take up no space. * * Some terminals, upon failure to compose a * composing character with the character(s) that * precede(s) it will actually take up one end_column * for the composing character; there isn't much * we could do short of testing the (complex) * composition process ourselves and printing * a binary representation when it fails. */ return (0); } } /* * Other characters take one or two columns, * plus the width of any attribute enter/exit sequence. */ w = 1; if (is_wide_char(ch)) w++; if (linebuf.end > 0 && !is_at_equiv(linebuf.attr[linebuf.end-1], a)) w += attr_ewidth(linebuf.attr[linebuf.end-1]); if (apply_at_specials(a) != AT_NORMAL && (linebuf.end == 0 || !is_at_equiv(linebuf.attr[linebuf.end-1], a))) w += attr_swidth(a); return (w); } /* * Delete to the previous base character in the line buffer. */ static int backc(void) { LWCHAR ch; char *p; if (linebuf.end == 0) return (0); p = &linebuf.buf[linebuf.end]; ch = step_char(&p, -1, linebuf.buf); /* Skip back to the next nonzero-width char. */ while (p > linebuf.buf) { LWCHAR prev_ch; int width; linebuf.end = ptr_diff(p, linebuf.buf); prev_ch = step_char(&p, -1, linebuf.buf); width = pwidth(ch, linebuf.attr[linebuf.end], prev_ch, linebuf.attr[linebuf.end-1]); end_column -= width; /* {{ right_column? }} */ if (width > 0) break; ch = prev_ch; } return (1); } /* * Preserve the current position in the line buffer (for word wrapping). */ public void savec(void) { saved_line_end = linebuf.end; saved_end_column = end_column; } /* * Restore the position in the line buffer (start of line for word wrapping). */ public void loadc(void) { linebuf.end = saved_line_end; end_column = saved_end_column; } /* * Is a character the end of an ANSI escape sequence? */ public lbool is_ansi_end(LWCHAR ch) { if (!is_ascii_char(ch)) return (FALSE); return (strchr(end_ansi_chars, (char) ch) != NULL); } /* * Can a char appear in an ANSI escape sequence, before the end char? */ public lbool is_ansi_middle(LWCHAR ch) { if (!is_ascii_char(ch)) return (FALSE); if (is_ansi_end(ch)) return (FALSE); return (strchr(mid_ansi_chars, (char) ch) != NULL); } /* * Skip past an ANSI escape sequence. * pp is initially positioned just after the CSI_START char. */ public void skip_ansi(struct ansi_state *pansi, constant char **pp, constant char *limit) { LWCHAR c; do { c = step_charc(pp, +1, limit); } while (*pp < limit && ansi_step(pansi, c) == ANSI_MID); /* Note that we discard final char, for which is_ansi_end is true. */ } /* * Determine if a character starts an ANSI escape sequence. * If so, return an ansi_state struct; otherwise return NULL. */ public struct ansi_state * ansi_start(LWCHAR ch) { struct ansi_state *pansi; if (!IS_CSI_START(ch)) return NULL; pansi = ecalloc(1, sizeof(struct ansi_state)); pansi->oindex = 0; pansi->ostate = OSC8_PREFIX; return pansi; } /* * Determine whether the next char in an ANSI escape sequence * ends the sequence. */ public ansi_state ansi_step(struct ansi_state *pansi, LWCHAR ch) { static constant char osc8_prefix[] = ESCS "]8;"; switch (pansi->ostate) { case OSC8_PREFIX: if (ch != (LWCHAR) osc8_prefix[pansi->oindex] && !(pansi->oindex == 0 && IS_CSI_START(ch))) { pansi->ostate = OSC8_NOT; /* not an OSC8 sequence */ break; } pansi->oindex++; if (osc8_prefix[pansi->oindex] == '\0') /* end of prefix */ pansi->ostate = OSC8_PARAMS; return ANSI_MID; case OSC8_PARAMS: if (ch == ';') pansi->ostate = OSC8_URI; return ANSI_MID; case OSC8_URI: /* URI ends with \7 or ESC-backslash. */ if (ch == '\7') { pansi->ostate = OSC8_END; return ANSI_END; } if (ch == ESC) pansi->ostate = OSC8_ST_ESC; return ANSI_MID; case OSC8_ST_ESC: if (ch != '\\') { return ANSI_ERR; } pansi->ostate = OSC8_END; return ANSI_END; case OSC8_END: return ANSI_END; case OSC8_NOT: break; } /* Check for SGR sequences */ if (is_ansi_middle(ch)) return ANSI_MID; if (is_ansi_end(ch)) return ANSI_END; return ANSI_ERR; } /* * Return the current OSC8 parsing state. */ public osc8_state ansi_osc8_state(struct ansi_state *pansi) { return pansi->ostate; } /* * Free an ansi_state structure. */ public void ansi_done(struct ansi_state *pansi) { free(pansi); } /* * Will w characters in attribute a fit on the screen? */ static int fits_on_screen(int w, int a) { if (ctldisp == OPT_ON) /* We're not counting, so say that everything fits. */ return 1; return (end_column - cshift + w + attr_ewidth(a) <= sc_width); } /* * Append a character and attribute to the line buffer. */ #define STORE_CHAR(ch,a,rep,pos) \ do { \ if (store_char((ch),(a),(rep),(pos))) return (1); \ } while (0) static int store_char(LWCHAR ch, int a, constant char *rep, POSITION pos) { int w; size_t i; size_t replen; char cs; int ov; ov = (a & (AT_UNDERLINE|AT_BOLD)); if (ov != AT_NORMAL) last_overstrike = ov; #if HILITE_SEARCH { int matches; int resend_last = 0; int hl_attr = 0; if (pos == NULL_POSITION) { /* Color the prompt unless it has ansi sequences in it. */ hl_attr = ansi_in_line ? 0 : AT_STANDOUT|AT_COLOR_PROMPT; } else if (a != AT_ANSI) { hl_attr = is_hilited_attr(pos, pos+1, 0, &matches); if (hl_attr == 0 && status_line) hl_attr = line_mark_attr; } if (hl_attr) { /* * This character should be highlighted. * Override the attribute passed in. */ a |= hl_attr; if (highest_hilite != NULL_POSITION && pos != NULL_POSITION && pos > highest_hilite) highest_hilite = pos; in_hilite = 1; } else { if (in_hilite) { /* * This is the first non-hilited char after a hilite. * Resend the last ANSI seq to restore color. */ resend_last = 1; } in_hilite = 0; } if (resend_last) { int ai; for (ai = 0; ai < NUM_LAST_ANSIS; ai++) { int ax = (curr_last_ansi + ai) % NUM_LAST_ANSIS; for (i = 0; i < last_ansis[ax].end; i++) STORE_CHAR(last_ansis[ax].data[i], AT_ANSI, NULL, pos); } } } #endif if (a == AT_ANSI) { w = 0; } else { char *p = &linebuf.buf[linebuf.end]; LWCHAR prev_ch = (linebuf.end > 0) ? step_char(&p, -1, linebuf.buf) : 0; int prev_a = (linebuf.end > 0) ? linebuf.attr[linebuf.end-1] : 0; w = pwidth(ch, a, prev_ch, prev_a); } if (!fits_on_screen(w, a)) return (1); if (rep == NULL) { cs = (char) ch; rep = &cs; replen = 1; } else { replen = (size_t) utf_len(rep[0]); /*{{type-issue}}*/ } if (cshift == hshift) { if (line_pos == NULL_POSITION) line_pos = pos; if (shifted_ansi.end > 0) { /* Copy shifted ANSI sequences to beginning of line. */ for (i = 0; i < shifted_ansi.end; i++) add_linebuf((char) shifted_ansi.data[i], AT_ANSI, 0); xbuf_reset(&shifted_ansi); } } /* Add the char to the buf, even if we will left-shift it next. */ inc_end_column(w); for (i = 0; i < replen; i++) add_linebuf(*rep++, a, 0); if (cshift < hshift) { /* We haven't left-shifted enough yet. */ if (a == AT_ANSI) xbuf_add_char(&shifted_ansi, (char) ch); /* Save ANSI attributes */ if (linebuf.end > linebuf.print) { /* Shift left enough to put last byte of this char at print-1. */ size_t i; for (i = 0; i < linebuf.print; i++) { linebuf.buf[i] = linebuf.buf[i+replen]; linebuf.attr[i] = linebuf.attr[i+replen]; } linebuf.end -= replen; cshift += w; /* * If the char we just left-shifted was double width, * the 2 spaces we shifted may be too much. * Represent the "half char" at start of line with a highlighted space. */ while (cshift > hshift) { add_linebuf(' ', rscroll_attr, 0); cshift--; } } } return (0); } #define STORE_STRING(s,a,pos) \ do { if (store_string((s),(a),(pos))) return (1); } while (0) static int store_string(constant char *s, int a, POSITION pos) { if (!fits_on_screen((int) strlen(s), a)) return 1; for ( ; *s != 0; s++) STORE_CHAR((LWCHAR)*s, a, NULL, pos); return 0; } /* * Return number of spaces from col to the next tab stop. */ static int tab_spaces(int col) { int to_tab = col - (int) linebuf.pfx_end; /*{{type-issue}}*/ if (ntabstops < 2 || to_tab >= tabstops[ntabstops-1]) to_tab = tabdefault - ((to_tab - tabstops[ntabstops-1]) % tabdefault); else { int i; for (i = ntabstops - 2; i >= 0; i--) if (to_tab >= tabstops[i]) break; to_tab = tabstops[i+1] - to_tab; } return to_tab; } /* * Append a tab to the line buffer. * Store spaces to represent the tab. */ #define STORE_TAB(a,pos) \ do { if (store_tab((a),(pos))) return (1); } while (0) static int store_tab(int attr, POSITION pos) { int to_tab = tab_spaces(end_column); do { STORE_CHAR(' ', attr, " ", pos); } while (--to_tab > 0); return 0; } #define STORE_PRCHAR(c, pos) \ do { if (store_prchar((c), (pos))) return 1; } while (0) static int store_prchar(LWCHAR c, POSITION pos) { /* * Convert to printable representation. */ STORE_STRING(prchar(c), AT_BINARY|AT_COLOR_CTRL, pos); return 0; } static int flush_mbc_buf(POSITION pos) { int i; for (i = 0; i < mbc_buf_index; i++) if (store_prchar((LWCHAR) mbc_buf[i], pos)) return mbc_buf_index - i; return 0; } /* * Append a character to the line buffer. * Expand tabs into spaces, handle underlining, boldfacing, etc. * Returns 0 if ok, 1 if couldn't fit in buffer. */ public int pappend_b(char c, POSITION pos, lbool before_pendc) { LWCHAR ch = c & 0377; int r; if (pendc && !before_pendc) { if (ch == '\r' && pendc == '\r') return (0); if (do_append(pendc, NULL, pendpos)) /* * Oops. We've probably lost the char which * was in pendc, since caller won't back up. */ return (1); pendc = '\0'; } if (ch == '\r' && (proc_return == OPT_ON || (bs_mode == BS_SPECIAL && proc_return == OPT_OFF))) { if (mbc_buf_len > 0) /* utf_mode must be on. */ { /* Flush incomplete (truncated) sequence. */ r = flush_mbc_buf(mbc_pos); mbc_buf_index = r + 1; mbc_buf_len = 0; if (r) return (mbc_buf_index); } /* * Don't put the CR into the buffer until we see * the next char. If the next char is a newline, * discard the CR. */ pendc = ch; pendpos = pos; return (0); } if (!utf_mode) { r = do_append(ch, NULL, pos); } else { /* Perform strict validation in all possible cases. */ if (mbc_buf_len == 0) { retry: mbc_buf_index = 1; *mbc_buf = c; if (IS_ASCII_OCTET(c)) r = do_append(ch, NULL, pos); else if (IS_UTF8_LEAD(c)) { mbc_buf_len = utf_len(c); mbc_pos = pos; return (0); } else /* UTF8_INVALID or stray UTF8_TRAIL */ r = flush_mbc_buf(pos); } else if (IS_UTF8_TRAIL(c)) { mbc_buf[mbc_buf_index++] = c; if (mbc_buf_index < mbc_buf_len) return (0); if (is_utf8_well_formed(mbc_buf, mbc_buf_index)) r = do_append(get_wchar(mbc_buf), mbc_buf, mbc_pos); else /* Complete, but not shortest form, sequence. */ mbc_buf_index = r = flush_mbc_buf(mbc_pos); mbc_buf_len = 0; } else { /* Flush incomplete (truncated) sequence. */ r = flush_mbc_buf(mbc_pos); mbc_buf_index = r + 1; mbc_buf_len = 0; /* Handle new char. */ if (!r) goto retry; } } if (r) { /* How many chars should caller back up? */ r = (!utf_mode) ? 1 : mbc_buf_index; } return (r); } public int pappend(char c, POSITION pos) { return pappend_b(c, pos, FALSE); } static int store_control_char(LWCHAR ch, constant char *rep, POSITION pos) { if (ctldisp == OPT_ON) { /* Output the character itself. */ STORE_CHAR(ch, AT_NORMAL, rep, pos); } else { /* Output a printable representation of the character. */ STORE_PRCHAR(ch, pos); } return (0); } static int store_ansi(LWCHAR ch, constant char *rep, POSITION pos) { switch (ansi_step(line_ansi, ch)) { case ANSI_MID: STORE_CHAR(ch, AT_ANSI, rep, pos); if (ansi_osc8_state(line_ansi) == OSC8_PARAMS) hlink_in_line = 1; xbuf_add_char(&last_ansi, (char) ch); break; case ANSI_END: STORE_CHAR(ch, AT_ANSI, rep, pos); ansi_done(line_ansi); line_ansi = NULL; xbuf_add_char(&last_ansi, (char) ch); xbuf_set(&last_ansis[curr_last_ansi], &last_ansi); xbuf_reset(&last_ansi); curr_last_ansi = (curr_last_ansi + 1) % NUM_LAST_ANSIS; break; case ANSI_ERR: { /* Remove whole unrecognized sequence. */ constant char *start = (cshift < hshift) ? xbuf_char_data(&shifted_ansi): linebuf.buf; size_t *end = (cshift < hshift) ? &shifted_ansi.end : &linebuf.end; constant char *p = start + *end; LWCHAR bch; do { bch = step_charc(&p, -1, start); } while (p > start && !IS_CSI_START(bch)); *end = ptr_diff(p, start); } xbuf_reset(&last_ansi); ansi_done(line_ansi); line_ansi = NULL; break; default: break; } return (0); } static int store_bs(LWCHAR ch, constant char *rep, POSITION pos) { if (proc_backspace == OPT_ONPLUS || (bs_mode == BS_CONTROL && proc_backspace == OPT_OFF)) return store_control_char(ch, rep, pos); if (linebuf.end > 0 && ((linebuf.end <= linebuf.print && linebuf.buf[linebuf.end-1] == '\0') || (linebuf.end > 0 && linebuf.attr[linebuf.end - 1] & (AT_ANSI|AT_BINARY)))) STORE_PRCHAR('\b', pos); else if (proc_backspace == OPT_OFF && bs_mode == BS_NORMAL) STORE_CHAR(ch, AT_NORMAL, NULL, pos); else if (proc_backspace == OPT_ON || (bs_mode == BS_SPECIAL && proc_backspace == OPT_OFF)) overstrike = backc(); return 0; } static int do_append(LWCHAR ch, constant char *rep, POSITION pos) { int a = AT_NORMAL; int in_overstrike = overstrike; if (ctldisp == OPT_ONPLUS && line_ansi == NULL) { line_ansi = ansi_start(ch); if (line_ansi != NULL) ansi_in_line = TRUE; } overstrike = 0; if (line_ansi != NULL) return store_ansi(ch, rep, pos); if (ch == '\b') return store_bs(ch, rep, pos); if (in_overstrike > 0) { /* * Overstrike the character at the current position * in the line buffer. This will cause either * underline (if a "_" is overstruck), * bold (if an identical character is overstruck), * or just replacing the character in the buffer. */ LWCHAR prev_ch; overstrike = utf_mode ? -1 : 0; if (utf_mode) { /* To be correct, this must be a base character. */ prev_ch = get_wchar(&linebuf.buf[linebuf.end]); } else { prev_ch = (unsigned char) linebuf.buf[linebuf.end]; } a = linebuf.attr[linebuf.end]; if (ch == prev_ch) { /* * Overstriking a char with itself means make it bold. * But overstriking an underscore with itself is * ambiguous. It could mean make it bold, or * it could mean make it underlined. * Use the previous overstrike to resolve it. */ if (ch == '_') { if ((a & (AT_BOLD|AT_UNDERLINE)) != AT_NORMAL) a |= (AT_BOLD|AT_UNDERLINE); else if (last_overstrike != AT_NORMAL) a |= last_overstrike; else a |= AT_BOLD; } else a |= AT_BOLD; } else if (ch == '_') { a |= AT_UNDERLINE; ch = prev_ch; rep = &linebuf.buf[linebuf.end]; } else if (prev_ch == '_') { a |= AT_UNDERLINE; } /* Else we replace prev_ch, but we keep its attributes. */ } else if (in_overstrike < 0) { if ( is_composing_char(ch) || is_combining_char(get_wchar(&linebuf.buf[linebuf.end]), ch)) /* Continuation of the same overstrike. */ a = last_overstrike; else overstrike = 0; } if (ch == '\t') { /* * Expand a tab into spaces. */ if (proc_tab == OPT_ONPLUS || (bs_mode == BS_CONTROL && proc_tab == OPT_OFF)) return store_control_char(ch, rep, pos); STORE_TAB(a, pos); return (0); } if ((!utf_mode || is_ascii_char(ch)) && control_char(ch)) { return store_control_char(ch, rep, pos); } else if (utf_mode && ctldisp != OPT_ON && is_ubin_char(ch)) { STORE_STRING(prutfchar(ch), AT_BINARY, pos); } else { STORE_CHAR(ch, a, rep, pos); } return (0); } /* * */ public int pflushmbc(void) { int r = 0; if (mbc_buf_len > 0) { /* Flush incomplete (truncated) sequence. */ r = flush_mbc_buf(mbc_pos); mbc_buf_len = 0; } return r; } /* * Switch to normal attribute at end of line. */ static void add_attr_normal(void) { if (ctldisp != OPT_ONPLUS || !is_ansi_end('m')) return; addstr_linebuf("\033[m", AT_ANSI, 0); if (hlink_in_line) /* Don't send hyperlink clear if we know we don't need to. */ addstr_linebuf("\033]8;;\033\\", AT_ANSI, 0); } /* * Terminate the line in the line buffer. */ public void pdone(int endline, int chopped, int forw) { (void) pflushmbc(); if (pendc && (pendc != '\r' || !endline)) /* * If we had a pending character, put it in the buffer. * But discard a pending CR if we are at end of line * (that is, discard the CR in a CR/LF sequence). */ (void) do_append(pendc, NULL, pendpos); if (chopped && rscroll_char) { char rscroll_utf8[MAX_UTF_CHAR_LEN+1]; char *up = rscroll_utf8; /* * Display the right scrolling char. * If we've already filled the rightmost screen char * (in the buffer), overwrite it. */ if (end_column >= sc_width + cshift) { /* We've already written in the rightmost char. */ end_column = right_column; linebuf.end = (size_t) right_curr; } add_attr_normal(); while (end_column < sc_width-1 + cshift) { /* * Space to last (rightmost) char on screen. * This may be necessary if the char we overwrote * was double-width. */ add_linebuf(' ', 0, 1); } /* Print rscroll char. */ put_wchar(&up, rscroll_char); *up = '\0'; addstr_linebuf(rscroll_utf8, rscroll_attr, 0); inc_end_column(1); /* assume rscroll_char is single-width */ } else { add_attr_normal(); } /* * If we're coloring a status line, fill out the line with spaces. */ if (status_line && line_mark_attr != 0) { while (end_column +1 < sc_width + cshift) add_linebuf(' ', line_mark_attr, 1); } /* * Add a newline if necessary, * and append a '\0' to the end of the line. * We output a newline if we're not at the right edge of the screen, * or if the terminal doesn't auto wrap, * or if this is really the end of the line AND the terminal ignores * a newline at the right edge. * (In the last case we don't want to output a newline if the terminal * doesn't ignore it since that would produce an extra blank line. * But we do want to output a newline if the terminal ignores it in case * the next line is blank. In that case the single newline output for * that blank line would be ignored!) */ if (end_column < sc_width + cshift || !auto_wrap || (endline && ignaw) || ctldisp == OPT_ON) { add_linebuf('\n', AT_NORMAL, 0); } else if (ignaw && end_column >= sc_width + cshift && forw) { /* * Terminals with "ignaw" don't wrap until they *really* need * to, i.e. when the character *after* the last one to fit on a * line is output. But they are too hard to deal with when they * get in the state where a full screen width of characters * have been output but the cursor is sitting on the right edge * instead of at the start of the next line. * So we nudge them into wrapping by outputting a space * character plus a backspace. But do this only if moving * forward; if we're moving backward and drawing this line at * the top of the screen, the space would overwrite the first * char on the next line. We don't need to do this "nudge" * at the top of the screen anyway. */ add_linebuf(' ', AT_NORMAL, 1); add_linebuf('\b', AT_NORMAL, -1); } set_linebuf(linebuf.end, '\0', AT_NORMAL); } /* * Return the column number (screen position) of a given file position in its line. * linepos = position of first char in line * spos = position of char being queried * saved_pos = position of a known column, or NULL_POSITION if no known column * saved_col = column number of a known column, or -1 if no known column * * This attempts to mimic the logic in pappend() and the store_*() functions. * Duplicating this complicated logic is not a good design. */ struct col_pos { int col; POSITION pos; }; static void col_vs_pos(POSITION linepos, mutable struct col_pos *cp, POSITION saved_pos, int saved_col) { int col = (saved_col < 0) ? 0 : saved_col; LWCHAR prev_ch = 0; struct ansi_state *pansi = NULL; char utf8_buf[MAX_UTF_CHAR_LEN]; int utf8_len = 0; POSITION chpos; if (ch_seek(saved_pos != NULL_POSITION ? saved_pos : linepos)) return; for (;;) { int ich; char ch; int cw = 0; chpos = ch_tell(); ich = ch_forw_get(); ch = (char) ich; if (ich == EOI || ch == '\n') break; if (pansi != NULL) { if (ansi_step(pansi, ch) != ANSI_MID) { ansi_done(pansi); pansi = NULL; } } else if (ctldisp == OPT_ONPLUS && (pansi = ansi_start(ch)) != NULL) { /* start of ansi sequence */ (void) ansi_step(pansi, ch); } else if (ch == '\b') { if (proc_backspace == OPT_ONPLUS || (bs_mode == BS_CONTROL && proc_backspace == OPT_OFF)) cw = strlen(prchar(ch)); else cw = (utf_mode && is_wide_char(prev_ch)) ? -2 : -1; } else if (ch == '\t') { if (proc_tab == OPT_ONPLUS || (bs_mode == BS_CONTROL && proc_tab == OPT_OFF)) cw = strlen(prchar(ch)); else cw = tab_spaces(col); } else if ((!utf_mode || is_ascii_char(ch)) && control_char(ch)) { cw = strlen(prchar(ch)); } else if (utf8_len < MAX_UTF_CHAR_LEN) { utf8_buf[utf8_len++] = ch; if (is_utf8_well_formed(utf8_buf, utf8_len)) { LWCHAR wch = get_wchar(utf8_buf); utf8_len = 0; int attr = 0; /* {{ ignoring attribute is not correct for magic cookie terminals }} */ if (utf_mode && ctldisp != OPT_ON && is_ubin_char(wch)) cw = strlen(prutfchar(wch)); else cw = pwidth(wch, attr, prev_ch, attr); prev_ch = wch; } } else { utf8_len = 0; /* flush invalid UTF-8 */ } if (cp->pos != NULL_POSITION && chpos == cp->pos) /* found the position we want */ break; if (cp->col >= 0 && col >= cp->col && cw > 0) /* found the column we want */ break; col += cw; prev_ch = ch; } cp->col = col; cp->pos = chpos; } public int col_from_pos(POSITION linepos, POSITION spos, POSITION saved_pos, int saved_col) { struct col_pos cp; cp.pos = spos; cp.col = -1; col_vs_pos(linepos, &cp, saved_pos, saved_col); return cp.col; } public POSITION pos_from_col(POSITION linepos, int col, POSITION saved_pos, int saved_col) { struct col_pos cp; cp.col = col + hshift - line_pfx_width(); cp.pos = NULL_POSITION; col_vs_pos(linepos, &cp, saved_pos, saved_col); return cp.pos; } /* * Set an attribute on each char of the line in the line buffer. */ public void set_attr_line(int a) { size_t i; for (i = linebuf.print; i < linebuf.end; i++) if ((linebuf.attr[i] & AT_COLOR) == 0 || (a & AT_COLOR) == 0) linebuf.attr[i] |= a; } /* * Set the char to be displayed in the status column. */ public void set_status_col(char c, int attr) { set_pfx(0, c, attr); } /* * Get a character from the current line. * Return the character as the function return value, * and the character attribute in *ap. */ public int gline(size_t i, int *ap) { if (is_null_line) { /* * If there is no current line, we pretend the line is * either "~" or "", depending on the "twiddle" flag. */ if (twiddle) { if (i == 0) { *ap = AT_BOLD; return '~'; } --i; } /* Make sure we're back to AT_NORMAL before the '\n'. */ *ap = AT_NORMAL; return i ? '\0' : '\n'; } if (i < linebuf.pfx_end) { *ap = linebuf.pfx_attr[i]; return linebuf.pfx[i]; } i += linebuf.print - linebuf.pfx_end; *ap = linebuf.attr[i]; return (linebuf.buf[i] & 0xFF); } /* * Indicate that there is no current line. */ public void null_line(void) { is_null_line = TRUE; cshift = 0; } /* * Analogous to forw_line(), but deals with "raw lines": * lines which are not split for screen width. * {{ This is supposed to be more efficient than forw_line(). }} */ public POSITION forw_raw_line_len(POSITION curr_pos, size_t read_len, constant char **linep, size_t *line_lenp) { size_t n; int c; POSITION new_pos; if (curr_pos == NULL_POSITION || ch_seek(curr_pos) || (c = ch_forw_get()) == EOI) return (NULL_POSITION); n = 0; for (;;) { if (c == '\n' || c == EOI || ABORT_SIGS()) { new_pos = ch_tell(); break; } if (n >= size_linebuf-1) { if (expand_linebuf()) { /* * Overflowed the input buffer. * Pretend the line ended here. */ new_pos = ch_tell() - 1; break; } } linebuf.buf[n++] = (char) c; if (read_len != size_t_null && read_len > 0 && n >= read_len) { new_pos = ch_tell(); break; } c = ch_forw_get(); } linebuf.buf[n] = '\0'; if (linep != NULL) *linep = linebuf.buf; if (line_lenp != NULL) *line_lenp = n; return (new_pos); } public POSITION forw_raw_line(POSITION curr_pos, constant char **linep, size_t *line_lenp) { return forw_raw_line_len(curr_pos, size_t_null, linep, line_lenp); } /* * Analogous to back_line(), but deals with "raw lines". * {{ This is supposed to be more efficient than back_line(). }} */ public POSITION back_raw_line(POSITION curr_pos, constant char **linep, size_t *line_lenp) { size_t n; int c; POSITION new_pos; if (curr_pos == NULL_POSITION || curr_pos <= ch_zero() || ch_seek(curr_pos-1)) return (NULL_POSITION); n = size_linebuf; linebuf.buf[--n] = '\0'; for (;;) { c = ch_back_get(); if (c == '\n' || ABORT_SIGS()) { /* * This is the newline ending the previous line. * We have hit the beginning of the line. */ new_pos = ch_tell() + 1; break; } if (c == EOI) { /* * We have hit the beginning of the file. * This must be the first line in the file. * This must, of course, be the beginning of the line. */ new_pos = ch_zero(); break; } if (n <= 0) { size_t old_size_linebuf = size_linebuf; char *fm; char *to; if (expand_linebuf()) { /* * Overflowed the input buffer. * Pretend the line ended here. */ new_pos = ch_tell() + 1; break; } /* * Shift the data to the end of the new linebuf. */ for (fm = linebuf.buf + old_size_linebuf - 1, to = linebuf.buf + size_linebuf - 1; fm >= linebuf.buf; fm--, to--) *to = *fm; n = size_linebuf - old_size_linebuf; } linebuf.buf[--n] = (char) c; } if (linep != NULL) *linep = &linebuf.buf[n]; if (line_lenp != NULL) *line_lenp = size_linebuf - 1 - n; return (new_pos); } /* * Skip cols printable columns at the start of line. * Return number of bytes skipped. */ public int skip_columns(int cols, constant char **linep, size_t *line_lenp) { constant char *line = *linep; constant char *eline = line + *line_lenp; LWCHAR pch = 0; size_t bytes; while (cols > 0 && line < eline) { LWCHAR ch = step_charc(&line, +1, eline); struct ansi_state *pansi = ansi_start(ch); if (pansi != NULL) { skip_ansi(pansi, &line, eline); ansi_done(pansi); pch = 0; } else { int w = pwidth(ch, 0, pch, 0); cols -= w; pch = ch; } } bytes = ptr_diff(line, *linep); *linep = line; *line_lenp -= bytes; return (int) bytes; /*{{type-issue}}*/ } /* * Append a string to the line buffer. */ static int pappstr(constant char *str) { while (*str != '\0') { if (pappend(*str++, NULL_POSITION)) /* Doesn't fit on screen. */ return 1; } return 0; } /* * Load a string into the line buffer. * If the string is too long to fit on the screen, * truncate the beginning of the string to fit. */ public void load_line(constant char *str) { int save_hshift = hshift; hshift = 0; for (;;) { prewind(); if (pappstr(str) == 0) break; /* * Didn't fit on screen; increase left shift by one. * {{ This gets very inefficient if the string * is much longer than the screen width. }} */ hshift += 1; } set_linebuf(linebuf.end, '\0', AT_NORMAL); hshift = save_hshift; } /* * Find the shift necessary to show the end of the longest displayed line. */ public int rrshift(void) { POSITION pos; int save_width; int sline; int longest = 0; save_width = sc_width; sc_width = INT_MAX; /* so forw_line() won't chop */ for (sline = TOP; sline < sc_height; sline++) if ((pos = position(sline)) != NULL_POSITION) break; for (; sline < sc_height && pos != NULL_POSITION; sline++) { pos = forw_line(pos); if (end_column > longest) longest = end_column; } sc_width = save_width; if (longest < sc_width) return 0; return longest - sc_width; } /* * Get the color_map index associated with a given attribute. */ static int lookup_color_index(int attr) { int cx; for (cx = 0; cx < countof(color_map); cx++) if (color_map[cx].attr == attr) return cx; return -1; } static int color_index(int attr) { if (use_color && (attr & AT_COLOR)) return lookup_color_index(attr & AT_COLOR); if (attr & AT_UNDERLINE) return lookup_color_index(AT_UNDERLINE); if (attr & AT_BOLD) return lookup_color_index(AT_BOLD); if (attr & AT_BLINK) return lookup_color_index(AT_BLINK); if (attr & AT_STANDOUT) return lookup_color_index(AT_STANDOUT); return -1; } /* * Set the color string to use for a given attribute. */ public int set_color_map(int attr, constant char *colorstr) { int cx = color_index(attr); if (cx < 0) return -1; if (strlen(colorstr)+1 > sizeof(color_map[cx].color)) return -1; if (*colorstr != '\0' && parse_color(colorstr, NULL, NULL, NULL) == CT_NULL) return -1; strcpy(color_map[cx].color, colorstr); return 0; } /* * Get the color string to use for a given attribute. */ public constant char * get_color_map(int attr) { int cx = color_index(attr); if (cx < 0) return NULL; return color_map[cx].color; } less-668/linenum.c0000444060175306017530000002737014700607622013217 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Code to handle displaying line numbers. * * Finding the line number of a given file position is rather tricky. * We don't want to just start at the beginning of the file and * count newlines, because that is slow for large files (and also * wouldn't work if we couldn't get to the start of the file; e.g. * if input is a long pipe). * * So we use the function add_lnum to cache line numbers. * We try to be very clever and keep only the more interesting * line numbers when we run out of space in our table. A line * number is more interesting than another when it is far from * other line numbers. For example, we'd rather keep lines * 100,200,300 than 100,101,300. 200 is more interesting than * 101 because 101 can be derived very cheaply from 100, while * 200 is more expensive to derive from 100. * * The function currline() returns the line number of a given * position in the file. As a side effect, it calls add_lnum * to cache the line number. Therefore currline is occasionally * called to make sure we cache line numbers often enough. */ #include "less.h" /* * Structure to keep track of a line number and the associated file position. * A doubly-linked circular list of line numbers is kept ordered by line number. */ struct linenum_info { struct linenum_info *next; /* Link to next in the list */ struct linenum_info *prev; /* Line to previous in the list */ POSITION pos; /* File position */ POSITION gap; /* Gap between prev and next */ LINENUM line; /* Line number */ }; /* * "gap" needs some explanation: the gap of any particular line number * is the distance between the previous one and the next one in the list. * ("Distance" means difference in file position.) In other words, the * gap of a line number is the gap which would be introduced if this * line number were deleted. It is used to decide which one to replace * when we have a new one to insert and the table is full. */ #define NPOOL 200 /* Size of line number pool */ #define LONGTIME (2) /* In seconds */ static struct linenum_info anchor; /* Anchor of the list */ static struct linenum_info *freelist; /* Anchor of the unused entries */ static struct linenum_info pool[NPOOL]; /* The pool itself */ static struct linenum_info *spare; /* We always keep one spare entry */ public lbool scanning_eof = FALSE; extern int linenums; extern int sigs; extern int sc_height; extern int header_lines; extern int nonum_headers; /* * Initialize the line number structures. */ public void clr_linenum(void) { struct linenum_info *p; /* * Put all the entries on the free list. * Leave one for the "spare". */ for (p = pool; p < &pool[NPOOL-2]; p++) p->next = p+1; pool[NPOOL-2].next = NULL; freelist = pool; spare = &pool[NPOOL-1]; /* * Initialize the anchor. */ anchor.next = anchor.prev = &anchor; anchor.gap = 0; anchor.pos = (POSITION)0; anchor.line = 1; } /* * Calculate the gap for an entry. */ static void calcgap(struct linenum_info *p) { /* * Don't bother to compute a gap for the anchor. * Also don't compute a gap for the last one in the list. * The gap for that last one should be considered infinite, * but we never look at it anyway. */ if (p == &anchor || p->next == &anchor) return; p->gap = p->next->pos - p->prev->pos; } /* * Add a new line number to the cache. * The specified position (pos) should be the file position of the * FIRST character in the specified line. */ public void add_lnum(LINENUM linenum, POSITION pos) { struct linenum_info *p; struct linenum_info *new; struct linenum_info *nextp; struct linenum_info *prevp; POSITION mingap; /* * Find the proper place in the list for the new one. * The entries are sorted by position. */ for (p = anchor.next; p != &anchor && p->pos < pos; p = p->next) if (p->line == linenum) /* We already have this one. */ return; nextp = p; prevp = p->prev; if (freelist != NULL) { /* * We still have free (unused) entries. * Use one of them. */ new = freelist; freelist = freelist->next; } else { /* * No free entries. * Use the "spare" entry. */ new = spare; spare = NULL; } /* * Fill in the fields of the new entry, * and insert it into the proper place in the list. */ new->next = nextp; new->prev = prevp; new->pos = pos; new->line = linenum; nextp->prev = new; prevp->next = new; /* * Recalculate gaps for the new entry and the neighboring entries. */ calcgap(new); calcgap(nextp); calcgap(prevp); if (spare == NULL) { /* * We have used the spare entry. * Scan the list to find the one with the smallest * gap, take it out and make it the spare. * We should never remove the last one, so stop when * we get to p->next == &anchor. This also avoids * looking at the gap of the last one, which is * not computed by calcgap. */ mingap = anchor.next->gap; for (p = anchor.next; p->next != &anchor; p = p->next) { if (p->gap <= mingap) { spare = p; mingap = p->gap; } } spare->next->prev = spare->prev; spare->prev->next = spare->next; } } /* * If we get stuck in a long loop trying to figure out the * line number, print a message to tell the user what we're doing. */ static void longloopmessage(void) { ierror("Calculating line numbers", NULL_PARG); } struct delayed_msg { void (*message)(void); int loopcount; #if HAVE_TIME time_type startime; #endif }; static void start_delayed_msg(struct delayed_msg *dmsg, void (*message)(void)) { dmsg->loopcount = 0; dmsg->message = message; #if HAVE_TIME dmsg->startime = get_time(); #endif } static void delayed_msg(struct delayed_msg *dmsg) { #if HAVE_TIME if (dmsg->loopcount >= 0 && ++(dmsg->loopcount) > 100) { dmsg->loopcount = 0; if (get_time() >= dmsg->startime + LONGTIME) { dmsg->message(); dmsg->loopcount = -1; } } #else if (dmsg->loopcount >= 0 && ++(dmsg->loopcount) > LONGLOOP) { dmsg->message(); dmsg->loopcount = -1; } #endif } /* * Turn off line numbers because the user has interrupted * a lengthy line number calculation. */ static void abort_delayed_msg(struct delayed_msg *dmsg) { if (dmsg->loopcount >= 0) return; if (linenums == OPT_ONPLUS) /* * We were displaying line numbers, so need to repaint. */ screen_trashed(); linenums = 0; error("Line numbers turned off", NULL_PARG); } /* * Find the line number associated with a given position. * Return 0 if we can't figure it out. */ public LINENUM find_linenum(POSITION pos) { struct linenum_info *p; LINENUM linenum; POSITION cpos; struct delayed_msg dmsg; if (!linenums) /* * We're not using line numbers. */ return (0); if (pos == NULL_POSITION) /* * Caller doesn't know what he's talking about. */ return (0); if (pos <= ch_zero()) /* * Beginning of file is always line number 1. */ return (1); /* * Find the entry nearest to the position we want. */ for (p = anchor.next; p != &anchor && p->pos < pos; p = p->next) continue; if (p->pos == pos) /* Found it exactly. */ return (p->line); /* * This is the (possibly) time-consuming part. * We start at the line we just found and start * reading the file forward or backward till we * get to the place we want. * * First decide whether we should go forward from the * previous one or backwards from the next one. * The decision is based on which way involves * traversing fewer bytes in the file. */ start_delayed_msg(&dmsg, longloopmessage); if (p == &anchor || pos - p->prev->pos < p->pos - pos) { /* * Go forward. */ p = p->prev; if (ch_seek(p->pos)) return (0); for (linenum = p->line, cpos = p->pos; cpos < pos; linenum++) { /* * Allow a signal to abort this loop. */ cpos = forw_raw_line(cpos, NULL, NULL); if (ABORT_SIGS()) { abort_delayed_msg(&dmsg); return (0); } if (cpos == NULL_POSITION) return (0); delayed_msg(&dmsg); } /* * We might as well cache it. */ add_lnum(linenum, cpos); /* * If the given position is not at the start of a line, * make sure we return the correct line number. */ if (cpos > pos) linenum--; } else { /* * Go backward. */ if (ch_seek(p->pos)) return (0); for (linenum = p->line, cpos = p->pos; cpos > pos; linenum--) { /* * Allow a signal to abort this loop. */ cpos = back_raw_line(cpos, NULL, NULL); if (ABORT_SIGS()) { abort_delayed_msg(&dmsg); return (0); } if (cpos == NULL_POSITION) return (0); delayed_msg(&dmsg); } /* * We might as well cache it. */ add_lnum(linenum, cpos); } return (linenum); } /* * Find the position of a given line number. * Return NULL_POSITION if we can't figure it out. */ public POSITION find_pos(LINENUM linenum) { struct linenum_info *p; POSITION cpos; LINENUM clinenum; if (linenum <= 1) /* * Line number 1 is beginning of file. */ return (ch_zero()); /* * Find the entry nearest to the line number we want. */ for (p = anchor.next; p != &anchor && p->line < linenum; p = p->next) continue; if (p->line == linenum) /* Found it exactly. */ return (p->pos); if (p == &anchor || linenum - p->prev->line < p->line - linenum) { /* * Go forward. */ p = p->prev; if (ch_seek(p->pos)) return (NULL_POSITION); for (clinenum = p->line, cpos = p->pos; clinenum < linenum; clinenum++) { /* * Allow a signal to abort this loop. */ cpos = forw_raw_line(cpos, NULL, NULL); if (ABORT_SIGS()) return (NULL_POSITION); if (cpos == NULL_POSITION) return (NULL_POSITION); } } else { /* * Go backward. */ if (ch_seek(p->pos)) return (NULL_POSITION); for (clinenum = p->line, cpos = p->pos; clinenum > linenum; clinenum--) { /* * Allow a signal to abort this loop. */ cpos = back_raw_line(cpos, NULL, NULL); if (ABORT_SIGS()) return (NULL_POSITION); if (cpos == NULL_POSITION) return (NULL_POSITION); } } /* * We might as well cache it. */ add_lnum(clinenum, cpos); return (cpos); } /* * Return the line number of the "current" line. * The argument "where" tells which line is to be considered * the "current" line (e.g. TOP, BOTTOM, MIDDLE, etc). */ public LINENUM currline(int where) { POSITION pos; POSITION len; LINENUM linenum; pos = position(where); len = ch_length(); while (pos == NULL_POSITION && where >= 0 && where < sc_height) pos = position(++where); if (pos == NULL_POSITION) pos = len; linenum = find_linenum(pos); if (pos == len) linenum--; return (linenum); } static void detlenmessage(void) { ierror("Determining length of file", NULL_PARG); } /* * Scan entire file, counting line numbers. */ public void scan_eof(void) { POSITION pos = ch_zero(); LINENUM linenum = 0; struct delayed_msg dmsg; if (ch_seek(0)) return; /* * scanning_eof prevents the "Waiting for data" message from * overwriting "Determining length of file". */ start_delayed_msg(&dmsg, detlenmessage); scanning_eof = TRUE; while (pos != NULL_POSITION) { /* For efficiency, only add one every 256 line numbers. */ if ((linenum++ % 256) == 0) add_lnum(linenum, pos); pos = forw_raw_line(pos, NULL, NULL); if (ABORT_SIGS()) { abort_delayed_msg(&dmsg); break; } delayed_msg(&dmsg); } scanning_eof = FALSE; } /* * Return a line number adjusted for display * (handles the --no-number-headers option). */ public LINENUM vlinenum(LINENUM linenum) { if (nonum_headers) linenum = (linenum < header_lines) ? 0 : linenum - header_lines; return linenum; } less-668/lsystem.c0000444060175306017530000001601314700607622013240 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Routines to execute other programs. * Necessarily very OS dependent. */ #include "less.h" #include #include "position.h" #if MSDOS_COMPILER #include #if MSDOS_COMPILER==WIN32C && defined(MINGW) #include #define setdisk(n) _chdrive((n)+1) #else #ifdef _MSC_VER #include #define setdisk(n) _chdrive((n)+1) #else #include #endif #endif #endif extern IFILE curr_ifile; #if HAVE_SYSTEM /* * Pass the specified command to a shell to be executed. * Like plain "system()", but handles resetting terminal modes, etc. */ public void lsystem(constant char *cmd, constant char *donemsg) { int inp; #if HAVE_SHELL constant char *shell; char *p; #endif IFILE save_ifile; #if MSDOS_COMPILER && MSDOS_COMPILER!=WIN32C char cwd[FILENAME_MAX+1]; #endif /* * Print the command which is to be executed, * unless the command starts with a "-". */ if (cmd[0] == '-') cmd++; else { clear_bot(); putstr("!"); putstr(cmd); putstr("\n"); } #if MSDOS_COMPILER #if MSDOS_COMPILER==WIN32C if (*cmd == '\0') cmd = getenv("COMSPEC"); #else /* * Working directory is global on MSDOS. * The child might change the working directory, so we * must save and restore CWD across calls to "system", * or else we won't find our file when we return and * try to "reedit_ifile" it. */ getcwd(cwd, FILENAME_MAX); #endif #endif /* * Close the current input file. */ save_ifile = save_curr_ifile(); (void) edit_ifile(NULL_IFILE); /* * De-initialize the terminal and take out of raw mode. */ deinit(); flush(); /* Make sure the deinit chars get out */ raw_mode(0); #if MSDOS_COMPILER==WIN32C close_getchr(); #endif /* * Restore signals to their defaults. */ init_signals(0); #if HAVE_DUP /* * Force standard input to be the user's terminal * (the normal standard input), even if less's standard input * is coming from a pipe. */ inp = dup(0); close(0); #if !MSDOS_COMPILER if (open_tty() < 0) #endif dup(inp); #endif /* * Pass the command to the system to be executed. * If we have a SHELL environment variable, use * <$SHELL -c "command"> instead of just . * If the command is empty, just invoke a shell. */ #if HAVE_SHELL p = NULL; if ((shell = lgetenv("SHELL")) != NULL && *shell != '\0') { if (*cmd == '\0') p = save(shell); else { char *esccmd = shell_quote(cmd); if (esccmd != NULL) { size_t len = strlen(shell) + strlen(esccmd) + 5; p = (char *) ecalloc(len, sizeof(char)); SNPRINTF3(p, len, "%s %s %s", shell, shell_coption(), esccmd); free(esccmd); } } } if (p == NULL) { if (*cmd == '\0') p = save("sh"); else p = save(cmd); } system(p); free(p); #else #if MSDOS_COMPILER==DJGPPC /* * Make stdin of the child be in cooked mode. */ setmode(0, O_TEXT); /* * We don't need to catch signals of the child (it * also makes trouble with some DPMI servers). */ __djgpp_exception_toggle(); system(cmd); __djgpp_exception_toggle(); #else system(cmd); #endif #endif #if HAVE_DUP /* * Restore standard input, reset signals, raw mode, etc. */ close(0); dup(inp); close(inp); #endif #if MSDOS_COMPILER==WIN32C open_getchr(); #endif init_signals(1); raw_mode(1); if (donemsg != NULL) { putstr(donemsg); putstr(" (press RETURN)"); get_return(); putchr('\n'); flush(); } init(); screen_trashed(); #if MSDOS_COMPILER && MSDOS_COMPILER!=WIN32C /* * Restore the previous directory (possibly * changed by the child program we just ran). */ chdir(cwd); #if MSDOS_COMPILER != DJGPPC /* * Some versions of chdir() don't change to the drive * which is part of CWD. (DJGPP does this in chdir.) */ if (cwd[1] == ':') { if (cwd[0] >= 'a' && cwd[0] <= 'z') setdisk(cwd[0] - 'a'); else if (cwd[0] >= 'A' && cwd[0] <= 'Z') setdisk(cwd[0] - 'A'); } #endif #endif /* * Reopen the current input file. */ reedit_ifile(save_ifile); #if defined(SIGWINCH) || defined(SIGWIND) /* * Since we were ignoring window change signals while we executed * the system command, we must assume the window changed. * Warning: this leaves a signal pending (in "sigs"), * so psignals() should be called soon after lsystem(). */ winch(0); #endif } #endif #if PIPEC /* * Pipe a section of the input file into the given shell command. * The section to be piped is the section "between" the current * position and the position marked by the given letter. * * If the mark is after the current screen, the section between * the top line displayed and the mark is piped. * If the mark is before the current screen, the section between * the mark and the bottom line displayed is piped. * If the mark is on the current screen, or if the mark is ".", * the whole current screen is piped. */ public int pipe_mark(char c, constant char *cmd) { POSITION mpos, tpos, bpos; /* * mpos = the marked position. * tpos = top of screen. * bpos = bottom of screen. */ mpos = markpos(c); if (mpos == NULL_POSITION) return (-1); tpos = position(TOP); if (tpos == NULL_POSITION) tpos = ch_zero(); bpos = position(BOTTOM); if (c == '.') return (pipe_data(cmd, tpos, bpos)); else if (mpos <= tpos) return (pipe_data(cmd, mpos, bpos)); else if (bpos == NULL_POSITION) return (pipe_data(cmd, tpos, bpos)); else return (pipe_data(cmd, tpos, mpos)); } /* * Create a pipe to the given shell command. * Feed it the file contents between the positions spos and epos. */ public int pipe_data(constant char *cmd, POSITION spos, POSITION epos) { FILE *f; int c; /* * This is structured much like lsystem(). * Since we're running a shell program, we must be careful * to perform the necessary deinitialization before running * the command, and reinitialization after it. */ if (ch_seek(spos) != 0) { error("Cannot seek to start position", NULL_PARG); return (-1); } if ((f = popen(cmd, "w")) == NULL) { error("Cannot create pipe", NULL_PARG); return (-1); } clear_bot(); putstr("!"); putstr(cmd); putstr("\n"); deinit(); flush(); raw_mode(0); init_signals(0); #if MSDOS_COMPILER==WIN32C close_getchr(); #endif #ifdef SIGPIPE LSIGNAL(SIGPIPE, SIG_IGN); #endif c = EOI; while (epos == NULL_POSITION || spos++ <= epos) { /* * Read a character from the file and give it to the pipe. */ c = ch_forw_get(); if (c == EOI) break; if (putc(c, f) == EOF) break; } /* * Finish up the last line. */ while (c != '\n' && c != EOI ) { c = ch_forw_get(); if (c == EOI) break; if (putc(c, f) == EOF) break; } pclose(f); #ifdef SIGPIPE LSIGNAL(SIGPIPE, SIG_DFL); #endif #if MSDOS_COMPILER==WIN32C open_getchr(); #endif init_signals(1); raw_mode(1); init(); screen_trashed(); #if defined(SIGWINCH) || defined(SIGWIND) /* {{ Probably don't need this here. }} */ winch(0); #endif return (0); } #endif less-668/main.c0000444060175306017530000003347414700607606012500 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Entry point, initialization, miscellaneous routines. */ #include "less.h" #if MSDOS_COMPILER==WIN32C #define WIN32_LEAN_AND_MEAN #include #if defined(MINGW) || defined(_MSC_VER) #include #include #endif public unsigned less_acp = CP_ACP; #endif #include "option.h" public char * every_first_cmd = NULL; public lbool new_file; public int is_tty; public IFILE curr_ifile = NULL_IFILE; public IFILE old_ifile = NULL_IFILE; public struct scrpos initial_scrpos; public POSITION start_attnpos = NULL_POSITION; public POSITION end_attnpos = NULL_POSITION; public int wscroll; public constant char *progname; public int quitting; public int dohelp; public char * init_header = NULL; static int secure_allow_features; #if LOGFILE public int logfile = -1; public lbool force_logfile = FALSE; public char * namelogfile = NULL; #endif #if EDITOR public constant char * editor; public constant char * editproto; #endif #if TAGS extern char * tags; extern char * tagoption; extern int jump_sline; #endif #ifdef WIN32 static wchar_t consoleTitle[256]; #endif public int one_screen; extern int less_is_more; extern int missing_cap; extern int know_dumb; extern int quit_if_one_screen; extern int no_init; extern int errmsgs; extern int redraw_on_quit; extern int term_init_done; extern int first_time; #if MSDOS_COMPILER==WIN32C && (defined(MINGW) || defined(_MSC_VER)) /* malloc'ed 0-terminated utf8 of 0-terminated wide ws, or null on errors */ static char *utf8_from_wide(constant wchar_t *ws) { char *u8 = NULL; int n = WideCharToMultiByte(CP_UTF8, 0, ws, -1, NULL, 0, NULL, NULL); if (n > 0) { u8 = ecalloc(n, sizeof(char)); WideCharToMultiByte(CP_UTF8, 0, ws, -1, u8, n, NULL, NULL); } return u8; } /* * similar to using UTF8 manifest to make the ANSI APIs UTF8, but dynamically * with setlocale. unlike the manifest, argv and environ are already ACP, so * make them UTF8. Additionally, this affects only the libc/crt API, and so * e.g. fopen filename becomes UTF-8, but CreateFileA filename remains CP_ACP. * CP_ACP remains the original codepage - use the dynamic less_acp instead. * effective on win 10 1803 or later when compiled with ucrt, else no-op. */ static void try_utf8_locale(int *pargc, constant char ***pargv) { char *locale_orig = strdup(setlocale(LC_ALL, NULL)); wchar_t **wargv = NULL, *wenv, *wp; constant char **u8argv; char *u8e; int i, n; if (!setlocale(LC_ALL, ".UTF8")) goto cleanup; /* not win10 1803+ or not ucrt */ /* * wargv is before glob expansion. some ucrt builds may expand globs * before main is entered, so n may be smaller than the original argc. * that's ok, because later code at main expands globs anyway. */ wargv = CommandLineToArgvW(GetCommandLineW(), &n); if (!wargv) goto bad_args; u8argv = (constant char **) ecalloc(n + 1, sizeof(char *)); for (i = 0; i < n; ++i) { if (!(u8argv[i] = utf8_from_wide(wargv[i]))) goto bad_args; } u8argv[n] = 0; less_acp = CP_UTF8; *pargc = n; *pargv = u8argv; /* leaked on exit */ /* convert wide env to utf8 where we can, but don't abort on errors */ if ((wenv = GetEnvironmentStringsW())) { for (wp = wenv; *wp; wp += wcslen(wp) + 1) { if ((u8e = utf8_from_wide(wp))) _putenv(u8e); free(u8e); /* windows putenv makes a copy */ } FreeEnvironmentStringsW(wenv); } goto cleanup; bad_args: error("WARNING: cannot use unicode arguments", NULL_PARG); setlocale(LC_ALL, locale_orig); cleanup: free(locale_orig); LocalFree(wargv); } #endif static int security_feature_error(constant char *type, size_t len, constant char *name) { PARG parg; size_t msglen = len + strlen(type) + 64; char *msg = ecalloc(msglen, sizeof(char)); SNPRINTF3(msg, msglen, "LESSSECURE_ALLOW: %s feature name \"%.*s\"", type, (int) len, name); parg.p_string = msg; error("%s", &parg); free(msg); return 0; } /* * Return the SF_xxx value of a secure feature given the name of the feature. */ static int security_feature(constant char *name, size_t len) { struct secure_feature { constant char *name; int sf_value; }; static struct secure_feature features[] = { { "edit", SF_EDIT }, { "examine", SF_EXAMINE }, { "glob", SF_GLOB }, { "history", SF_HISTORY }, { "lesskey", SF_LESSKEY }, { "lessopen", SF_LESSOPEN }, { "logfile", SF_LOGFILE }, { "osc8", SF_OSC8_OPEN }, { "pipe", SF_PIPE }, { "shell", SF_SHELL }, { "stop", SF_STOP }, { "tags", SF_TAGS }, }; int i; int match = -1; for (i = 0; i < countof(features); i++) { if (strncmp(features[i].name, name, len) == 0) { if (match >= 0) /* name is ambiguous */ return security_feature_error("ambiguous", len, name); match = i; } } if (match < 0) return security_feature_error("invalid", len, name); return features[match].sf_value; } /* * Set the secure_allow_features bitmask, which controls * whether certain secure features are allowed. */ static void init_secure(void) { #if SECURE secure_allow_features = 0; #else constant char *str = lgetenv("LESSSECURE"); if (isnullenv(str)) secure_allow_features = ~0; /* allow everything */ else secure_allow_features = 0; /* allow nothing */ str = lgetenv("LESSSECURE_ALLOW"); if (!isnullenv(str)) { for (;;) { constant char *estr; while (*str == ' ' || *str == ',') ++str; /* skip leading spaces/commas */ if (*str == '\0') break; estr = strchr(str, ','); if (estr == NULL) estr = str + strlen(str); while (estr > str && estr[-1] == ' ') --estr; /* trim trailing spaces */ secure_allow_features |= security_feature(str, ptr_diff(estr, str)); str = estr; } } #endif } /* * Entry point. */ int main(int argc, constant char *argv[]) { IFILE ifile; constant char *s; #if MSDOS_COMPILER==WIN32C && (defined(MINGW) || defined(_MSC_VER)) if (GetACP() != CP_UTF8) /* not using a UTF-8 manifest */ try_utf8_locale(&argc, &argv); #endif #ifdef __EMX__ _response(&argc, &argv); _wildcard(&argc, &argv); #endif progname = *argv++; argc--; init_secure(); #ifdef WIN32 if (getenv("HOME") == NULL) { /* * If there is no HOME environment variable, * try the concatenation of HOMEDRIVE + HOMEPATH. */ char *drive = getenv("HOMEDRIVE"); char *path = getenv("HOMEPATH"); if (drive != NULL && path != NULL) { char *env = (char *) ecalloc(strlen(drive) + strlen(path) + 6, sizeof(char)); strcpy(env, "HOME="); strcat(env, drive); strcat(env, path); putenv(env); } } /* on failure, consoleTitle is already a valid empty string */ GetConsoleTitleW(consoleTitle, countof(consoleTitle)); #endif /* WIN32 */ /* * Process command line arguments and LESS environment arguments. * Command line arguments override environment arguments. */ is_tty = isatty(1); init_mark(); init_cmds(); init_poll(); init_charset(); init_line(); init_cmdhist(); init_option(); init_search(); /* * If the name of the executable program is "more", * act like LESS_IS_MORE is set. */ if (strcmp(last_component(progname), "more") == 0) less_is_more = 1; init_prompt(); init_unsupport(); s = lgetenv(less_is_more ? "MORE" : "LESS"); if (s != NULL) scan_option(s); #define isoptstring(s) (((s)[0] == '-' || (s)[0] == '+') && (s)[1] != '\0') while (argc > 0 && (isoptstring(*argv) || isoptpending())) { s = *argv++; argc--; if (strcmp(s, "--") == 0) break; scan_option(s); } #undef isoptstring if (isoptpending()) { /* * Last command line option was a flag requiring a * following string, but there was no following string. */ nopendopt(); quit(QUIT_OK); } get_term(); expand_cmd_tables(); #if EDITOR editor = lgetenv("VISUAL"); if (editor == NULL || *editor == '\0') { editor = lgetenv("EDITOR"); if (isnullenv(editor)) editor = EDIT_PGM; } editproto = lgetenv("LESSEDIT"); if (isnullenv(editproto)) editproto = "%E ?lm+%lm. %g"; #endif /* * Call get_ifile with all the command line filenames * to "register" them with the ifile system. */ ifile = NULL_IFILE; if (dohelp) ifile = get_ifile(FAKE_HELPFILE, ifile); while (argc-- > 0) { #if (MSDOS_COMPILER && MSDOS_COMPILER != DJGPPC) /* * Because the "shell" doesn't expand filename patterns, * treat each argument as a filename pattern rather than * a single filename. * Expand the pattern and iterate over the expanded list. */ struct textlist tlist; constant char *filename; char *gfilename; char *qfilename; gfilename = lglob(*argv++); init_textlist(&tlist, gfilename); filename = NULL; while ((filename = forw_textlist(&tlist, filename)) != NULL) { qfilename = shell_unquote(filename); (void) get_ifile(qfilename, ifile); free(qfilename); ifile = prev_ifile(NULL_IFILE); } free(gfilename); #else (void) get_ifile(*argv++, ifile); ifile = prev_ifile(NULL_IFILE); #endif } /* * Set up terminal, etc. */ if (!is_tty) { /* * Output is not a tty. * Just copy the input file(s) to output. */ set_output(1); /* write to stdout */ SET_BINARY(1); if (edit_first() == 0) { do { cat_file(); } while (edit_next(1) == 0); } quit(QUIT_OK); } if (missing_cap && !know_dumb) error("WARNING: terminal is not fully functional", NULL_PARG); open_getchr(); raw_mode(1); init_signals(1); /* * Select the first file to examine. */ #if TAGS if (tagoption != NULL || strcmp(tags, "-") == 0) { /* * A -t option was given. * Verify that no filenames were also given. * Edit the file selected by the "tags" search, * and search for the proper line in the file. */ if (nifile() > 0) { error("No filenames allowed with -t option", NULL_PARG); quit(QUIT_ERROR); } findtag(tagoption); if (edit_tagfile()) /* Edit file which contains the tag */ quit(QUIT_ERROR); /* * Search for the line which contains the tag. * Set up initial_scrpos so we display that line. */ initial_scrpos.pos = tagsearch(); if (initial_scrpos.pos == NULL_POSITION) quit(QUIT_ERROR); initial_scrpos.ln = jump_sline; } else #endif { if (edit_first()) quit(QUIT_ERROR); /* * See if file fits on one screen to decide whether * to send terminal init. But don't need this * if -X (no_init) overrides this (see init()). */ if (quit_if_one_screen) { if (nifile() > 1) /* If more than one file, -F cannot be used */ quit_if_one_screen = FALSE; else if (!no_init) one_screen = get_one_screen(); } } if (init_header != NULL) { opt_header(TOGGLE, init_header); free(init_header); init_header = NULL; } if (errmsgs > 0) { /* * We displayed some messages on error output * (file descriptor 2; see flush()). * Before erasing the screen contents, wait for a keystroke. */ less_printf("Press RETURN to continue ", NULL_PARG); get_return(); putchr('\n'); } set_output(1); init(); commands(); quit(QUIT_OK); /*NOTREACHED*/ return (0); } /* * Copy a string to a "safe" place * (that is, to a buffer allocated by calloc). */ public char * saven(constant char *s, size_t n) { char *p = (char *) ecalloc(n+1, sizeof(char)); strncpy(p, s, n); p[n] = '\0'; return (p); } public char * save(constant char *s) { return saven(s, strlen(s)); } public void out_of_memory(void) { error("Cannot allocate memory", NULL_PARG); quit(QUIT_ERROR); } /* * Allocate memory. * Like calloc(), but never returns an error (NULL). */ public void * ecalloc(size_t count, size_t size) { void * p; p = (void *) calloc(count, size); if (p == NULL) out_of_memory(); return p; } /* * Skip leading spaces in a string. */ public char * skipsp(char *s) { while (*s == ' ' || *s == '\t') s++; return (s); } /* {{ There must be a better way. }} */ public constant char * skipspc(constant char *s) { while (*s == ' ' || *s == '\t') s++; return (s); } /* * See how many characters of two strings are identical. * If uppercase is true, the first string must begin with an uppercase * character; the remainder of the first string may be either case. */ public size_t sprefix(constant char *ps, constant char *s, int uppercase) { char c; char sc; size_t len = 0; for ( ; *s != '\0'; s++, ps++) { c = *ps; if (uppercase) { if (len == 0 && ASCII_IS_LOWER(c)) return (0); if (ASCII_IS_UPPER(c)) c = ASCII_TO_LOWER(c); } sc = *s; if (len > 0 && ASCII_IS_UPPER(sc)) sc = ASCII_TO_LOWER(sc); if (c != sc) break; len++; } return (len); } /* * Exit the program. */ public void quit(int status) { static int save_status; /* * Put cursor at bottom left corner, clear the line, * reset the terminal modes, and exit. */ if (status < 0) status = save_status; else save_status = status; quitting = 1; check_altpipe_error(); if (interactive()) clear_bot(); deinit(); flush(); if (redraw_on_quit && term_init_done) { /* * The last file text displayed might have been on an * alternate screen, which now (since deinit) cannot be seen. * redraw_on_quit tells us to redraw it on the main screen. */ first_time = 1; /* Don't print "skipping" or tildes */ repaint(); flush(); } edit((char*)NULL); save_cmdhist(); raw_mode(0); #if MSDOS_COMPILER && MSDOS_COMPILER != DJGPPC /* * If we don't close 2, we get some garbage from * 2's buffer when it flushes automatically. * I cannot track this one down RB * The same bug shows up if we use ^C^C to abort. */ close(2); #endif #ifdef WIN32 SetConsoleTitleW(consoleTitle); #endif close_getchr(); exit(status); } /* * Are all the features in the features mask allowed by security? */ public int secure_allow(int features) { return ((secure_allow_features & features) == features); } less-668/Makefile.aut0000444060175306017530000001410414700607640013623 0ustar marknmarkn# Makefile for authoring less. # # Targets: # all Make files needed to run Makefile (after configure). # clean Remove files that can be rebuilt. # unicode-check If newer Unicode files are available, download them. # release Make a numbered release, ready to upload to greenwoodsoftware.com. # gnu-upload Make files needed to upload a release to gnu.org. # EMAIL = bug-less@gnu.org SHELL = /bin/sh GIT = git GPG = gpg NROFF = nroff -t -man srcdir = . REL := $(shell sed -e '/char version/!d' -e 's/[^0-9.]*\([0-9.]*\).*/\1/' -e q ${srcdir}/version.c) ifeq ($(USE_PYTHON),1) MKHELP = mkhelp.py else MKHELP = mkhelp.pl endif SRC = \ main.c screen.c brac.c ch.c charset.c cmdbuf.c \ command.c cvt.c decode.c edit.c evar.c filename.c forwback.c \ help.c ifile.c input.c jump.c line.c linenum.c \ lsystem.c mark.c optfunc.c option.c opttbl.c os.c \ output.c pattern.c position.c prompt.c search.c signal.c \ tags.c ttyin.c version.c xbuf.c DISTFILES_W = \ defines.ds Makefile.dsb Makefile.dsg Makefile.dsu \ defines.o2 Makefile.o2e \ defines.o9 Makefile.o9c Makefile.o9u \ defines.wn Makefile.wnm Makefile.wnb Makefile.wng \ configure UNICODE_FILES = \ compose.uni fmt.uni ubin.uni wide.uni DISTFILES = \ ${SRC} regexp.c regexp.h \ COPYING INSTALL LICENSE Makefile.in Makefile.aut NEWS README \ configure.ac lesskey.c lesskey_parse.c lessecho.c scrsize.c \ charset.h cmd.h funcs.h lang.h lglob.h less.h lesskey.h option.h \ pckeys.h pattern.h position.h xbuf.h \ install.sh defines.h.in mkinstalldirs \ less.nro less.man lesskey.nro lesskey.man lessecho.nro lessecho.man \ less.hlp \ mkhelp.pl \ mkhelp.py \ mkutable ${UNICODE_FILES} \ $(shell ${MAKE} -s -f ${srcdir}/lesstest/Makefile echo_distfiles srcdir=${srcdir}/lesstest) \ ${DISTFILES_W} all: help.c funcs.h ${UNICODE_FILES} ${srcdir}/configure release: .FORCE @if ${srcdir}/ready_to_release -d ${srcdir}; then :; else exit 1; fi ${MAKE} -f Makefile.aut tagall ${MAKE} -f Makefile.aut all ${MAKE} -f Makefile.aut clean ${MAKE} -f Makefile.aut dist .FORCE: help.c: less.hlp -mv -f ${srcdir}/help.c ${srcdir}/help.c.old rm -rf help.c ${srcdir}/${MKHELP} < less.hlp > help.c if cmp -s help.c help.c.old; then mv -f help.c.old help.c; fi ${srcdir}/configure ${srcdir}/defines.h.in: ${srcdir}/configure.ac ${srcdir}/Makefile.in cd ${srcdir}; autoheader; autoconf funcs.h: ${SRC:%=${srcdir}/%} -mv -f ${srcdir}/funcs.h ${srcdir}/funcs.h.old grep -h '^public [^;]*$$' ${SRC:%=${srcdir}/%} | sed 's/$$/;/' >${srcdir}/funcs.h lint: lint -I. ${CPPFLAGS} ${SRC} clean: rm -f Makefile config.status config.log config.cache defines.h stamp-h \ configure defines.h.in funcs.h help.c \ less.nro less.man lesskey.nro lesskey.man lessecho.nro lessecho.man distclean: clean realclean: clean REPLACE_VERSION = \ DT=`date '+%d %h %Y'`; \ echo "Stuffing version number ${REL} into $@"; \ rm -f $@; \ sed \ -e "s;@@VERSION@@;${REL};" \ -e "s;@@DATE@@;$$DT;" >$@ ${srcdir}/less.nro: ${srcdir}/less.nro.VER ${srcdir}/version.c ${REPLACE_VERSION} ${srcdir}/less.nro.VER ${srcdir}/lesskey.nro: ${srcdir}/lesskey.nro.VER ${srcdir}/version.c ${REPLACE_VERSION} ${srcdir}/lesskey.nro.VER ${srcdir}/lessecho.nro: ${srcdir}/lessecho.nro.VER ${srcdir}/version.c ${REPLACE_VERSION} ${srcdir}/lessecho.nro.VER ${srcdir}/less.man: ${srcdir}/less.nro ${NROFF} ${srcdir}/less.nro >${srcdir}/less.man ${srcdir}/lesskey.man: ${srcdir}/lesskey.nro ${NROFF} ${srcdir}/lesskey.nro >${srcdir}/lesskey.man ${srcdir}/lessecho.man: ${srcdir}/lessecho.nro ${NROFF} ${srcdir}/lessecho.nro >${srcdir}/lessecho.man compose.uni: unicode/UnicodeData.txt ./mkutable -f2 Mn Me -- unicode/UnicodeData.txt > $@ fmt.uni: unicode/UnicodeData.txt ./mkutable -f2 Cf -- unicode/UnicodeData.txt > $@ ubin.uni: unicode/UnicodeData.txt ./mkutable -f2 Cc Cs Co Zl Zp -- unicode/UnicodeData.txt > $@ wide.uni: unicode/EastAsianWidth.txt ./mkutable -f1 W F -- unicode/EastAsianWidth.txt > $@ unicode-check: rm -rf unicode-old mv -f unicode unicode-old ${MAKE} -f Makefile.aut unicode/UnicodeData.txt unicode/EastAsianWidth.txt @if diff -q unicode-old unicode >/dev/null; then rm -rf unicode; mv -f unicode-old unicode; echo "unicode files already up to date"; else echo "unicode files updated"; fi unicode/UnicodeData.txt: mkdir -p unicode lftp -c 'open -u "anonymous:${EMAIL}" ftp.unicode.org ; get Public/UNIDATA/UnicodeData.txt -o $@' touch $@ unicode/EastAsianWidth.txt: mkdir -p unicode lftp -c 'open -u "anonymous:${EMAIL}" ftp.unicode.org ; get Public/UNIDATA/EastAsianWidth.txt -o $@' touch $@ distfiles: ${DISTFILES} echo_distfiles: @echo $(subst .nro,.nro.VER,${DISTFILES}) dist: ${DISTFILES} if [ ! -d ${srcdir}/release ]; then mkdir ${srcdir}/release; fi @LESSREL=less-${REL} && RELDIR=release/$$LESSREL && \ TARF=$$LESSREL-beta.tar.gz && ZIPF=$$LESSREL-beta.zip && \ cd ${srcdir} && \ rm -rf $$RELDIR && mkdir $$RELDIR && \ echo "Preparing $$LESSREL" && \ rm -rf $$LESSREL && mkdir $$LESSREL && \ for f in ${DISTFILES}; do mkdir -p $$(dirname $$LESSREL/$$f); cp $$f $$LESSREL/$$f; done && \ cd $$LESSREL && chmod -w * && chmod +w ${DISTFILES_W} lesstest && chmod +x configure && cd .. && \ echo "Creating $$RELDIR/$$TARF" && \ tar -cf - $$LESSREL | gzip -c >$$RELDIR/$$TARF && \ echo "Signing $$RELDIR/$$TARF" && \ ${GPG} --detach-sign $$RELDIR/$$TARF && \ mv $$RELDIR/$$TARF.sig $$RELDIR/$$LESSREL.sig && \ echo "Creating $$RELDIR/$$ZIPF" && \ zip -rq $$RELDIR/$$ZIPF $$LESSREL && \ rm -rf $$LESSREL tagall: echo "tagging v${REL}"; \ ${GIT} tag -a -f -m "v${REL}" "v${REL}" gnu-upload: @if [ -z "${REL}" ]; then echo "Please set REL=nnn"; exit 1; fi; \ LESSREL=less-${REL} && RELDIR=release/$$LESSREL && \ TARF=$$LESSREL.tar.gz && \ if [ ! -s $$RELDIR/$$TARF ]; then echo "$$RELDIR/$$TARF does not exist"; exit 1; fi; \ cd $$RELDIR && \ ${GPG} -b $$TARF && \ ( echo "version: 1.2"; echo "directory: less"; echo "filename: $$TARF" ) > $$TARF.directive && \ ${GPG} --clearsign $$TARF.directive && \ echo "upload ready: cd $$RELDIR; ftp ftp-upload.gnu.org; cd /incoming/ftp; put ... { $TARF, $$TARF.sig, $$TARF.directive.asc }" less-668/Makefile.dsb0000644060175306017530000000251714700607716013615 0ustar marknmarkn# Makefile for less. # MS-DOS version (Borland C/C++ 4.02) #### Start of system configuration section. #### CC = bcc LIBDIR = \bc\lib CFLAGS = -A- -mm -O2 -w- -1- -2- -a -d -Z LDFLAGS = -mm LIBS = EXT = .EXE #### End of system configuration section. #### # This rule allows us to supply the necessary -D options # in addition to whatever the user asks for. .c.obj: $(CC) -c -I. $(CPPFLAGS) $(CFLAGS) $< OBJ = \ main.obj screen.obj brac.obj ch.obj charset.obj cmdbuf.obj \ command.obj cvt.obj decode.obj edit.obj evar.obj filename.obj forwback.obj \ help.obj ifile.obj input.obj jump.obj lesskey_parse.obj line.obj linenum.obj \ lsystem.obj mark.obj optfunc.obj option.obj opttbl.obj os.obj \ output.obj pattern.obj position.obj prompt.obj search.obj signal.obj \ tags.obj ttyin.obj version.obj xbuf.obj all: less$(EXT) lesskey$(EXT) # This is really horrible, but the command line is too long for # MS-DOS if we try to link $(OBJ). less$(EXT): $(OBJ) ren lesskey.obj lesskey.obo $(CC) $(LDFLAGS) -e$@ *.obj $(LIBS) ren lesskey.obo lesskey.obj lesskey$(EXT): lesskey.obj lesskey_parse.obj version.obj xbuf.obj $(CC) $(LDFLAGS) -e$@ lesskey.obj lesskey_parse.obj version.obj xbuf.obj $(LIBS) defines.h: defines.ds -del defines.h -copy defines.ds defines.h $(OBJ): less.h defines.h clean: -del *.obj -del less.exe -del lesskey.exe less-668/Makefile.dsg0000644060175306017530000000460214700607717013620 0ustar marknmarkn# Makefile for less under DJGPP v2.0 or later. #### Start of system configuration section. #### srcdir = . VPATH = . CC = gcc INSTALL = ginstall -c INSTALL_PROGRAM = ginstall INSTALL_DATA = ginstall -m 644 AWK = gawk CFLAGS = -O2 -g CFLAGS_COMPILE_ONLY = -c #LDFLAGS = -s LDFLAGS = -g O=o LIBS = prefix = /dev/env/DJDIR exec_prefix = ${prefix} bindir = ${exec_prefix}/bin sysconfdir = ${prefix}/etc mandir = ${prefix}/man manext = 1 #### End of system configuration section. #### # This rule allows us to supply the necessary -D options # in addition to whatever the user asks for. .c.o: ${CC} -I. ${CFLAGS_COMPILE_ONLY} -DBINDIR=\"${bindir}\" -DSYSDIR=\"${sysconfdir}\" ${CPPFLAGS} ${CFLAGS} $< OBJ = \ main.${O} screen.${O} brac.${O} ch.${O} charset.${O} cmdbuf.${O} \ command.${O} cvt.${O} decode.${O} edit.${O} evar.${O} filename.${O} forwback.${O} \ help.${O} ifile.${O} input.${O} jump.${O} lesskey_parse.${O} line.${O} linenum.${O} \ lsystem.${O} mark.${O} optfunc.${O} option.${O} opttbl.${O} os.${O} \ output.${O} pattern.${O} position.${O} prompt.${O} search.${O} signal.${O} \ tags.${O} ttyin.${O} version.${O} xbuf.${O} all: less lesskey lessecho less: ${OBJ} ${CC} ${LDFLAGS} -o $@ ${OBJ} ${LIBS} lesskey: lesskey.${O} lesskey_parse.${O} version.${O} xbuf.${O} ${CC} ${LDFLAGS} -o $@ lesskey.${O} lesskey_parse.${O} version.${O} xbuf.${O} lessecho: lessecho.${O} version.${O} ${CC} ${LDFLAGS} -o $@ lessecho.${O} version.${O} defines.h: defines.ds command.com /c copy $< $@ || cmd.exe /c copy $< $@ || cp $< $@ ${OBJ}: ${srcdir}/less.h defines.h ${srcdir}/funcs.h install: all ${srcdir}/less.man ${srcdir}/lesskey.man ${INSTALL_PROGRAM} less.exe ${bindir}/less.exe ${INSTALL_PROGRAM} lesskey.exe ${bindir}/lesskey.exe ${INSTALL_PROGRAM} lessecho.exe ${bindir}/lessecho.exe ${INSTALL_DATA} ${srcdir}/less.man ${mandir}/man${manext}/less.${manext} ${INSTALL_DATA} ${srcdir}/lesskey.man ${mandir}/man${manext}/lesskey.${manext} info: install-info: dvi: check: installcheck: TAGS: etags *.c *.h clean: command.com /c for %f in (*.${O} less lesskey lessecho *.exe) do if exist %f del %f mostlyclean: clean distclean: clean command.com /c if not exist Makefile.dsg ren Makefile Makefile.dsg command.com /c if not exist defines.ds ren defines.h defines.ds command.com /c for %f in (Makefile defines.h) do if exist %f del %f realclean: distclean command.com /c if exist TAGS del TAGS less-668/Makefile.dsu0000644060175306017530000000346314700607717013642 0ustar marknmarkn# Makefile for less. # MS-DOS version #### Start of system configuration section. #### CC = cl # Change the following directories to match your installation. LIBDIR = c:\msvc\lib INCDIR = c:\msvc\include # CFLAGS are compile-time options and LDFLAGS are link-time options. They are # customized for MSVC 1.0 (MSC 8.0). If you have a different version of the # compiler, you may need to change some of the options to their equivalents. # -Ot optimize for speed # -AL large memory model # -Za ANSI C conformance # -nologo suppress MSVC banners # -onerror:noexe no .EXE file if link errors occur CFLAGS = -Ot -AL -Za -nologo LDFLAGS = -onerror:noexe -nologo LIBS = $(LIBDIR)\llibce.lib $(LIBDIR)\graphics.lib #### End of system configuration section. #### # This rule allows us to supply the necessary -D options # in addition to whatever the user asks for. .c.obj: $(CC) -c -I. -I$(INCDIR) $(CPPFLAGS) $(CFLAGS) $< OBJ = \ main.obj screen.obj brac.obj ch.obj charset.obj cmdbuf.obj \ command.obj cvt.obj decode.obj edit.obj evar.obj filename.obj forwback.obj \ help.obj ifile.obj input.obj jump.obj lesskey_parse.obj line.obj linenum.obj \ lsystem.obj mark.obj optfunc.obj option.obj opttbl.obj os.obj \ output.obj pattern.obj position.obj prompt.obj search.obj signal.obj \ tags.obj ttyin.obj version.obj xbuf.obj all: less lesskey # This is really horrible, but the command line is too long for # MS-DOS if we try to link $(OBJ). less: $(OBJ) -if exist lesskey.obj del lesskey.obj $(CC) $(LDFLAGS) -o $@ *.obj $(LIBS) lesskey: lesskey.obj lesskey_parse.obj version.obj xbuf.obj $(CC) $(LDFLAGS) -o $@ lesskey.obj lesskey_parse.obj version.obj xbuf.obj $(LIBS) defines.h: defines.ds -del defines.h -copy defines.ds defines.h $(OBJ): less.h defines.h clean: -del *.obj -del less.exe -del lesskey.exe less-668/Makefile.in0000444060175306017530000001013614700607640013441 0ustar marknmarkn# Makefile for less. #### Start of system configuration section. #### srcdir = @srcdir@ VPATH = @srcdir@ CC = @CC@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ CFLAGS = @CFLAGS@ CFLAGS_COMPILE_ONLY = -c LDFLAGS = @LDFLAGS@ CPPFLAGS = @CPPFLAGS@ EXEEXT = @EXEEXT@ O=o ifneq ($(strip $(LESSTEST)),) CPPFLAGS += -DLESSTEST endif LIBS = @LIBS@ prefix = @prefix@ exec_prefix = @exec_prefix@ # Where the installed binary goes. bindir = @bindir@ binprefix = sysconfdir = @sysconfdir@ datarootdir = @datarootdir@ mandir = @mandir@ manext = 1 manprefix = DESTDIR = #### End of system configuration section. #### SHELL = /bin/sh # This rule allows us to supply the necessary -D options # in addition to whatever the user asks for. .c.o: ${CC} -I. ${CFLAGS_COMPILE_ONLY} -DBINDIR=\"${bindir}\" -DSYSDIR=\"${sysconfdir}\" ${CPPFLAGS} ${CFLAGS} $< OBJ = \ main.${O} screen.${O} brac.${O} ch.${O} charset.${O} cmdbuf.${O} \ command.${O} cvt.${O} decode.${O} edit.${O} evar.${O} filename.${O} forwback.${O} \ help.${O} ifile.${O} input.${O} jump.${O} \ line.${O} linenum.${O} \ lsystem.${O} mark.${O} optfunc.${O} option.${O} opttbl.${O} os.${O} \ output.${O} pattern.${O} position.${O} prompt.${O} search.${O} signal.${O} \ tags.${O} ttyin.${O} version.${O} xbuf.${O} @REGEX_O@ ifneq (@SECURE_COMPILE@,1) OBJ += lesskey_parse.${O} endif all: less$(EXEEXT) lesskey$(EXEEXT) lessecho$(EXEEXT) less$(EXEEXT): ${OBJ} ${CC} ${LDFLAGS} -o $@ ${OBJ} ${LIBS} lesskey$(EXEEXT): lesskey.${O} lesskey_parse.${O} xbuf.${O} version.${O} ${CC} ${LDFLAGS} -o $@ lesskey.${O} lesskey_parse.${O} xbuf.${O} version.${O} ${LIBS} lessecho$(EXEEXT): lessecho.${O} version.${O} ${CC} ${LDFLAGS} -o $@ lessecho.${O} version.${O} ${LIBS} charset.${O}: compose.uni ubin.uni wide.uni ${OBJ}: ${srcdir}/less.h ${srcdir}/funcs.h defines.h lang.h pattern.h xbuf.h install: all ${srcdir}/less.nro ${srcdir}/lesskey.nro ${srcdir}/lessecho.nro installdirs ${INSTALL_PROGRAM} less$(EXEEXT) ${DESTDIR}${bindir}/${binprefix}less$(EXEEXT) ${INSTALL_PROGRAM} lesskey$(EXEEXT) ${DESTDIR}${bindir}/${binprefix}lesskey$(EXEEXT) ${INSTALL_PROGRAM} lessecho$(EXEEXT) ${DESTDIR}${bindir}/${binprefix}lessecho$(EXEEXT) ${INSTALL_DATA} ${srcdir}/less.nro ${DESTDIR}${mandir}/man${manext}/${manprefix}less.${manext} ${INSTALL_DATA} ${srcdir}/lesskey.nro ${DESTDIR}${mandir}/man${manext}/${manprefix}lesskey.${manext} ${INSTALL_DATA} ${srcdir}/lessecho.nro ${DESTDIR}${mandir}/man${manext}/${manprefix}lessecho.${manext} install-strip: ${MAKE} INSTALL_PROGRAM='${INSTALL_PROGRAM} -s' install installdirs: mkinstalldirs ${srcdir}/mkinstalldirs ${DESTDIR}${bindir} ${DESTDIR}${mandir}/man${manext} uninstall: rm -f ${DESTDIR}${bindir}/${binprefix}less$(EXEEXT) rm -f ${DESTDIR}${bindir}/${binprefix}lesskey$(EXEEXT) rm -f ${DESTDIR}${bindir}/${binprefix}lessecho$(EXEEXT) rm -f ${DESTDIR}${mandir}/man${manext}/${manprefix}less.${manext} rm -f ${DESTDIR}${mandir}/man${manext}/${manprefix}lesskey.${manext} rm -f ${DESTDIR}${mandir}/man${manext}/${manprefix}lessecho.${manext} info: install-info: dvi: installcheck: check: if [ -x less$(EXEEXT) ] && ./less$(EXEEXT) -V | grep -q LESSTEST; then :; else ${MAKE} clean; ${MAKE} LESSTEST=1; fi objdir=$$(pwd); rflags=""; if [ -z "${VERBOSE}" ]; then rflags=-e; fi; cd $(srcdir)/lesstest && ${MAKE} && ./runtest $$rflags -l "$$objdir/less" lt TAGS: cd ${srcdir} && etags *.c *.h # config.status might not change defines.h # Don't rerun config.status if we just configured (so there's no stamp-h). defines.h: stamp-h stamp-h: defines.h.in config.status test ! -f stamp-h || CONFIG_FILES= CONFIG_HEADERS=defines.h ./config.status touch stamp-h Makefile: ${srcdir}/Makefile.in config.status CONFIG_FILES=Makefile CONFIG_HEADERS= ./config.status config.status: ${srcdir}/configure ./config.status --recheck ${srcdir}/configure: ${srcdir}/configure.ac cd ${srcdir}; autoheader; autoconf clean: rm -f *.${O} core less$(EXEEXT) lesskey$(EXEEXT) lessecho$(EXEEXT) mostlyclean: clean distclean: clean rm -f Makefile config.status config.log config.cache defines.h stamp-h realclean: distclean rm -f TAGS less-668/Makefile.o2e0000644060175306017530000000236214700607721013524 0ustar marknmarkn# Makefile for less. # OS/2 version, for emx+gcc compiler #### Start of system configuration section. #### CC = gcc -Zomf CFLAGS = -I. -O2 -Wall LDFLAGS = -s -Zcrtdll LIBS = -ltermcap O = obj #### End of system configuration section. #### .SUFFIXES: .c .${O} # This rule allows us to supply the necessary -D options # in addition to whatever the user asks for. .c.${O}: ${CC} -c ${CPPFLAGS} ${CFLAGS} $< OBJ = \ main.${O} screen.${O} brac.${O} ch.${O} charset.${O} cmdbuf.${O} \ command.${O} cvt.${O} decode.${O} edit.${O} evar.${O} filename.${O} forwback.${O} \ help.${O} ifile.${O} input.${O} jump.${O} lesskey_parse.${O} line.${O} linenum.${O} \ lsystem.${O} mark.${O} optfunc.${O} option.${O} opttbl.${O} os.${O} \ output.${O} pattern.${O} position.${O} prompt.${O} search.${O} signal.${O} \ tags.${O} ttyin.${O} version.${O} xbuf.${O} regexp.${O} all: less.exe lesskey.exe scrsize.exe less.exe: ${OBJ} ${CC} ${OBJ} -o $@ ${LDFLAGS} ${LIBS} lesskey.exe: lesskey.${O} lesskey_parse.${O} version.${O} xbuf.${O} ${CC} lesskey.${O} lesskey_parse.${O} version.${O} xbuf.${O} -o $@ ${LDFLAGS} scrsize.exe: scrsize.c ${CC} ${CFLAGS} -D__ST_MT_ERRNO__ -s -Zmtd -lX11 $< ${OBJ}: defines.h less.h defines.h: defines.o2 copy defines.o2 defines.h less-668/Makefile.o9c0000644060175306017530000000250014700607722013524 0ustar marknmarkn# Makefile for less. # OS-9 version for Microware C 3.2. #### Start of system configuration section. #### CC = cc CPPFLAGS = -D_OSK_MWC32 -DDEBUG=0 -DSTRCSPN CFLAGS = -k=0 -v=. CFLAGS_COMPILE_ONLY = -r LDFLAGS = -igm=8 LIBS = -l=/dd/lib/termlib.l O = r #### End of system configuration section. #### .SUFFIXES: .c .${O} # This rule allows us to supply the necessary -D options # in addition to whatever the user asks for. .c.${O}: ${CC} ${CFLAGS_COMPILE_ONLY} ${CPPFLAGS} ${CFLAGS} $< OBJ = \ main.${O} screen.${O} brac.${O} ch.${O} charset.${O} cmdbuf.${O} \ command.${O} cvt.${O} decode.${O} edit.${O} evar.${O} filename.${O} forwback.${O} \ help.${O} ifile.${O} input.${O} jump.${O} lesskey_parse.${O} line.${O} linenum.${O} \ lsystem.${O} mark.${O} optfunc.${O} option.${O} opttbl.${O} os.${O} \ output.${O} pattern.${O} position.${O} prompt.${O} search.${O} signal.${O} \ tags.${O} ttyin.${O} version.${O} xbuf.${O} regexp.${O} all: less lessecho lesskey less: ${OBJ} ${CC} ${OBJ} -f=$@ ${LDFLAGS} ${LIBS} lesskey: lesskey.${O} lesskey_parse.${O} version.${O} xbuf.${O} ${CC} lesskey.${O} lesskey_parse.${O} version.${O} xbuf.${O} -f=$@ ${LDFLAGS} lessecho: lessecho.${O} version.${O} ${CC} lessecho.${O} version.${O} -f=$@ ${LDFLAGS} ${OBJ}: defines.h less.h defines.h: defines.o9 copy defines.o9 defines.h -rf less-668/Makefile.o9u0000644060175306017530000000227714700607723013562 0ustar marknmarkn# Makefile for less. # OS-9 version for Ultra C. #### Start of system configuration section. #### CC = cc CPPFLAGS = CFLAGS = -v=. CFLAGS_COMPILE_ONLY = -eas LDFLAGS = -olM=24k LIBS = -ltermlib.l -lsys_clib.l -lunix.l O = r #### End of system configuration section. #### .SUFFIXES: .c .${O} # This rule allows us to supply the necessary -D options # in addition to whatever the user asks for. .c.${O}: ${CC} ${CFLAGS_COMPILE_ONLY} ${CPPFLAGS} ${CFLAGS} $< OBJ = \ main.${O} screen.${O} brac.${O} ch.${O} charset.${O} cmdbuf.${O} \ command.${O} cvt.${O} decode.${O} edit.${O} evar.${O} filename.${O} forwback.${O} \ help.${O} ifile.${O} input.${O} jump.${O} lesskey_parse.${O} line.${O} linenum.${O} \ lsystem.${O} mark.${O} optfunc.${O} option.${O} opttbl.${O} os.${O} \ output.${O} pattern.${O} position.${O} prompt.${O} search.${O} signal.${O} \ tags.${O} ttyin.${O} version.${O} xbuf.${O} regexp.${O} all: less lesskey less: ${OBJ} ${CC} ${OBJ} -f=$@ ${LDFLAGS} ${LIBS} lesskey: lesskey.${O} lesskey_parse.${O} version.${O} xbuf.${O} ${CC} lesskey.${O} lesskey_parse.${O} version.${O} xbuf.${O} -f=$@ ${LDFLAGS} ${OBJ}: defines.h less.h defines.h: defines.o9 copy defines.o9 defines.h -rf less-668/Makefile.wnb0000644060175306017530000000326314700607724013631 0ustar marknmarkn# Makefile for less. # Windows version # Bolarnd C++ 5.5.1 free command line tools #### Start of system configuration section. #### # # Borland's make knows its own location in the # filesystem. # CC = bcc32 LIBDIR = $(MAKEDIR)\..\lib CFLAGS = -O2 -w-pro -TWC -P-c -v- -d -f- -ff- -vi LDFLAGS = -Tpe -v- -ap -c -x -V4.0 -GF:AGGRESSIVE LD = ilink32 LIBS = ${LIBDIR}\import32.lib ${LIBDIR}\cw32.lib #### End of system configuration section. #### # # This rule allows us to supply the necessary -D options # in addition to whatever the user asks for. # .c.obj: ${CC} -c -I. ${CPPFLAGS} ${CFLAGS} $< OBJ = \ main.obj screen.obj brac.obj ch.obj charset.obj cmdbuf.obj \ command.obj cvt.obj decode.obj edit.obj evar.obj filename.obj forwback.obj \ help.obj ifile.obj input.obj jump.obj lesskey_parse.obj line.obj linenum.obj \ lsystem.obj mark.obj optfunc.obj option.obj opttbl.obj os.obj \ output.obj pattern.obj position.obj prompt.obj search.obj signal.obj \ tags.obj ttyin.obj version.obj xbuf.obj regexp.obj all: less lesskey lessecho # # This is really horrible, but the command line is too long for # MS-DOS if we try to link ${OBJ}. # less: ${OBJ} ${LD} ${LDFLAGS} ${LIBDIR}\c0x32.obj $**, $@,,${LIBS} lesskey: lesskey.obj lesskey_parse.obj version.obj xbuf.obj ${LD} ${LDFLAGS} ${LIBDIR}\c0x32.obj $**, $@,,${LIBS} lessecho: lessecho.obj version.obj ${LD} ${LDFLAGS} ${LIBDIR}\c0x32.obj $**, $@,,${LIBS} defines.h: defines.wn -del defines.h -copy defines.wn defines.h ${OBJ}: less.h defines.h funcs.h cmd.h clean: -del *.obj -del *.il? -del *.tds -del defines.h spotless: clean -del less.exe -del lesskey.exe -del lessecho.exe realclean: spotless distclean: spotless less-668/Makefile.wng0000644060175306017530000001163314700607725013637 0ustar marknmarkn# Makefile for less using mingw-w64 package: # http://mingw-w64.org/doku.php # # Derived from Makefile.wnm # # Usage: mingw32-make -f Makefile.wng [REGEX_PACKAGE={posix|gnu|regcomp-local}] # # When cross compiling, add also: SHELL=sh CC= # # The optional command line parameter "REGEX_PACKAGE" is used to specify # a regular expression package for compilation and linking. This parameter # can assume one of three values. # # REGEX_PACKAGE == regcomp-local # This choice selects the regular expression package written by Henry # Spencer. It is implemented by the repository file "regexp.c". # # REGEX_PACKAGE == posix # This choice selects the POSIX implementation and is provided by MingW. # This is the default choice. # # REGEX_PACKAGE == gnu # This choice selects the GNU implementation and is provided by MingW. # # REGEX_PACKAGE == none # This choice disables regex, and instead uses smart plain text search. # # By default, the files help.c and funcs.h are generated using few posix # utilities (grep, sed, etc). On Windows, if the tools are missing, add: # WINGEN=1 # to compile a native C program which will be used instead of the posix tools. # NOTE: to cross compile with WINGEN=1, e.g. to arm, first run with native CC: # make -f Makefile.wng CC=gcc buildgen.exe # and then compile `less` with the arm CC: # make -f Makefile.wng WINGEN=1 CC=armv7... #### Start of system configuration section. #### CC = gcc # Definitions specific to mingw # MINGW_DEFINES = -DMINGW -DWIN32 # This specifies the "root" directory of the MingW installation. # It is defined so that the compiler and linker can find the header files # and library that provide regular expression support. # MINGW_ROOT_PATH = /mingw-w64/mingw64 # Determine the regular expression package to be used. # REGEX_PACKAGE ?= regcomp-local ifeq (${REGEX_PACKAGE},regcomp-local) MINGW_DEFINES += -DUSE_REGEXP_C else ifeq (${REGEX_PACKAGE},posix) MINGW_DEFINES += -DUSE_POSIX_REGCOMP else ifeq (${REGEX_PACKAGE},gnu) MINGW_DEFINES += -DUSE_GNU_REGEX else ifeq (${REGEX_PACKAGE},none) # without specific regex package, defines.wn sets NO_REGEX=1 else $(error REGEX_PACKAGE must be posix, gnu, regcomp-local or none) endif MINGW_REGEX_IPATH = -I${MINGW_ROOT_PATH}/opt/include MINGW_REGEX_LPATH = -L${MINGW_ROOT_PATH}/opt/lib MINGW_REGEX_LIB = -lregex CFLAGS_MINGW = ${MINGW_DEFINES} ifneq (${REGEX_PACKAGE},regcomp-local) CFLAGS_MINGW += ${MINGW_REGEX_IPATH} endif # MingW may use sh.exe instead of cmd.exe. # Default to cmd.exe, but allow sh.exe too, e.g. for cross compile. # SHELL = cmd.exe ifeq (${SHELL},cmd.exe) CP = copy MV = move RM = del DIFF = comp /M else CP = cp MV = mv RM = rm DIFF = diff endif CFLAGS = -O2 ${CFLAGS_MINGW} ifneq (${REGEX_PACKAGE},none) ifneq (${REGEX_PACKAGE},regcomp-local) LDFLAGS = ${MINGW_REGEX_LPATH} LIBS = ${MINGW_REGEX_LIB} endif endif LIBS += -lshell32 #### End of system configuration section. #### # This rule allows us to supply the necessary -D options # in addition to whatever the user asks for. .c.o: ${CC} -c -I. ${CFLAGS} $< LESS_SRC = brac.c ch.c charset.c cmdbuf.c command.c \ cvt.c decode.c edit.c evar.c filename.c forwback.c \ ifile.c input.c jump.c line.c linenum.c \ lsystem.c main.c mark.c optfunc.c option.c \ opttbl.c os.c output.c pattern.c position.c \ prompt.c screen.c scrsize.c search.c \ signal.c tags.c ttyin.c version.c xbuf.c ifeq (${REGEX_PACKAGE},regcomp-local) LESS_SRC += regexp.c endif OBJ = \ main.o screen.o brac.o ch.o charset.o cmdbuf.o \ command.o cvt.o decode.o edit.o evar.o filename.o forwback.o \ help.o ifile.o input.o jump.o lesskey_parse.o line.o linenum.o \ lsystem.o mark.o optfunc.o option.o opttbl.o os.o \ output.o pattern.o position.o prompt.o search.o signal.o \ tags.o ttyin.o version.o xbuf.o ifeq (${REGEX_PACKAGE},regcomp-local) OBJ += regexp.o endif all: less.exe lesskey.exe lessecho.exe less.exe: ${OBJ} ${CC} ${LDFLAGS} -o $@ ${OBJ} ${LIBS} lesskey.exe: lesskey.o lesskey_parse.o version.o xbuf.o ${CC} ${LDFLAGS} -o $@ lesskey.o lesskey_parse.o version.o xbuf.o lessecho.exe: lessecho.o version.o ${CC} ${LDFLAGS} -o $@ lessecho.o version.o lessecho.o version.o: less.h defines.h funcs.h defines.h: defines.wn ${CP} $< $@ ifeq (${WINGEN},1) BUILDGEN = buildgen.exe MKHELP = buildgen.exe help MKFUNCS = type 2>NUL ${LESS_SRC} | buildgen.exe funcs else MKHELP = (perl mkhelp.pl || sh mkhelp.sh) MKFUNCS = grep -h "^public [^;]*$$" ${LESS_SRC} | sed "s/$$/;/" endif funcs.h: ${LESS_SRC} ${BUILDGEN} -${CP} funcs.h funcs.h.old ${MKFUNCS} >funcs.h.tmp ${DIFF} funcs.h.tmp funcs.h || ${MV} funcs.h.tmp funcs.h help.c: less.hlp ${BUILDGEN} ${MKHELP} < less.hlp > $@ buildgen.exe: buildgen.c ${CC} $< -o $@ ${OBJ}: less.h defines.h funcs.h TAGS: etags *.c *.h clean: -${RM} *.o *.exe defines.h funcs.h help.c TAGS less-668/Makefile.wnm0000644060175306017530000000407414700607724013645 0ustar marknmarkn# Makefile for less. # Windows 32/64 Visual C++ version # # To build in msvc env (VCVARS32.BAT, VCVARS64.BAT, ...) # # A release tarball: # nmake -f Makefile.wnm # # A git snapshot: # nmake -f Makefile.wnm generated # nmake -f Makefile.wnm # # If cross compiling (e.g. arm): "generated" should be made in a native env. # Else (native build) this works too: nmake -f Makefile.wnm generated less.exe #### Start of system configuration section. #### CC = cl # Normal flags CFLAGS = /nologo /W3 /EHsc /O2 /I "." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /c LDFLAGS = /nologo /subsystem:console /incremental:no # Debugging flags #CFLAGS = /nologo /MDd /W3 /GX /Od /Gm /Zi /I "." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /c #LDFLAGS = /nologo /subsystem:console /incremental:yes /debug LD = link LIBS = user32.lib shell32.lib #### End of system configuration section. #### # This rule allows us to supply the necessary -D options # in addition to whatever the user asks for. .c.obj:: $(CC) $(CFLAGS) $< OBJ = \ main.obj screen.obj brac.obj ch.obj charset.obj cmdbuf.obj \ command.obj cvt.obj decode.obj edit.obj evar.obj filename.obj forwback.obj \ help.obj ifile.obj input.obj jump.obj lesskey_parse.obj line.obj linenum.obj \ lsystem.obj mark.obj optfunc.obj option.obj opttbl.obj os.obj \ output.obj pattern.obj position.obj prompt.obj search.obj signal.obj \ tags.obj ttyin.obj version.obj xbuf.obj regexp.obj all: less.exe lesskey.exe less.exe: $(OBJ) $(LD) $(LDFLAGS) $** $(LIBS) /out:$@ lesskey.exe: lesskey.obj lesskey_parse.obj version.obj xbuf.obj $(LD) $(LDFLAGS) lesskey.obj lesskey_parse.obj version.obj xbuf.obj $(LIBS) /out:$@ defines.h: defines.wn -del defines.h -copy defines.wn defines.h $(OBJ): less.h defines.h funcs.h cmd.h # generate help.c and funcs.h. We use *.c because we don't have a sources list. # intentionally detached from $(OBJ) in case of cross compile - needs native cc generated: $(CC) buildgen.c buildgen.exe help < less.hlp > help.c type *.c 2>NUL | buildgen.exe funcs > funcs.h clean: -del *.obj -del less.exe -del lesskey.exe -del defines.h less-668/mark.c0000444060175306017530000002072714700607623012502 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ #include "less.h" #include "position.h" extern IFILE curr_ifile; extern int sc_height; extern int jump_sline; extern int perma_marks; /* * A mark is an ifile (input file) plus a position within the file. */ struct mark { /* * Normally m_ifile != IFILE_NULL and m_filename == NULL. * For restored marks we set m_filename instead of m_ifile * because we don't want to create an ifile until the * user explicitly requests the file (by name or mark). */ char m_letter; /* Associated character */ IFILE m_ifile; /* Input file being marked */ char *m_filename; /* Name of the input file */ struct scrpos m_scrpos; /* Position of the mark */ }; /* * The table of marks. * Each mark is identified by a lowercase or uppercase letter. * The final one is lmark, for the "last mark"; addressed by the apostrophe. */ #define NMARKS ((2*26)+2) /* a-z, A-Z, mousemark, lastmark */ #define NUMARKS ((2*26)+1) /* user marks (not lastmark) */ #define MOUSEMARK (NMARKS-2) #define LASTMARK (NMARKS-1) static struct mark marks[NMARKS]; public int marks_modified = 0; /* * Initialize a mark struct. */ static void cmark(struct mark *m, IFILE ifile, POSITION pos, int ln) { m->m_ifile = ifile; m->m_scrpos.pos = pos; m->m_scrpos.ln = ln; if (m->m_filename != NULL) /* Normally should not happen but a corrupt lesshst file can do it. */ free(m->m_filename); m->m_filename = NULL; } /* * Initialize the mark table to show no marks are set. */ public void init_mark(void) { int i; for (i = 0; i < NMARKS; i++) { char letter; switch (i) { case MOUSEMARK: letter = '#'; break; case LASTMARK: letter = '\''; break; default: letter = (char) ((i < 26) ? 'a'+i : 'A'+i-26); break; } marks[i].m_letter = letter; cmark(&marks[i], NULL_IFILE, NULL_POSITION, -1); } } /* * Set m_ifile and clear m_filename. */ static void mark_set_ifile(struct mark *m, IFILE ifile) { m->m_ifile = ifile; /* With m_ifile set, m_filename is no longer needed. */ free(m->m_filename); m->m_filename = NULL; } /* * Populate the m_ifile member of a mark struct from m_filename. */ static void mark_get_ifile(struct mark *m) { if (m->m_ifile != NULL_IFILE) return; /* m_ifile is already set */ mark_set_ifile(m, get_ifile(m->m_filename, prev_ifile(NULL_IFILE))); } /* * Return the user mark struct identified by a character. */ static struct mark * getumark(char c) { PARG parg; if (c >= 'a' && c <= 'z') return (&marks[c-'a']); if (c >= 'A' && c <= 'Z') return (&marks[c-'A'+26]); if (c == '\'') return (&marks[LASTMARK]); if (c == '#') return (&marks[MOUSEMARK]); parg.p_char = (char) c; error("Invalid mark letter %c", &parg); return (NULL); } /* * Get the mark structure identified by a character. * The mark struct may either be in the mark table (user mark) * or may be constructed on the fly for certain characters like ^, $. */ static struct mark * getmark(char c) { struct mark *m; static struct mark sm; switch (c) { case '^': /* * Beginning of the current file. */ m = &sm; cmark(m, curr_ifile, ch_zero(), 0); break; case '$': /* * End of the current file. */ if (ch_end_seek()) { error("Cannot seek to end of file", NULL_PARG); return (NULL); } m = &sm; cmark(m, curr_ifile, ch_tell(), sc_height); break; case '.': /* * Current position in the current file. */ m = &sm; get_scrpos(&m->m_scrpos, TOP); cmark(m, curr_ifile, m->m_scrpos.pos, m->m_scrpos.ln); break; case '\'': /* * The "last mark". */ m = &marks[LASTMARK]; break; default: /* * Must be a user-defined mark. */ m = getumark(c); if (m == NULL) break; if (m->m_scrpos.pos == NULL_POSITION) { error("Mark not set", NULL_PARG); return (NULL); } break; } return (m); } /* * Is a mark letter invalid? */ public int badmark(char c) { return (getmark(c) == NULL); } /* * Set a user-defined mark. */ public void setmark(char c, int where) { struct mark *m; struct scrpos scrpos; m = getumark(c); if (m == NULL) return; get_scrpos(&scrpos, where); if (scrpos.pos == NULL_POSITION) { bell(); return; } cmark(m, curr_ifile, scrpos.pos, scrpos.ln); marks_modified = 1; } /* * Clear a user-defined mark. */ public void clrmark(char c) { struct mark *m; m = getumark(c); if (m == NULL) return; if (m->m_scrpos.pos == NULL_POSITION) { bell(); return; } m->m_scrpos.pos = NULL_POSITION; marks_modified = 1; } /* * Set lmark (the mark named by the apostrophe). */ public void lastmark(void) { struct scrpos scrpos; if (ch_getflags() & CH_HELPFILE) return; get_scrpos(&scrpos, TOP); if (scrpos.pos == NULL_POSITION) return; cmark(&marks[LASTMARK], curr_ifile, scrpos.pos, scrpos.ln); marks_modified = 1; } /* * Go to a mark. */ public void gomark(char c) { struct mark *m; struct scrpos scrpos; m = getmark(c); if (m == NULL) return; /* * If we're trying to go to the lastmark and * it has not been set to anything yet, * set it to the beginning of the current file. * {{ Couldn't we instead set marks[LASTMARK] in edit()? }} */ if (m == &marks[LASTMARK] && m->m_scrpos.pos == NULL_POSITION) cmark(m, curr_ifile, ch_zero(), jump_sline); mark_get_ifile(m); /* Save scrpos; if it's LASTMARK it could change in edit_ifile. */ scrpos = m->m_scrpos; if (m->m_ifile != curr_ifile) { /* * Not in the current file; edit the correct file. */ if (edit_ifile(m->m_ifile)) return; } jump_loc(scrpos.pos, scrpos.ln); } /* * Return the position associated with a given mark letter. * * We don't return which screen line the position * is associated with, but this doesn't matter much, * because it's always the first non-blank line on the screen. */ public POSITION markpos(char c) { struct mark *m; m = getmark(c); if (m == NULL) return (NULL_POSITION); if (m->m_ifile != curr_ifile) { error("Mark not in current file", NULL_PARG); return (NULL_POSITION); } return (m->m_scrpos.pos); } /* * Return the mark associated with a given position, if any. */ public char posmark(POSITION pos) { unsigned char i; /* Only user marks */ for (i = 0; i < NUMARKS; i++) { if (marks[i].m_ifile == curr_ifile && marks[i].m_scrpos.pos == pos) { if (i < 26) return (char) ('a' + i); if (i < 26*2) return (char) ('A' + (i - 26)); return '#'; } } return 0; } /* * Clear the marks associated with a specified ifile. */ public void unmark(IFILE ifile) { int i; for (i = 0; i < NMARKS; i++) if (marks[i].m_ifile == ifile) marks[i].m_scrpos.pos = NULL_POSITION; } /* * Check if any marks refer to a specified ifile vi m_filename * rather than m_ifile. */ public void mark_check_ifile(IFILE ifile) { int i; constant char *filename = get_real_filename(ifile); for (i = 0; i < NMARKS; i++) { struct mark *m = &marks[i]; char *mark_filename = m->m_filename; if (mark_filename != NULL) { mark_filename = lrealpath(mark_filename); if (strcmp(filename, mark_filename) == 0) mark_set_ifile(m, ifile); free(mark_filename); } } } #if CMD_HISTORY /* * Save marks to history file. */ public void save_marks(FILE *fout, constant char *hdr) { int i; if (!perma_marks) return; fprintf(fout, "%s\n", hdr); for (i = 0; i < NMARKS; i++) { constant char *filename; struct mark *m = &marks[i]; char pos_str[INT_STRLEN_BOUND(m->m_scrpos.pos) + 2]; if (m->m_scrpos.pos == NULL_POSITION) continue; postoa(m->m_scrpos.pos, pos_str, 10); filename = m->m_filename; if (filename == NULL) filename = get_real_filename(m->m_ifile); if (strcmp(filename, "-") != 0) fprintf(fout, "m %c %d %s %s\n", m->m_letter, m->m_scrpos.ln, pos_str, filename); } } /* * Restore one mark from the history file. */ public void restore_mark(constant char *line) { struct mark *m; int ln; POSITION pos; #define skip_whitespace while (*line == ' ') line++ if (*line++ != 'm') return; skip_whitespace; m = getumark(*line++); if (m == NULL) return; skip_whitespace; ln = lstrtoic(line, &line, 10); if (ln < 0) return; if (ln < 1) ln = 1; if (ln > sc_height) ln = sc_height; skip_whitespace; pos = lstrtoposc(line, &line, 10); if (pos < 0) return; skip_whitespace; cmark(m, NULL_IFILE, pos, ln); m->m_filename = save(line); } #endif /* CMD_HISTORY */ less-668/mkhelp.pl0000555060175306017530000000255714700607663013231 0ustar marknmarkn#! /usr/bin/env perl use strict; # Silly little program to generate the help.c source file # from the less.hlp text file. # The output of this script is a C program defining a char array # whose content is the input to this script. { my ($sec,$min,$hour,$mday,$mon,$year) = gmtime(); printf "/* This file was generated by mkhelp.pl from less.hlp at %d:%02d on %d/%d/%d */\n", $hour, $min, $year+1900, $mon+1, $mday; print "#include \"less.h\"\n"; print "constant char helpdata[] = {\n"; my $ch = 0; my $prevch; for (;;) { $prevch = $ch; $ch = getc(); last if not defined $ch; if ($ch eq "'") { print "'\\'',"; } elsif ($ch eq "\\") { print "'\\\\',"; } elsif ($ch eq "\b") { print "'\\b',"; } elsif ($ch eq "\t") { print "'\\t',"; } elsif ($ch eq "\n") { print "'\\n',\n" if $prevch ne "\r"; } elsif ($ch eq "\r") { print "'\\n',\n" if $prevch ne "\n"; } else { if (ord($ch) >= ord(' ') && ord($ch) < 0x7f) { print "'$ch',"; } else { printf "0x%02x,", ord($ch); } } } # Add an extra null char to avoid having a trailing comma. print " 0 };\n"; print "constant int size_helpdata = sizeof(helpdata) - 1;\n"; } less-668/mkhelp.py0000555060175306017530000000175414700607664013245 0ustar marknmarkn#!/usr/bin/env python import time import sys time = time.gmtime() print("/* This file was generated by mkhelp.py from less.hlp at "\ "%d:%02d GMT on %d/%d/%d */\n" % (time.tm_hour, time.tm_min, time.tm_year, time.tm_mon, time.tm_mday)) print("#include \"less.h\"") print("constant char helpdata[] = {") ch = 0 while True: prevch = ch ch = sys.stdin.read(1) if ch == '': break if (ch == "'"): print("'\\'',", end='') elif (ch == "\\"): print("'\\\\',", end='') elif (ch == "\b"): print ("'\\b',", end='') elif (ch == "\t"): print ("'\\t',", end='') elif (ch == "\n"): if prevch != "\r": print("'\\n',") elif (ch == "\r"): if prevch != "\n": print("'\\n',") else: if ((ord(ch) >= ord(' ')) and (ord(ch) < 0x7f)): print(f"'{ch}',", end='') else: print("0x%02x," % ord(ch), end='') print(" '\\0' };") print("constant int size_helpdata = sizeof(helpdata) - 1;") less-668/mkinstalldirs0000555060175306017530000000121114700607656014203 0ustar marknmarkn#!/bin/sh # mkinstalldirs --- make directory hierarchy # Author: Noah Friedman # Created: 1993-05-16 # Last modified: 1994-03-25 # Public domain errstatus=0 for file in ${1+"$@"} ; do set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` shift pathcomp= for d in ${1+"$@"} ; do pathcomp="$pathcomp$d" case "$pathcomp" in -* ) pathcomp=./$pathcomp ;; esac if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" 1>&2 mkdir "$pathcomp" || errstatus=$? fi pathcomp="$pathcomp/" done done exit $errstatus # mkinstalldirs ends here less-668/mkutable0000555060175306017530000000636714700607664013147 0ustar marknmarkn#!/usr/bin/env perl use strict; my $USAGE = <<__EOF__; usage: mkutable [-n] [-f#] type... [--] [<] UnicodeData.txt -n = take non-matching types -f = zero-based type field (default 2) __EOF__ use Getopt::Std; use vars qw( $opt_f $opt_n ); my $type_field = 2; # Override Unicode tables for certain control chars # that are expected to be found in normal text files. my %force_space = ( 0x08 => 1, # backspace 0x09 => 1, # tab 0x0a => 1, # newline 0x0c => 1, # form feed 0x0d => 1, # carriage return ); # Hangul Jamo medial vowels and final consonants should be zero width. my @force_compose = ( [0x1160, 0x11ff], [0xd7b0, 0xd7c6], [0xd7cb, 0xd7fb] ); exit (main() ? 0 : 1); sub main { my $args = join ' ', @ARGV; die $USAGE if not getopts('f:n'); $type_field = $opt_f if $opt_f; my %types; my $arg; while ($arg = shift @ARGV) { last if $arg eq '--'; $types{$arg} = 1; } my %out = ( 'types' => \%types ); my %force_compose; foreach my $comp (@force_compose) { my ($lo,$hi) = @$comp; for (my $ch = $lo; $ch <= $hi; ++$ch) { $force_compose{$ch} = 1; } } my $date = `date`; chomp $date; print "/* Generated by \"$0 $args\" on $date */\n"; my $last_code = 0; my $start_range = 0; while (<>) { chomp; s/#.*//; my @fields = split /;/; next if not @fields; my ($lo_code, $hi_code); my $codes = $fields[0]; if ($codes =~ /(\w+)\.\.(\w+)/) { $lo_code = hex $1; $hi_code = hex $2; } else { $lo_code = $hi_code = hex $codes; } if ($fields[1] =~ /, First>$/) { die "invalid Unicode data: First with range" if $hi_code != $lo_code; $start_range = $lo_code; next; } if ($fields[1] =~ /, Last>$/) { die "invalid Unicode data: Last without First" if not $start_range; $lo_code = $start_range; $start_range = 0; } elsif ($start_range) { die "invalid Unicode data: First without Last"; } my $type = $fields[$type_field]; $type =~ s/\s//g; for ($last_code = $lo_code; $last_code <= $hi_code; ++$last_code) { output(\%out, $last_code, $force_space{$last_code} ? 'Zs' : $force_compose{$last_code} ? 'Mn' : $type); } } output(\%out, $last_code); return 1; } sub output { my ($out, $code, $type) = @_; my $type_ok = ($type and ${${$out}{types}}{$type}); $type_ok = not $type_ok if $opt_n; my $prev_code = $$out{prev_code}; if (not $type_ok) { end_run($out, $prev_code); } elsif (not $$out{in_run} or $type ne $$out{run_type} or $code != $prev_code+1) { end_run($out, $prev_code); start_run($out, $code, $type); } $$out{prev_code} = $code; } sub start_run { my ($out, $code, $type) = @_; $$out{start_code} = $code; $$out{prev_code} = $code; $$out{run_type} = $type; $$out{in_run} = 1; } sub end_run { my ($out, $code) = @_; return if not $$out{in_run}; printf "\t{ 0x%04x, 0x%04x }, /* %s */\n", $$out{start_code}, $code, $$out{run_type}; $$out{in_run} = 0; } less-668/NEWS0000444060175306017530000012623514700607641012104 0ustar marknmarkn NEWS about less ====================================================================== For the latest news about less, see https://greenwoodsoftware.com/less You can also download the latest version of less from there. Report bugs, suggestions or comments at https://github.com/gwsw/less/issues. ====================================================================== Major changes between "less" versions 661 and 668 * Make 256/true colors work better on Windows without -Da (github #539, github #546, github #562). * Fix build using --with-secure (github #544). * Fix crash when using --header on command line (github #545). * Fix possible crash when scrolling left/right or toggling -S (github #547). * Fix bug when using #stop in a lesskey file (github #551). * Fix bug when using --shift or --match-shift on command line with a parameter starting with '.' (github #554). * Fix bug in R command when file size changes (github #553). * Fix bug using --header when file does not fill screen (github #556). * Fix ^X bug when output is not a terminal (github #558). * Fix bug where ^Z is not handled immediately (github #563). * Fix bug where first byte from a LESSOPEN filter is deleted if it is greater than 0x7F (github #568). * Fix uninitialized variable in edit_ifile (github #573). * Fix incorrect handling of UTF-8 chars in prompts (github #576). ====================================================================== Major changes between "less" versions 643 and 661 * Add ^O^N, ^O^P, ^O^L and ^O^O commands and mouse clicks (with --mouse) to find and open OSC8 hyperlinks (github #251). * Add --match-shift option. * Add --lesskey-content option (github #447). * Add LESSKEY_CONTENT environment variable (github #447). * Add --no-search-header-lines and --no-search-header-columns options (github #397). * Add ctrl-L search modifier (github #367). * A ctrl-P at the start of a shell command suppresses the "done" message (github #462). * Add attribute characters ('*', '~', '_', '&') to --color parameter (github #471). * Allow expansion of environment variables in lesskey files. * Add LESSSECURE_ALLOW environment variable (github #449). * Add LESS_UNSUPPORT environment variable. * Add line number parameter to --header option (github #436). * Mouse right-click jumps to position marked by left-click (github #390). * Ensure that the target line is not obscured by a header line set by --header (github #444). * Change default character set to "utf-8", except remains "dos" on MS-DOS. * Add message when search with ^W wraps (github #459). * UCRT builds on Windows 10 and later now support Unicode file names (github #438). * Improve behavior of interrupt while reading non-terminated pipe (github #414). * Improve parsing of -j, -x and -# options (github #393). * Support files larger than 4GB on Windows (github #417). * Support entry of Unicode chars larger than U+FFFF on Windows (github #391). * Improve colors of bold, underline and standout text on Windows. * Allow --rscroll to accept non-ASCII characters (github #483). * Allow the parameter to certain options to be terminated with a space (--color, --quotes, --rscroll, --search-options and --intr) (github #495). * Fix bug where # substitution failed after viewing help (github #420). * Fix crash if files are deleted while less is viewing them (github #404). * Workaround unreliable ReadConsoleInputW behavior on Windows with non-ASCII input. * Fix -J display when searching for non-ASCII characters (github #422). * Don't filter header lines via the & command (github #423). * Fix bug when horizontally shifting long lines (github #425). * Add -x and -D options to lesstest, to make it easier to diagnose a failed lesstest run. * Fix bug searching long lines with --incsearch and -S (github #428). * Fix bug that made ESC-} fail if top line on screen was empty (github #429). * Fix bug with --mouse on Windows when used with pipes (github #440). * Fix bug in --+OPTION command line syntax. * Fix display bug when using -w with an empty line with a CR/LF line ending (github #474). * When substituting '#' or '%' with a filename, quote the filename if it contains a space (github #480). * Fix wrong sleep time when system has usleep but not nanosleep (github #489). * Fix bug when file name contains a newline. * Fix bug when file name contains nonprintable characters (github #503). * Fix DJGPP build (github #497). * Update Unicode tables. ====================================================================== Major changes between "less" versions 633 and 643 * Fix problem when a program piping into less reads from the tty, like sudo asking for password (github #368). * Fix search modifier ^E after ^W. * Fix bug using negated (^N) search (github #374). * Fix bug setting colors with -D on Windows build (github #386). * Fix reading special chars like PageDown on Windows (github #378). * Fix mouse wheel scrolling on Windows (github #379). * Fix erroneous EOF when terminal window size changes (github #372). * Fix compile error with some definitions of ECHONL (github #395). * Fix crash on Windows when writing logfile (github #405). * Fix regression in exit code when stdin is /dev/null and output is a file (github #373). * Add lesstest test suite to production release (github #344). * Change lesstest output to conform with automake Simple Test Format (github #399). ====================================================================== Major changes between "less" versions 632 and 633 * Fix build on systems which have ncurses/termcap.h or ncursesw/termcap.h but not termcap.h. ====================================================================== Major changes between "less" versions 608 and 632 * Add LESSUTFCHARDEF environment variable (github #275). * Add # command (github #330). * Add ^S search modifier (github #196). * Add --wordwrap option (github #113). * Add --no-vbell option (github #304). * Add --no-search-headers option (github #44). * Add --modelines option (github #89). * Add --intr option (github #224). * Add --proc-backspace, --proc-tab and --proc-return options (github #335). * Add --show-preproc-errors option (github #258). * Add LESS_LINES and LESS_COLUMNS environment variables (github #84). * Add LESS_DATA_DELAY environment variable (github #337). * Allow empty "lines" field in --header option. * Update Unicode tables. * Improve ability of ^X to interrupt F command (github #49). * Status column (-J) shows off-screen matches. * Parenthesized sub-patterns in searches are colored with unique colors, if supported by the regular expression library (github #196). * Don't allow opening a tty as file input unless -f is set (github #309). * Don't require newline input after +&... option (github #339). * Fix incorrect handling of some Private Use Unicode characters. * Fix ANSI color bug when overstriking with colored chars (github #276). * Fix compiler const warning (github #279). * Fix signal race in iread (github #280). * Fix reading procfs files on Linux (github #282). * Fix --ignore-case with ctrl-R (no regex) search (github #300). * Fix bug doing repeat search after setting & filter (github #299). * Fix bug doing repeat search before non-repeat search. * Fix crash with -R and certain line lengths (github #338). * Fix input of Windows dead keys (github #352). * Don't retain search options from a cancelled search (github #302). * Don't call realpath on fake filenames like "-" (github #289). * Implement lesstest test suite. * Convert function parameter definitions from K&R to C89 (github #316). ====================================================================== Major changes between "less" versions 590 and 608 * Add the --header option (github #43). * Add the --no-number-headers option (github #178). * Add the --status-line option. * Add the --redraw-on-quit option (github #36). * Add the --search-options option (github #213). * Add the --exit-follow-on-close option (github #244). * Add 'H' color type to set color of header lines. * Add #version conditional to lesskey. * Add += syntax to variable section in lesskey files. * Allow option name in -- command to end with '=' in addition to '\n'. * Add $HOME/.config to possible locations of lesskey file (github #153). * Add $XDG_STATE_HOME and $HOME/.local/state to possible locations of history file (github #223). * Don't read or write history file in secure mode (github #201). * Fix display of multibyte and double-width chars in prompt. * Fix ESC-BACKSPACE command when BACKSPACE key does not send 0x08 (github #188). * Add more \k codes to lesskey format. * Fix bug when empty file is modified while viewing it. * Fix bug when parsing a malformed lesskey file (githb #234). * Fix bug scrolling history when --incsearch is set (github #214). * Fix buffer overflow when invoking lessecho with more than 63 -m/-n options (github #198). * Fix buffer overflow in bin_file (github #271). * Fix bug restoring color at end of highlighted text. * Fix bug in parsing lesskey file. * Defer moving cursor to lower left in some more cases. * Suppress TAB filename expansion in some cases where it doesn't make sense. * Fix termlib detection when compiler doesn't accept calls to undeclared functions. * Fix bug in input of non-ASCII characters on Windows (github #247) * Escape filenames when invoking LESSCLOSE. * Fix bug using multibyte UTF-8 char in search string with --incsearch (github #273). ====================================================================== Major changes between "less" versions 581 and 590 * Make less able to read lesskey source files (deprecating lesskey). * If XDG_CONFIG_HOME is set, find lesskey source file in $XDG_CONFIG_HOME/lesskey rather than $HOME/.lesskey. * If XDG_DATA_HOME is set, find and store history file in $XDG_DATA_HOME/lesshst rather than $HOME/.lesshst. * Add the --lesskey-src option. * Add the --file-size option. * With -F, if screen is resized to make file fit on one screen, don't exit. * Fix bug which could leave terminal in mouse-reporting mode after exiting less. * Fix bug which caused failure to respond to window resize. * Fix backslash bug searching in tag file. ====================================================================== Major changes between "less" versions 563 and 581 * Change ESC-u command to toggle, not disable, highlighting per man page. * Add ESC-U command. * Add ctrl-W search modifier for wrapping search. * F command can be interrupted by ^X. * Support OSC 8 hyperlinks when -R is in effect. * g command with no number will ignore -j and put first line at top of screen. * Multiple + or -p command line options are handled better. * Add the --incsearch option. * Add the --line-num-width option. * Add the --status-col-width option. * Add the --use-color and --color options. * Display -w highlight even if highlighted line is empty. * If search result is in a long line, scroll to ensure it is visible. * Editing the same file under different names now creates only one entry in the file list. * Make visual bell more visible on some terminals. * Ring end-of-file bell no more than once per second. * Build can use either Python or Perl for Makefile.aut operations. * Fix crash when using the @ search modifier. * Fix crash in the 's' command due to duplicate free. * Fix realpath crash on Darwin. ====================================================================== Major changes between "less" versions 551 and 563 * Update Unicode tables. * Treat Hangul Jamo medial vowels and final consonants as zero width. * Display error message immediately when -o is toggled and input is not a pipe. * Fix regression: make screen repaint when "squished" and a no-movement command is given. * Fix erroneous EOF calculation when F command is interrupted. * Make WIN32C version include this fix from 551: Don't count lines in initial screen if using -X with -F. * Fix display bug in WIN32C version. * Fix memory corruption when built with libtermcap. * Support libtinfow. ====================================================================== Major changes between "less" versions 530 and 551 * Add --mouse option. * Add --wheel-lines option. * Add --no-histdups option. * Add --save-marks option. * Support PCRE2 regular expression library. * Redraw screen on SIGWINCH even if screen size doesn't change. * Shell-escape filenames in history so they can be used again. * Ring bell if user enters invalid long option name. * Use PCRE_UTF8 flag for pcre regular expressions when in UTF-8 mode. * Windows: use wide-char string to set console title. * Don't count lines in initial screen if using -X with -F. * Support mingw build system. * Fix bug in v command on empty file. * Fix bug in v command when filename contains shell metacharacters. ====================================================================== Major changes between "less" versions 487 and 530 * Don't output terminal init sequence if using -F and file fits on one screen. * When using -S, mark truncated lines with a special character. The character can be changed or disabled via the new --rscroll option. * New command M marks the last line displayed on the screen. * New command ESC-m removes a line mark. * Status column (enabled via -J) now shows mark letters. * Status column shows search matches even if highlighting is disabled via -G. * A second ESC-u command will clear search match markers in the status column. * Do same ANSI escape code filtering for tag matching that we do for searching, to help when viewing syntax-highlighted code. * Catch SIGTERM and clean up before exiting. * Fix bug initializing default charset on Windows. * Handle keypad ENTER key correctly if it sends something other than newline. * Fix buffering bug when using stdin with a LESSOPEN pipe. * On Windows, allow 'u' in -D option to enable underlining. * On Windows, use underline in sgr mode. * On Windows, convert UTF-8 to multibyte if console is not UTF-8. * Update Unicode tables to 2017-03-08. * Pass-thru Unicode formatting chars (Cf type) instead of treating them as binary chars. But treat them as binary if -U is set. * Fix erroneous binary file warning when UTF-8 file contains ANSI SGR sequences. * Fix bugs when using LESSOPEN and switching between stdin and other files. * Fix some bugs handling filenames containing shell metacharacters. * Fix some memory leaks. * Allow some debugging environment variables to be set in lesskey file. * Code improvements: . Use ANSI prototypes in funcs.h declarations. . Fix some const mismatches. . Remove archaic "register" in variable declarations. ====================================================================== Major changes between "less" versions 481 and 487 * New commands ESC-{ and ESC-} to shift to start/end of displayed lines. * Make search highlights work correctly when changing caselessness with -i. * New option -Da in Windows version to enable SGR mode. * Fix "nothing to search" error when top or bottom line on screen is empty. * Fix bug when terminal has no "cm" termcap entry. * Fix incorrect display when entering double-width chars in search string. * Fix bug in Unicode handling that missed some double width characters. * Update Unicode database to 9.0.0. ====================================================================== Major changes between "less" versions 458 and 481 * Don't overwrite history file; just append to it. * New command ESC-G goes to end of currently buffered data in a pipe. * Disable history feature when compiled with LESSHISTFILE set to "-". * In more-compatible mode, make the -p option apply to every file opened, not just the first one. * In more-compatible mode, change the -e option to work like -E, not -EF. * Treat multiple CRs before LF are like one CR (all the CRs are hidden). * Allow "extra" string in lesskey file to append to a multi-char command (like a search pattern), without executing the command. * Ignore -u/-U setting while viewing help file, so that underline and bold chars are displayed correctly. * Improve detection of "binary" files in UTF-8 mode. * Fix bug with ++ commands. * Fix bug where prompt was sometimes not displayed with +G. * Fix possible memory corruption * Fix bugs and improve performance in ampersand filtering. * Automate construction of Unicode tables from Unicode database. * Allow %% escape sequence in LESSOPEN variable. ====================================================================== Major changes between "less" versions 451 and 458 * Allow backslash escaping of metacharacters in LESS environment variable after the --use-backslash option. * Don't quit if syntax errors are found in command line options. * Increase sizes of some internal buffers. * Fix configure bug with --with-regex=none. * Fix crash with "stty rows 0". * Fix Win32 attribute display bug. * Fix display bug when using up/down arrow on the command line. ====================================================================== Major changes between "less" versions 444 and 451 * Add ESC-F command to keep reading data until a pattern is found. * Use exit code of LESSOPEN script if LESSOPEN starts with "||". * When up/down arrow is used on the command line immediately after typing text, the next command starting with that text is found. * Add support for GNU regex. * Add configure option --with-regex=none and fix compile errors when compiling with no regex library. * Fix bugs handling SGR sequences in Win32. * Fix possible crashes caused by malformed LESSOPEN or LESSCLOSE variables. * Fix bug highlighting text which is discontiguous in the file due to backspace processing. * Fix bug in displaying status column when scrolling backwards with -J and -S in effect. ====================================================================== Major changes between "less" versions 443 and 444 * Fix bug in unget handling that can cause strange effects on the command line. * Remove vestiges of obsolete -l option that can cause a crash. ====================================================================== Major changes between "less" versions 436 and 443 * Change search behavior such that when a search is given an explicit pattern, the entire displayed screen is included in the search and not just the portion after the target line. * Add -A option to change search behavior to the old way: only the portion of the screen after the target line is searched. * Add %F formatting to prompt strings, replaced by the last component of the input file. * Control-G while editing a command exits the command. * Less now exits with status 2 if control-C is pressed and -K is in effect. * Fix "ungetc overflow" when passing long commands via the -p option. * Fix bug in using line filtering via the & command in combination with -i and -I. * Fix bug in handling negative arguments to the -j option. * Fix bug in handling %t in prompt strings. * Improve handling of long option names. * Improve percentage calculation for very large files. ====================================================================== Major changes between "less" versions 429 and 436 * Don't pass "-" to non-pipe LESSOPEN unless it starts with "-". * Allow a fraction as the argument to the -# (--shift) option. * Fix highlight bug when underlined/overstruck text matches at end of line. * Fix non-regex searches with ctrl-R. ====================================================================== Major changes between "less" versions 424 and 429 * LESSOPEN pipe will now be used on standard input, if the LESSOPEN environment variable begins with "|-". * The -D option with one number now means use the normal background color. * Don't change permissions on history file if it is not a regular file. * Fix non-ANSI-compliant code that caused problems with some compilers. * Fix binary file detection in UTF-8 mode. * Fix display problems with long lines on "ignaw" terminals. * Fix problem interrupting the line number calculation for initial prompt. * Fix SGR emulation when dealing with multiple attributes (e.g. bold+underline). * Fix highlight bug when searching for underlined/overstruck text. ====================================================================== Major changes between "less" versions 418 and 424 * New "&" command allows filtering of lines based on a pattern. * Status column now displays a search match, even if the matched string is scrolled off screen because -S is in effect. * Improve behavior of -F option. * Allow CSI character (0x9B) to work in UTF-8 mode. * Output carriage return at startup in case terminal doesn't default to column 1. * Fix bug in '' (quote, quote) command after G command. ====================================================================== Major changes between "less" versions 416 and 418 * Color escape sequences are now supported in WIN32 build. * Makefile now uses EXEEXT feature of autoconf. * Fix search bug when using -R and text contains ANSI color escape sequences. * Fix crash when using -r with UTF-8 text containing 0x9B bytes. * Fix display bug when using ' command to move less than one page forward. * Update GPL to version 3. ====================================================================== Major changes between "less" versions 409 and 416 * New --follow-name option makes F command follow the name of a file rather than the file descriptor if an open file is renamed. * Make searching with -i/-I work correctly with non-ASCII text. * Fix DJGPP build. ====================================================================== Major changes between "less" versions 406 and 409 * Support CSI escape sequences, like SGR escape sequences. * Fix bug which caused screen to fail to repaint when window is resized. * Fix bug in using -i and -I flags with non-ASCII text. * Fix configure bug on systems which don't support langinfo.h. * Fix crash when searching text containing certain invalid UTF-8 sequences. ====================================================================== Major changes between "less" versions 394 and 406 * Allow decimal point in number for % (percent) command. * Allow decimal point in number for -j option (fraction of screen height). * Make n command fetch previous pattern from history file on first search. * Don't rewrite history file if it has not changed. * Don't move to bottom of screen on first page. * Don't output extraneous newlines, so copy & pasting lines from the output works better. * The -c option has been made identical with the -C option. * Allow "/dev/null" as synonym for "-" in LESSHISTFILE to indicate that no history file should be used. * Search can now find text which follows a null byte, if the PCRE library is used, or if no-regex searching (ctrl-R) is used. * Better compatibility with POSIX more specification. * Make -f work for directories. * Make "t" cmd traverse tags in the correct order. * Allow a few binary characters in the input file before warning that the file is binary. * Don't warn that file is binary if it merely contains ANSI color sequences and -R is in effect. * Update Unicode character tables. * Support DESTDIR in Makefile. * Fix bug when filename contains certain shell metacharacters such as "$". * Fix bug when resizing the window while waiting for input from a pipe. * Fix configure bugs. ====================================================================== Major changes between "less" versions 382 and 394 * Add history file to save search and shell command history between invocations of less. * Improve behavior of history list for search and shell commands. * Add -K (or --quit-on-intr) option to make less exit immediately on ctrl-C. * Improve handling of UTF-8 files and commands, including better line wrapping and handling double-width chars. * Added LESSUTFBINFMT environment variable to control display of non-printable characters in a UTF-8 file. * Add --with-secure option to configure, to make it easier to build a secure version of less. * Show search matches in the status column even if search highlights are disabled via the -G option or the ESC-u command. * Improve performance when the file contains very long lines. * Add "windows" charset. * Add man page for lessecho. * Add support for erase2 character, treated same as erase. * Use ASCII lowercase/uppercase logic when operating on the command line. * Update makefile for Borland C++ 5.5.1. * Fix bug in calculating number of pages for %D prompt. * Fix bug in handling tag file error. * Fix obscure bug if input file is deleted while viewing help. * Fix bug handling filenames which include square brackets. * Fix possible buffer overflow in "global" tag search. * Fix possible buffer overflow in usage of LESSOPEN and LESSCLOSE. * Fix buffer overflow in reverse search. ====================================================================== Major changes between "less" versions 381 and 382 * Removed some old copyrighted code. This probably breaks OS/9 support. ====================================================================== Major changes between "less" versions 378 and 381 * New -L option to disable LESSOPEN processing. * Further support for large (64 bit) file addressing. Large file support is now set up by the configure script. * Use autoconf 2.54. Replace configure.in, acconfig.h, defines.h.top with configure.ac. * Overstriking underscore with underscore is now bold or underlined depending on context. * Use only 7 spaces for line numbers in -N mode, if possible. * Fix some bugs in handling overstriking in UTF-8 files. * Fix some nroff issues in the man page. ====================================================================== Major changes between "less" versions 376 and 378 * Bug fixes: Default buffer space is now 64K as documented. Search highlighting works properly when used with -R. Windows version works properly when input file contains carriage returns. Clean up some compiler warnings. ====================================================================== Major changes between "less" versions 358 and 376 * -x option can now specify multiple variable-width tab stops. * -X option no longer disables keypad initialization. New option --no-keypad disables keypad initialization. * New commands t and T step through multiple tag matches. Added support for "global(1)" tags (see http://www.gnu.org/software/global/global.html). * New prompt style set by option -Pw defines the message printed while waiting for data in the F command. * System-wide lesskey file now defaults to sysless in etc directory instead of .sysless in bin directory. Use "configure --sysconfdir=..." to change it. (For backwards compatibility, .sysless in bin is still recognized.) * Pressing RightArrow or LeftArrow while entering a number now shifts the display N columns rather than editing the number itself. * Status column (enabled with -J) now shows search results. * Windows version sets window title. * Default LESSCHARSET for MS-DOS versions is now "dos". * Searching works better with ANSI (SGR) escape sequences. ANSI color escape sequences are now supported in the MS-DOS (DJGPP) version. * Improved performance in reading very large pipes. * Eliminated some dependencies on file offsets being 32 bits. * Fixed problems when viewing files with very long lines. * Fixed overstriking in UTF-8 mode, and overstriking tabs. * Improved horizontal shifting of text using -R option with ANSI color. * Improved handling of filenames containing shell metacharacters. * Some fixes for EBCDIC systems. * Some fixes for OS/2 systems. ====================================================================== Major changes between "less" versions 354 and 358 * Add -J (--status-column) option to display a status column. * Add -# (--shift) option to set default horizontal shift distance. Default horizontal shift distance is now one-half screen width. * Horizontal shifting does not shift line numbers if -N is in effect. * Horizontal shifting acts as though -S were set, to avoid confusion. ====================================================================== Major changes between "less" versions 352 and 354 * Allow space after numeric-valued command line options. * Fix problem with configuring terminal libraries on some systems. * Add support for PCRE regular expression library. * Add --with-regex option to configure to allow manually selecting a regular expression library. * Fix bug compiling with SECURE = 1. ====================================================================== Major changes between "less" versions 346 and 352 * Enable UTF-8 if "UTF-8" appears in locale-related environment variables. * Add --with-editor option to configure script. * The -M prompt and = message now show the top and bottom line number. * Fix bug in running the editor on a file whose name contains quotes, etc. * Fix bug in horizontal scrolling of long lines. * Fix bug in doing :d on a file which contains marks. * Fix bug causing cleared lines to sometimes be filled with standout, bold, underline, etc. on certain terminals. * Fixes for MS-DOS (DJGPP) version. ====================================================================== Major changes between "less" versions 340 and 346 * The UTF-8 character set is now supported. * The default character set is now latin1 rather than ascii. * New option -R (--RAW-CONTROL-CHARS) is like -r but handles long (wrapped) lines correctly, as long as the input contains only normal text and ANSI color escape sequences. * New option -F (--quit-if-one-screen) quits if the text fits on the first screen. * The -w option now highlights the target line of a g or p command. * A system-wide lesskey file is supported (LESSKEY_SYSTEM). * New escape for prompt strings: %c is replaced by column number. * New escape for prompt strings: %P is replaced by percentage into file, based on line number rather than byte offset. * HOME and END keys now jump to beginning of file or end of file. ====================================================================== Major changes between "less" versions 337 and 340 * Command line options for less may now be given in either the old single-letter form, or a new long name form (--option-name). See the less man page or "less --help" for the list of long option names. * Command line options for lesskey may now be given in a new long name form. See the lesskey man page for the list of long option names. * New command -- toggles an option using the long option name. * New command __ queries an option using the long option name. * The old -- command is renamed as -!. * If a ^P is entered between the dash and the option letter of the - command, the message describing the new setting is suppressed. * Lesskey files may now contain \k escape sequences to represent the "special" keys (arrows, PAGE-UP/PAGE-DOWN, HOME, END, INSERT, DELETE). * New command :d removes the current file from the list of files. * New option -~ (like -w before version 335) suppresses tildes after end-of-file. * Less is now released under the GNU General Public License. ====================================================================== Major changes between "less" versions 335 and 337 * Fixed bugs in "make install". ====================================================================== Major changes between "less" versions 332 and 335 * The old -w flag (suppress tildes after end-of-file) has been removed. * New -w flag highlights the first new line after a forward-screen. * New -W flag highlights the first new line after any forward movement. * Window resize works even if LINES and/or COLUMNS environment variables are incorrect. * New percent escapes for prompt strings: %d is replaced by the page number, and %D is replaced by the number of pages in the file. * Added charsets "iso8859" and "ebcdic". * In Windows version, uses HOMEDRIVE and HOMEPATH if HOME is not defined. * Fixed some bugs causing incorrect display on DOS/Windows. ====================================================================== Major changes between "less" versions 330 and 332 * Filenames from the command line are entered into the command history, so UPARROW/DOWNARROW can be used to retrieve them from the :e command. * Now works correctly on Windows when using a scrolling terminal window (buffer larger than display window). * On Windows, now restores the console screen on exit. Use -X to get the old behavior. * Fixed bug on Windows when CAPS-LOCK or NUM-LOCK is pressed. * Fixed bug on Windows when piping output of an interactive program. * Fixed bug in tags file processing when tags file has DOS-style line terminators (CR/LF). * Fixed compilation problem on OS/2. ====================================================================== Major changes between "less" versions 321 and 330 * Now supports filenames containing spaces (in double quotes). New option -" can be used to change the quoting characters. * In filename completion, a slash is appended to a directory name. If the environment variable LESSSEPARATOR is set, the value of that variable, rather than a slash, is appended. * LeftArrow and RightArrow are same as ESC-[ and ESC-]. * Added commands ESC-( and ESC-), same as ESC-[ and ESC-]. * A "quit" command defined in a lesskey file may now have an "extra" string, which is used to return an exit code from less when it quits. * New environment variables LESSMETACHARS and LESSMETAESCAPE provide more control over how less interfaces to the shell. * Ported to Microsoft Visual C compiler for Windows. * Ported to DJGPP compiler for MS-DOS. * Bug fixes. ====================================================================== Major changes between "less" versions 291 and 321 * Command line at bottom of screen now scrolls, so it can be longer than the screen width. * New commands ESC-] and ESC-[ scroll the display horizontally. * New command ESC-SPACE scrolls forward a full screen, even if it hits end-of-file. * Alternate modifiers for search commands: ^N is same as !, ^F is same as @, and ^E is same as *. * New modifier for search commands: ^K means highlight the matches currently on-screen, but don't move to the first match. * New modifier for search commands: ^R means don't use regular expressions in the search. * Environment variable LESSKEY gives name of default lesskey file. * Environment variable LESSSECURE will force less to run in "secure" mode. * Command line argument "--" signals that the rest of the arguments are files (not option flags). * Help file (less.hlp) is no longer installed. Help text is now embedded in the less executable itself. * Added -Ph to change the prompt for the help text. Added -Ps to change the default short prompt (same as plain -P). * Ported to the Borland C compiler for MS-DOS. * Ported to Windows 95 & Windows NT. * Ported to OS-9. * Ported to GNU Hurd. ====================================================================== Major changes between "less" versions 290 and 291 * Less environment variables can be specified in lesskey files. * Fixed MS-DOS build. ====================================================================== Major changes between "less" versions 278 and 290 * Accepts GNU-style options "--help" and "--version". * OS/2 version looks for less.ini in $HOME before $INIT and $PATH. * Bug fixes ====================================================================== Major changes between "less" versions 252 and 278 * A LESSOPEN preprocessor may now pipe the converted file data to less, rather than writing it to a temporary file. * Search pattern highlighting has been fixed. It now highlights reliably, even if a string is split across two screen lines, contains TABs, etc. * The -F flag (which suppress search highlighting) has been changed to -G. A new flag, -g, changes search highlighting to highlight only the string found by the last search command, instead of all strings which match the last search command. * New flag -I acts like -i, but ignores case even if the search pattern contains uppercase letters. * Less now checks for the environment variable VISUAL before EDITOR. * Ported to OS/2. ====================================================================== Major changes between "less" versions 237 and 252 * Changes in line-editing keys: The literal key is now ^V or ^A rather than \ (backslash). Filename completion commands (TAB and ^L) are disabled when typing a search pattern. * Line-editing command keys can be redefined using lesskey. * Lesskey with no input file defaults to $HOME/.lesskey rather than standard input. * New option -V displays version number of less. * New option -V displays version number of lesskey. * Help file less.hlp is now installed by default in /usr/local/share rather than /usr/local/lib. ====================================================================== Major changes between "less" versions 170 and 237 * By popular demand, text which matches the current search pattern is highlighted. New -F flag disables this feature. * Henry Spencer's regexp.c is now included, for systems which do not have a regular expression library. regexp.c is Copyright (c) 1986 by University of Toronto. * New line-editing keys, including command history (arrow keys) and filename completion (TAB). * Input preprocessor allows modification of input files (e.g. uncompress) via LESSOPEN/LESSCLOSE environment variables. * New -X flag disables sending termcap "ti" and "te" (initialize and deinitialize) strings to the terminal. * Changing -i from within less now correctly affects a subsequent repeated search. * Searching for underlined or overstruck text now works when the -u flag is in effect, rather than the -i flag. * Use setlocale (LANG and LC_CTYPE environment variables) to determine the character set if LESSCHARSET/LESSCHARDEF are not set. * The default format for displaying binary characters is now standout (reverse video) rather than blinking. This can still be changed by setting the LESSBINFMT environment variable. * Use autoconf installation technology. * Ported to MS-DOS. ******************************** Things that may surprise you ******************************** * When you enter text at the bottom of the screen (search string, filename, etc.), some keys act different than previously. Specifically, \ (backslash), ESC, TAB, BACKTAB, and control-L now have line editing functions. * Some previous unofficial versions of less were able to display compressed files. The new LESSOPEN/LESSCLOSE feature now provides this functionality in a different way. * Some previous unofficial versions of less provided a -Z flag to set the number of lines of text to retain between full screen scrolls. The -z-n flag (that is, -z with a negative number) provides this functionality. ====================================================================== Major changes between "less" versions 123 and 170 * New option -j allows target lines to be positioned anywhere on screen. * New option -S truncates displayed line at the screen width, rather than wrapping onto the next line. * New option -y limits amount of forward scroll. * New option -T specifies a "tags" file. * Non-printable, non-control characters are displayed in octal. Such characters, as well as control characters, are displayed in blinking mode. * New command -+ sets an option to its default. * New command -- sets an option to the opposite of its default. * Lesskey file may have a string appended to a key's action, which acts as though typed in after the command. * New commands ESC-^F and ESC-^B match arbitrary types of brackets. * New command F monitors a growing file (like "tail -f"). * New command | pipes a section of the input file into a shell command. * New command :x directly jumps to a file in the command line list. * Search commands have been enhanced and reorganized: n Repeat search, same direction. N Repeat search, opposite direction. ESC-/ Search forward thru file boundaries ESC-? Search backward thru file boundaries ESC-n Repeat search thru file boundaries, same direction. ESC-N Repeat search thru file boundaries, opposite direction. Special character * causes search to search thru file boundaries. Special character @ causes search to begin at start/end of file list. * Examining a new file adds it to the command line list. A list of files, or an expression which matches more than one file, may be examined; all of them are added to the command line list. * Environment variables LESSCHARSET and LESSCHARDEF can define a non-ASCII character set. * Partial support for MSDOS, including options -R for repainting screen on quit, -v/-V to select video mode, and -W to change window size. ====================================================================== Major changes between "less" versions 97 and 123 * New option (-N) causes line numbers to be displayed in the text of the file (like vi "set nu"). * New option (-?) prints help message immediately. * New option (-r) displays "raw" control characters, without mapping them to ^X notation. * New option (-f) forces less to open non-regular files (directories, etc). * New option (-k) can be used to specify lesskey files by name. * New option (-y) can be used to set a forward scroll limit (like -h sets a backward scroll limit). * File marks (set by the m command) are now preserved when a new file is edited. The ' command can thus be used to switch files. * New command ESC-/ searches all files (on the command line) for a pattern. * New command ESC-n repeats previous search, spanning files. * The N command has been changed to repeat the previous search in the reverse direction. The old N command is still available via :n. * New command ESC-N repeats previous search in the reverse direction and spanning files. * 8 bit characters are now supported. A new option (-g) can be used to strip off the eighth bit (the previous behavior). * Options which take a following string (like -t) may now optionally have a space between the option letter and the string. * Six new commands { } ( ) [ and ] can be used to match brackets of specific types, similar to vi % command. * New commands z and w move forward/backward one window and simultaneously set the window size. * Prompt string expansion now has %L for line number of the last line in the file, and %E for the name of the editor. Also, % escapes which refer to a line (b=bottom, t=top, etc.) can use j for the jump target line. * New environment variable LESSEDIT can be used to tailor the command string passed to the editor by the v command. * Examining a file which was previously examined will return to the same position in the file. * A "%" is expanded to the current filename and a "#" to the previous filename, in both shell commands and the E command. (Previously % worked only in shell commands and # worked only in the E command.) * New command ":ta" is equivalent to "-t". * New command "s" is equivalent to "-l". * The - command may be followed by "+X" to revert to the default for option X, or "-X" to get the opposite of the default. * Lesskey files may now include characters after the action as extra input to be parsed after the action; for example: "toggle-option X" to toggle a specific option X. less-668/optfunc.c0000444060175306017530000005744314700607624013234 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Handling functions for command line options. * * Most options are handled by the generic code in option.c. * But all string options, and a few non-string options, require * special handling specific to the particular option. * This special processing is done by the "handling functions" in this file. * * Each handling function is passed a "type" and, if it is a string * option, the string which should be "assigned" to the option. * The type may be one of: * INIT The option is being initialized from the command line. * TOGGLE The option is being changed from within the program. * QUERY The setting of the option is merely being queried. */ #include "less.h" #include "option.h" #include "position.h" extern int bufspace; extern int pr_type; extern lbool plusoption; extern int swindow; extern int sc_width; extern int sc_height; extern int dohelp; extern char openquote; extern char closequote; extern char *prproto[]; extern char *eqproto; extern char *hproto; extern char *wproto; extern char *every_first_cmd; extern IFILE curr_ifile; extern char version[]; extern int jump_sline; extern long jump_sline_fraction; extern int shift_count; extern long shift_count_fraction; extern int match_shift; extern long match_shift_fraction; extern LWCHAR rscroll_char; extern int rscroll_attr; extern int mousecap; extern int wheel_lines; extern int less_is_more; extern int linenum_width; extern int status_col_width; extern int use_color; extern int want_filesize; extern int header_lines; extern int header_cols; extern int def_search_type; extern int chopline; extern int tabstops[]; extern int ntabstops; extern int tabdefault; extern char intr_char; extern int nosearch_header_lines; extern int nosearch_header_cols; extern POSITION header_start_pos; extern char *init_header; #if LOGFILE extern char *namelogfile; extern lbool force_logfile; extern int logfile; #endif #if TAGS public char *tagoption = NULL; extern char *tags; extern char ztags[]; #endif #if LESSTEST extern constant char *ttyin_name; extern int is_tty; #endif /*LESSTEST*/ #if MSDOS_COMPILER extern int nm_fg_color, nm_bg_color, nm_attr; extern int bo_fg_color, bo_bg_color, bo_attr; extern int ul_fg_color, ul_bg_color, ul_attr; extern int so_fg_color, so_bg_color, so_attr; extern int bl_fg_color, bl_bg_color, bl_attr; extern int sgr_mode; #if MSDOS_COMPILER==WIN32C #ifndef COMMON_LVB_UNDERSCORE #define COMMON_LVB_UNDERSCORE 0x8000 #endif #ifndef COMMON_LVB_REVERSE_VIDEO #define COMMON_LVB_REVERSE_VIDEO 0x4000 #endif #endif #endif #if LOGFILE /* * Handler for -o option. */ public void opt_o(int type, constant char *s) { PARG parg; char *filename; if (!secure_allow(SF_LOGFILE)) { error("log file support is not available", NULL_PARG); return; } switch (type) { case INIT: namelogfile = save(s); break; case TOGGLE: if (ch_getflags() & CH_CANSEEK) { error("Input is not a pipe", NULL_PARG); return; } if (logfile >= 0) { error("Log file is already in use", NULL_PARG); return; } s = skipspc(s); if (namelogfile != NULL) free(namelogfile); filename = lglob(s); namelogfile = shell_unquote(filename); free(filename); use_logfile(namelogfile); sync_logfile(); break; case QUERY: if (logfile < 0) error("No log file", NULL_PARG); else { parg.p_string = namelogfile; error("Log file \"%s\"", &parg); } break; } } /* * Handler for -O option. */ public void opt__O(int type, constant char *s) { force_logfile = TRUE; opt_o(type, s); } #endif static int toggle_fraction(int *num, long *frac, constant char *s, constant char *printopt, void (*calc)(void)) { lbool err; if (s == NULL) { (*calc)(); } else if (*s == '.') { long tfrac; s++; tfrac = getfraction(&s, printopt, &err); if (err) { error("Invalid fraction", NULL_PARG); return -1; } *frac = tfrac; (*calc)(); } else { int tnum = getnumc(&s, printopt, &err); if (err) { error("Invalid number", NULL_PARG); return -1; } *frac = -1; *num = tnum; } return 0; } static void query_fraction(int value, long fraction, constant char *int_msg, constant char *frac_msg) { PARG parg; if (fraction < 0) { parg.p_int = value; error(int_msg, &parg); } else { char buf[INT_STRLEN_BOUND(long)+2]; size_t len; SNPRINTF1(buf, sizeof(buf), ".%06ld", fraction); len = strlen(buf); while (len > 2 && buf[len-1] == '0') len--; buf[len] = '\0'; parg.p_string = buf; error(frac_msg, &parg); } } /* * Handlers for -j option. */ public void opt_j(int type, constant char *s) { switch (type) { case INIT: case TOGGLE: toggle_fraction(&jump_sline, &jump_sline_fraction, s, "j", calc_jump_sline); break; case QUERY: query_fraction(jump_sline, jump_sline_fraction, "Position target at screen line %d", "Position target at screen position %s"); break; } } public void calc_jump_sline(void) { if (jump_sline_fraction >= 0) jump_sline = (int) muldiv(sc_height, jump_sline_fraction, NUM_FRAC_DENOM); if (jump_sline <= header_lines) jump_sline = header_lines + 1; } /* * Handlers for -# option. */ public void opt_shift(int type, constant char *s) { switch (type) { case INIT: case TOGGLE: toggle_fraction(&shift_count, &shift_count_fraction, s, "#", calc_shift_count); break; case QUERY: query_fraction(shift_count, shift_count_fraction, "Horizontal shift %d columns", "Horizontal shift %s of screen width"); break; } } public void calc_shift_count(void) { if (shift_count_fraction < 0) return; shift_count = (int) muldiv(sc_width, shift_count_fraction, NUM_FRAC_DENOM); } #if USERFILE public void opt_k(int type, constant char *s) { PARG parg; switch (type) { case INIT: if (lesskey(s, 0)) { parg.p_string = s; error("Cannot use lesskey file \"%s\"", &parg); } break; } } #if HAVE_LESSKEYSRC public void opt_ks(int type, constant char *s) { PARG parg; switch (type) { case INIT: if (lesskey_src(s, 0)) { parg.p_string = s; error("Cannot use lesskey source file \"%s\"", &parg); } break; } } public void opt_kc(int type, constant char *s) { switch (type) { case INIT: if (lesskey_content(s, 0)) { error("Error in lesskey content", NULL_PARG); } break; } } #endif /* HAVE_LESSKEYSRC */ #endif /* USERFILE */ /* * Handler for -S option. */ public void opt__S(int type, constant char *s) { switch (type) { case TOGGLE: pos_rehead(); break; } } #if TAGS /* * Handler for -t option. */ public void opt_t(int type, constant char *s) { IFILE save_ifile; POSITION pos; switch (type) { case INIT: tagoption = save(s); /* Do the rest in main() */ break; case TOGGLE: if (!secure_allow(SF_TAGS)) { error("tags support is not available", NULL_PARG); break; } findtag(skipspc(s)); save_ifile = save_curr_ifile(); /* * Try to open the file containing the tag * and search for the tag in that file. */ if (edit_tagfile() || (pos = tagsearch()) == NULL_POSITION) { /* Failed: reopen the old file. */ reedit_ifile(save_ifile); break; } unsave_ifile(save_ifile); jump_loc(pos, jump_sline); break; } } /* * Handler for -T option. */ public void opt__T(int type, constant char *s) { PARG parg; char *filename; switch (type) { case INIT: tags = save(s); break; case TOGGLE: s = skipspc(s); if (tags != NULL && tags != ztags) free(tags); filename = lglob(s); tags = shell_unquote(filename); free(filename); break; case QUERY: parg.p_string = tags; error("Tags file \"%s\"", &parg); break; } } #endif /* * Handler for -p option. */ public void opt_p(int type, constant char *s) { switch (type) { case INIT: /* * Unget a command for the specified string. */ if (less_is_more) { /* * In "more" mode, the -p argument is a command, * not a search string, so we don't need a slash. */ every_first_cmd = save(s); } else { plusoption = TRUE; /* * {{ This won't work if the "/" command is * changed or invalidated by a .lesskey file. }} */ ungetsc("/"); ungetsc(s); ungetcc_end_command(); } break; } } /* * Handler for -P option. */ public void opt__P(int type, constant char *s) { char **proto; PARG parg; switch (type) { case INIT: case TOGGLE: /* * Figure out which prototype string should be changed. */ switch (*s) { case 's': proto = &prproto[PR_SHORT]; s++; break; case 'm': proto = &prproto[PR_MEDIUM]; s++; break; case 'M': proto = &prproto[PR_LONG]; s++; break; case '=': proto = &eqproto; s++; break; case 'h': proto = &hproto; s++; break; case 'w': proto = &wproto; s++; break; default: proto = &prproto[PR_SHORT]; break; } free(*proto); *proto = save(s); break; case QUERY: parg.p_string = prproto[pr_type]; error("%s", &parg); break; } } /* * Handler for the -b option. */ /*ARGSUSED*/ public void opt_b(int type, constant char *s) { switch (type) { case INIT: case TOGGLE: /* * Set the new number of buffers. */ ch_setbufspace((ssize_t) bufspace); break; case QUERY: break; } } /* * Handler for the -i option. */ /*ARGSUSED*/ public void opt_i(int type, constant char *s) { switch (type) { case TOGGLE: chg_caseless(); break; case QUERY: case INIT: break; } } /* * Handler for the -V option. */ /*ARGSUSED*/ public void opt__V(int type, constant char *s) { switch (type) { case TOGGLE: case QUERY: dispversion(); break; case INIT: set_output(1); /* Force output to stdout per GNU standard for --version output. */ putstr("less "); putstr(version); putstr(" ("); putstr(pattern_lib_name()); putstr(" regular expressions)\n"); { char constant *copyright = "Copyright (C) 1984-2024 Mark Nudelman\n\n"; putstr(copyright); } if (version[strlen(version)-1] == 'x') { putstr("** This is an EXPERIMENTAL build of the 'less' software,\n"); putstr("** and may not function correctly.\n"); putstr("** Obtain release builds from the web page below.\n\n"); } #if LESSTEST putstr("This build supports LESSTEST.\n"); #endif /*LESSTEST*/ putstr("less comes with NO WARRANTY, to the extent permitted by law.\n"); putstr("For information about the terms of redistribution,\n"); putstr("see the file named README in the less distribution.\n"); putstr("Home page: https://greenwoodsoftware.com/less\n"); quit(QUIT_OK); break; } } #if MSDOS_COMPILER /* * Parse an MSDOS color descriptor. */ static void colordesc(constant char *s, int *fg_color, int *bg_color, int *dattr) { int fg, bg; CHAR_ATTR attr; if (parse_color(s, &fg, &bg, &attr) == CT_NULL) { PARG p; p.p_string = s; error("Invalid color string \"%s\"", &p); } else { *fg_color = fg; *bg_color = bg; *dattr = 0; #if MSDOS_COMPILER==WIN32C if (attr & CATTR_UNDERLINE) *dattr |= COMMON_LVB_UNDERSCORE; if (attr & CATTR_STANDOUT) *dattr |= COMMON_LVB_REVERSE_VIDEO; #endif } } #endif static int color_from_namechar(char namechar) { switch (namechar) { case 'B': return AT_COLOR_BIN; case 'C': return AT_COLOR_CTRL; case 'E': return AT_COLOR_ERROR; case 'H': return AT_COLOR_HEADER; case 'M': return AT_COLOR_MARK; case 'N': return AT_COLOR_LINENUM; case 'P': return AT_COLOR_PROMPT; case 'R': return AT_COLOR_RSCROLL; case 'S': return AT_COLOR_SEARCH; case 'W': case 'A': return AT_COLOR_ATTN; case 'n': return AT_NORMAL; case 's': return AT_STANDOUT; case 'd': return AT_BOLD; case 'u': return AT_UNDERLINE; case 'k': return AT_BLINK; default: if (namechar >= '1' && namechar <= '0'+NUM_SEARCH_COLORS) return AT_COLOR_SUBSEARCH(namechar-'0'); return -1; } } /* * Handler for the -D option. */ /*ARGSUSED*/ public void opt_D(int type, constant char *s) { PARG p; int attr; switch (type) { case INIT: case TOGGLE: #if MSDOS_COMPILER if (*s == 'a') { sgr_mode = !sgr_mode; break; } #endif attr = color_from_namechar(s[0]); if (attr < 0) { p.p_char = s[0]; error("Invalid color specifier '%c'", &p); return; } if (!use_color && (attr & AT_COLOR)) { error("Set --use-color before changing colors", NULL_PARG); return; } s++; #if MSDOS_COMPILER if (!(attr & AT_COLOR)) { switch (attr) { case AT_NORMAL: colordesc(s, &nm_fg_color, &nm_bg_color, &nm_attr); break; case AT_BOLD: colordesc(s, &bo_fg_color, &bo_bg_color, &bo_attr); break; case AT_UNDERLINE: colordesc(s, &ul_fg_color, &ul_bg_color, &ul_attr); break; case AT_BLINK: colordesc(s, &bl_fg_color, &bl_bg_color, &bl_attr); break; case AT_STANDOUT: colordesc(s, &so_fg_color, &so_bg_color, &so_attr); break; } if (type == TOGGLE) { init_win_colors(); at_enter(AT_STANDOUT); at_exit(); } } else #endif if (set_color_map(attr, s) < 0) { p.p_string = s; error("Invalid color string \"%s\"", &p); return; } break; #if MSDOS_COMPILER case QUERY: p.p_string = (sgr_mode) ? "on" : "off"; error("SGR mode is %s", &p); break; #endif } } /* */ public void set_tabs(constant char *s, size_t len) { int i; constant char *es = s + len; /* Start at 1 because tabstops[0] is always zero. */ for (i = 1; i < TABSTOP_MAX; ) { int n = 0; lbool v = FALSE; while (s < es && *s == ' ') s++; for (; s < es && *s >= '0' && *s <= '9'; s++) { v = v || ckd_mul(&n, n, 10); v = v || ckd_add(&n, n, *s - '0'); } if (!v && n > tabstops[i-1]) tabstops[i++] = n; while (s < es && *s == ' ') s++; if (s == es || *s++ != ',') break; } if (i < 2) return; ntabstops = i; tabdefault = tabstops[ntabstops-1] - tabstops[ntabstops-2]; } /* * Handler for the -x option. */ public void opt_x(int type, constant char *s) { char msg[60+((INT_STRLEN_BOUND(int)+1)*TABSTOP_MAX)]; int i; PARG p; switch (type) { case INIT: case TOGGLE: set_tabs(s, strlen(s)); break; case QUERY: strcpy(msg, "Tab stops "); if (ntabstops > 2) { for (i = 1; i < ntabstops; i++) { if (i > 1) strcat(msg, ","); sprintf(msg+strlen(msg), "%d", tabstops[i]); } sprintf(msg+strlen(msg), " and then "); } sprintf(msg+strlen(msg), "every %d spaces", tabdefault); p.p_string = msg; error("%s", &p); break; } } /* * Handler for the -" option. */ public void opt_quote(int type, constant char *s) { char buf[3]; PARG parg; switch (type) { case INIT: case TOGGLE: if (s[0] == '\0') { openquote = closequote = '\0'; break; } if (s[1] != '\0' && s[2] != '\0') { error("-\" must be followed by 1 or 2 chars", NULL_PARG); return; } openquote = s[0]; if (s[1] == '\0') closequote = openquote; else closequote = s[1]; break; case QUERY: buf[0] = openquote; buf[1] = closequote; buf[2] = '\0'; parg.p_string = buf; error("quotes %s", &parg); break; } } /* * Handler for the --rscroll option. */ /*ARGSUSED*/ public void opt_rscroll(int type, constant char *s) { PARG p; switch (type) { case INIT: case TOGGLE: { constant char *fmt; int attr = AT_STANDOUT; setfmt(s, &fmt, &attr, "*s>", FALSE); if (strcmp(fmt, "-") == 0) { rscroll_char = 0; } else { rscroll_attr = attr|AT_COLOR_RSCROLL; if (*fmt == '\0') rscroll_char = '>'; else { LWCHAR ch = step_charc(&fmt, +1, fmt+strlen(fmt)); if (pwidth(ch, rscroll_attr, 0, 0) > 1) error("cannot set rscroll to a wide character", NULL_PARG); else rscroll_char = ch; } } break; } case QUERY: { p.p_string = rscroll_char ? prchar((LWCHAR) rscroll_char) : "-"; error("rscroll character is %s", &p); break; } } } /* * "-?" means display a help message. * If from the command line, exit immediately. */ /*ARGSUSED*/ public void opt_query(int type, constant char *s) { switch (type) { case QUERY: case TOGGLE: error("Use \"h\" for help", NULL_PARG); break; case INIT: dohelp = 1; } } /*ARGSUSED*/ public void opt_match_shift(int type, constant char *s) { switch (type) { case INIT: case TOGGLE: toggle_fraction(&match_shift, &match_shift_fraction, s, "--match-shift", calc_match_shift); break; case QUERY: query_fraction(match_shift, match_shift_fraction, "Search match shift is %d", "Search match shift is %s of screen width"); break; } } public void calc_match_shift(void) { if (match_shift_fraction < 0) return; match_shift = (int) muldiv(sc_width, match_shift_fraction, NUM_FRAC_DENOM); } /* * Handler for the --mouse option. */ /*ARGSUSED*/ public void opt_mousecap(int type, constant char *s) { switch (type) { case TOGGLE: if (mousecap == OPT_OFF) deinit_mouse(); else init_mouse(); break; case INIT: case QUERY: break; } } /* * Handler for the --wheel-lines option. */ /*ARGSUSED*/ public void opt_wheel_lines(int type, constant char *s) { switch (type) { case INIT: case TOGGLE: if (wheel_lines <= 0) wheel_lines = default_wheel_lines(); break; case QUERY: break; } } /* * Handler for the --line-number-width option. */ /*ARGSUSED*/ public void opt_linenum_width(int type, constant char *s) { PARG parg; switch (type) { case INIT: case TOGGLE: if (linenum_width > MAX_LINENUM_WIDTH) { parg.p_int = MAX_LINENUM_WIDTH; error("Line number width must not be larger than %d", &parg); linenum_width = MIN_LINENUM_WIDTH; } break; case QUERY: break; } } /* * Handler for the --status-column-width option. */ /*ARGSUSED*/ public void opt_status_col_width(int type, constant char *s) { PARG parg; switch (type) { case INIT: case TOGGLE: if (status_col_width > MAX_STATUSCOL_WIDTH) { parg.p_int = MAX_STATUSCOL_WIDTH; error("Status column width must not be larger than %d", &parg); status_col_width = 2; } break; case QUERY: break; } } /* * Handler for the --file-size option. */ /*ARGSUSED*/ public void opt_filesize(int type, constant char *s) { switch (type) { case INIT: case TOGGLE: if (want_filesize && curr_ifile != NULL && ch_length() == NULL_POSITION) scan_eof(); break; case QUERY: break; } } /* * Handler for the --intr option. */ /*ARGSUSED*/ public void opt_intr(int type, constant char *s) { PARG p; switch (type) { case INIT: case TOGGLE: intr_char = *s; if (intr_char == '^' && s[1] != '\0') intr_char = CONTROL(s[1]); break; case QUERY: { p.p_string = prchar((LWCHAR) intr_char); error("interrupt character is %s", &p); break; } } } /* * Return the next number from a comma-separated list. * Return -1 if the list entry is missing or empty. * Updates *sp to point to the first char of the next number in the list. */ public int next_cnum(constant char **sp, constant char *printopt, constant char *errmsg, lbool *errp) { int n; *errp = FALSE; if (**sp == '\0') /* at end of line */ return -1; if (**sp == ',') /* that's the next comma; we have an empty string */ { ++(*sp); return -1; } n = getnumc(sp, printopt, errp); if (*errp) { PARG parg; parg.p_string = errmsg; error("invalid %s", &parg); return -1; } if (**sp == ',') ++(*sp); return n; } /* * Parse a parameter to the --header option. * Value is "L,C,N", where each field is a decimal number or empty. */ static lbool parse_header(constant char *s, int *lines, int *cols, POSITION *start_pos) { int n; lbool err; if (*s == '-') s = "0,0"; n = next_cnum(&s, "header", "number of lines", &err); if (err) return FALSE; if (n >= 0) *lines = n; n = next_cnum(&s, "header", "number of columns", &err); if (err) return FALSE; if (n >= 0) *cols = n; n = next_cnum(&s, "header", "line number", &err); if (err) return FALSE; if (n > 0) { LINENUM lnum = (LINENUM) n; if (lnum < 1) lnum = 1; *start_pos = find_pos(lnum); } return TRUE; } /* * Handler for the --header option. */ /*ARGSUSED*/ public void opt_header(int type, constant char *s) { switch (type) { case INIT: /* Can't call parse_header now because input file is not yet opened, * so find_pos won't work. */ init_header = save(s); break; case TOGGLE: { int lines = header_lines; int cols = header_cols; POSITION start_pos = (type == INIT) ? ch_zero() : position(TOP); if (start_pos == NULL_POSITION) start_pos = ch_zero(); if (!parse_header(s, &lines, &cols, &start_pos)) break; header_lines = lines; header_cols = cols; set_header(start_pos); calc_jump_sline(); break; } case QUERY: { char buf[3*INT_STRLEN_BOUND(long)+3]; PARG parg; SNPRINTF3(buf, sizeof(buf), "%ld,%ld,%ld", (long) header_lines, (long) header_cols, (long) find_linenum(header_start_pos)); parg.p_string = buf; error("Header (lines,columns,line-number) is %s", &parg); break; } } } /* * Handler for the --search-options option. */ /*ARGSUSED*/ public void opt_search_type(int type, constant char *s) { int st; PARG parg; char buf[16]; char *bp; int i; switch (type) { case INIT: case TOGGLE: st = 0; for (; *s != '\0'; s++) { switch (*s) { case 'E': case 'e': case CONTROL('E'): st |= SRCH_PAST_EOF; break; case 'F': case 'f': case CONTROL('F'): st |= SRCH_FIRST_FILE; break; case 'K': case 'k': case CONTROL('K'): st |= SRCH_NO_MOVE; break; case 'N': case 'n': case CONTROL('N'): st |= SRCH_NO_MATCH; break; case 'R': case 'r': case CONTROL('R'): st |= SRCH_NO_REGEX; break; case 'W': case 'w': case CONTROL('W'): st |= SRCH_WRAP; break; case '-': st = 0; break; case '^': break; default: if (*s >= '1' && *s <= '0'+NUM_SEARCH_COLORS) { st |= SRCH_SUBSEARCH(*s-'0'); break; } parg.p_char = *s; error("invalid search option '%c'", &parg); return; } } def_search_type = norm_search_type(st); break; case QUERY: bp = buf; if (def_search_type & SRCH_PAST_EOF) *bp++ = 'E'; if (def_search_type & SRCH_FIRST_FILE) *bp++ = 'F'; if (def_search_type & SRCH_NO_MOVE) *bp++ = 'K'; if (def_search_type & SRCH_NO_MATCH) *bp++ = 'N'; if (def_search_type & SRCH_NO_REGEX) *bp++ = 'R'; if (def_search_type & SRCH_WRAP) *bp++ = 'W'; for (i = 1; i <= NUM_SEARCH_COLORS; i++) if (def_search_type & SRCH_SUBSEARCH(i)) *bp++ = (char) ('0'+i); if (bp == buf) *bp++ = '-'; *bp = '\0'; parg.p_string = buf; error("search options: %s", &parg); break; } } /* * Handler for the --no-search-headers, --no-search-header-lines * and --no-search-header-cols options. */ static void do_nosearch_headers(int type, int no_header_lines, int no_header_cols) { switch (type) { case INIT: case TOGGLE: nosearch_header_lines = no_header_lines; nosearch_header_cols = no_header_cols; break; case QUERY: if (nosearch_header_lines && nosearch_header_cols) error("Search does not include header lines or columns", NULL_PARG); else if (nosearch_header_lines) error("Search includes header columns but not header lines", NULL_PARG); else if (nosearch_header_cols) error("Search includes header lines but not header columns", NULL_PARG); else error("Search includes header lines and columns", NULL_PARG); } } /*ARGSUSED*/ public void opt_nosearch_headers(int type, constant char *s) { do_nosearch_headers(type, 1, 1); } /*ARGSUSED*/ public void opt_nosearch_header_lines(int type, constant char *s) { do_nosearch_headers(type, 1, 0); } /*ARGSUSED*/ public void opt_nosearch_header_cols(int type, constant char *s) { do_nosearch_headers(type, 0, 1); } #if LESSTEST /* * Handler for the --tty option. */ /*ARGSUSED*/ public void opt_ttyin_name(int type, constant char *s) { switch (type) { case INIT: ttyin_name = s; is_tty = 1; break; } } #endif /*LESSTEST*/ public int chop_line(void) { return (chopline || header_cols > 0 || header_lines > 0); } /* * Get the "screen window" size. */ public int get_swindow(void) { if (swindow > 0) return (swindow); return (sc_height - header_lines + swindow); } less-668/option.c0000444060175306017530000004007214700607624013054 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Process command line options. * * Each option is a single letter which controls a program variable. * The options have defaults which may be changed via * the command line option, toggled via the "-" command, * or queried via the "_" command. */ #include "less.h" #include "option.h" static struct loption *pendopt; public lbool plusoption = FALSE; static constant char *optstring(constant char *s, char **p_str, constant char *printopt, constant char *validchars); static int flip_triple(int val, int lc); extern int less_is_more; extern int quit_at_eof; extern char *every_first_cmd; extern int opt_use_backslash; /* * Return a printable description of an option. */ static constant char * opt_desc(struct loption *o) { static char buf[OPTNAME_MAX + 10]; if (o->oletter == OLETTER_NONE) SNPRINTF1(buf, sizeof(buf), "--%s", o->onames->oname); else SNPRINTF2(buf, sizeof(buf), "-%c (--%s)", o->oletter, o->onames->oname); return (buf); } /* * Return a string suitable for printing as the "name" of an option. * For example, if the option letter is 'x', just return "-x". */ public constant char * propt(char c) { static char buf[MAX_PRCHAR_LEN+2]; sprintf(buf, "-%s", prchar((LWCHAR) c)); return (buf); } /* * Scan an argument (either from the command line or from the * LESS environment variable) and process it. */ public void scan_option(constant char *s) { struct loption *o; char optc; constant char *optname; constant char *printopt; char *str; lbool set_default; int lc; lbool ambig; PARG parg; if (s == NULL) return; /* * If we have a pending option which requires an argument, * handle it now. * This happens if the previous option was, for example, "-P" * without a following string. In that case, the current * option is simply the argument for the previous option. */ if (pendopt != NULL) { if (!(pendopt->otype & UNSUPPORTED)) { switch (pendopt->otype & OTYPE) { case STRING: (*pendopt->ofunc)(INIT, s); break; case NUMBER: printopt = opt_desc(pendopt); *(pendopt->ovar) = getnumc(&s, printopt, NULL); break; } } pendopt = NULL; return; } set_default = FALSE; optname = NULL; while (*s != '\0') { /* * Check some special cases first. */ switch (optc = *s++) { case ' ': case '\t': case END_OPTION_STRING: continue; case '-': /* * "--" indicates an option name instead of a letter. */ if (*s == '-') optname = ++s; /* * "-+" or "--+" means set these options back to their defaults. * (They may have been set otherwise by previous options.) */ set_default = (*s == '+'); if (set_default) s++; if (optname != NULL) { optname = s; break; } continue; case '+': /* * An option prefixed by a "+" is ungotten, so * that it is interpreted as less commands * processed at the start of the first input file. * "++" means process the commands at the start of * EVERY input file. */ plusoption = TRUE; s = optstring(s, &str, propt('+'), NULL); if (s == NULL) return; if (*str == '+') { if (every_first_cmd != NULL) free(every_first_cmd); every_first_cmd = save(str+1); } else { ungetsc(str); ungetcc_end_command(); } free(str); continue; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': /* * Special "more" compatibility form "-" * instead of -z to set the scrolling * window size. */ s--; optc = 'z'; break; case 'n': if (less_is_more) optc = 'z'; break; } /* * Not a special case. * Look up the option letter in the option table. */ ambig = FALSE; if (optname == NULL) { printopt = propt(optc); lc = ASCII_IS_LOWER(optc); o = findopt(optc); } else { printopt = optname; lc = ASCII_IS_LOWER(optname[0]); o = findopt_name(&optname, NULL, &ambig); s = optname; optname = NULL; if (*s == '\0' || *s == ' ') { /* * The option name matches exactly. */ ; } else if (*s == '=') { /* * The option name is followed by "=value". */ if (o != NULL && (o->otype & OTYPE) != STRING && (o->otype & OTYPE) != NUMBER) { parg.p_string = printopt; error("The %s option should not be followed by =", &parg); return; } s++; } else { /* * The specified name is longer than the * real option name. */ o = NULL; } } if (o == NULL) { parg.p_string = printopt; if (ambig) error("%s is an ambiguous abbreviation (\"less --help\" for help)", &parg); else error("There is no %s option (\"less --help\" for help)", &parg); return; } str = NULL; switch (o->otype & OTYPE) { case BOOL: if (o->otype & UNSUPPORTED) break; if (o->ovar != NULL) { if (set_default) *(o->ovar) = o->odefault; else *(o->ovar) = ! o->odefault; } break; case TRIPLE: if (o->otype & UNSUPPORTED) break; if (o->ovar != NULL) { if (set_default) *(o->ovar) = o->odefault; else *(o->ovar) = flip_triple(o->odefault, lc); } break; case STRING: if (*s == '\0') { /* * Set pendopt and return. * We will get the string next time * scan_option is called. */ pendopt = o; return; } /* * Don't do anything here. * All processing of STRING options is done by * the handling function. */ while (*s == ' ') s++; s = optstring(s, &str, printopt, o->odesc[1]); if (s == NULL) return; break; case NUMBER: if (*s == '\0') { pendopt = o; return; } if (o->otype & UNSUPPORTED) break; *(o->ovar) = getnumc(&s, printopt, NULL); break; } /* * If the option has a handling function, call it. */ if (o->ofunc != NULL && !(o->otype & UNSUPPORTED)) (*o->ofunc)(INIT, str); if (str != NULL) free(str); } } /* * Toggle command line flags from within the program. * Used by the "-" and "_" commands. * how_toggle may be: * OPT_NO_TOGGLE just report the current setting, without changing it. * OPT_TOGGLE invert the current setting * OPT_UNSET set to the default value * OPT_SET set to the inverse of the default value */ public void toggle_option(struct loption *o, int lower, constant char *s, int how_toggle) { int num; int no_prompt; lbool err; PARG parg; no_prompt = (how_toggle & OPT_NO_PROMPT); how_toggle &= ~OPT_NO_PROMPT; if (o == NULL) { error("No such option", NULL_PARG); return; } if (how_toggle == OPT_TOGGLE && (o->otype & NO_TOGGLE)) { parg.p_string = opt_desc(o); error("Cannot change the %s option", &parg); return; } if (how_toggle == OPT_NO_TOGGLE && (o->otype & NO_QUERY)) { parg.p_string = opt_desc(o); error("Cannot query the %s option", &parg); return; } /* * Check for something which appears to be a do_toggle * (because the "-" command was used), but really is not. * This could be a string option with no string, or * a number option with no number. */ switch (o->otype & OTYPE) { case STRING: case NUMBER: if (how_toggle == OPT_TOGGLE && *s == '\0') how_toggle = OPT_NO_TOGGLE; break; } #if HILITE_SEARCH if (how_toggle != OPT_NO_TOGGLE && (o->otype & HL_REPAINT)) repaint_hilite(FALSE); #endif /* * Now actually toggle (change) the variable. */ if (how_toggle != OPT_NO_TOGGLE) { switch (o->otype & OTYPE) { case BOOL: /* * Boolean. */ if (o->ovar != NULL) { switch (how_toggle) { case OPT_TOGGLE: *(o->ovar) = ! *(o->ovar); break; case OPT_UNSET: *(o->ovar) = o->odefault; break; case OPT_SET: *(o->ovar) = ! o->odefault; break; } } break; case TRIPLE: /* * Triple: * If user gave the lower case letter, then switch * to 1 unless already 1, in which case make it 0. * If user gave the upper case letter, then switch * to 2 unless already 2, in which case make it 0. */ if (o->ovar != NULL) { switch (how_toggle) { case OPT_TOGGLE: *(o->ovar) = flip_triple(*(o->ovar), lower); break; case OPT_UNSET: *(o->ovar) = o->odefault; break; case OPT_SET: *(o->ovar) = flip_triple(o->odefault, lower); break; } } break; case STRING: /* * String: don't do anything here. * The handling function will do everything. */ switch (how_toggle) { case OPT_SET: case OPT_UNSET: error("Cannot use \"-+\" or \"--\" for a string option", NULL_PARG); return; } break; case NUMBER: /* * Number: set the variable to the given number. */ switch (how_toggle) { case OPT_TOGGLE: num = getnumc(&s, NULL, &err); if (!err) *(o->ovar) = num; break; case OPT_UNSET: *(o->ovar) = o->odefault; break; case OPT_SET: error("Can't use \"-!\" for a numeric option", NULL_PARG); return; } break; } } /* * Call the handling function for any special action * specific to this option. */ if (o->ofunc != NULL) (*o->ofunc)((how_toggle==OPT_NO_TOGGLE) ? QUERY : TOGGLE, s); #if HILITE_SEARCH if (how_toggle != OPT_NO_TOGGLE && (o->otype & HL_REPAINT)) chg_hilite(); #endif if (!no_prompt) { /* * Print a message describing the new setting. */ switch (o->otype & OTYPE) { case BOOL: case TRIPLE: /* * Print the odesc message. */ if (o->ovar != NULL) error(o->odesc[*(o->ovar)], NULL_PARG); break; case NUMBER: /* * The message is in odesc[1] and has a %d for * the value of the variable. */ parg.p_int = *(o->ovar); error(o->odesc[1], &parg); break; case STRING: /* * Message was already printed by the handling function. */ break; } } if (how_toggle != OPT_NO_TOGGLE && (o->otype & REPAINT)) screen_trashed(); } /* * "Toggle" a triple-valued option. */ static int flip_triple(int val, int lc) { if (lc) return ((val == OPT_ON) ? OPT_OFF : OPT_ON); else return ((val == OPT_ONPLUS) ? OPT_OFF : OPT_ONPLUS); } /* * Determine if an option takes a parameter. */ public int opt_has_param(struct loption *o) { if (o == NULL) return (0); if (o->otype & (BOOL|TRIPLE|NOVAR|NO_TOGGLE)) return (0); return (1); } /* * Return the prompt to be used for a given option letter. * Only string and number valued options have prompts. */ public constant char * opt_prompt(struct loption *o) { if (o == NULL || (o->otype & (STRING|NUMBER)) == 0) return ("?"); return (o->odesc[0]); } /* * If the specified option can be toggled, return NULL. * Otherwise return an appropriate error message. */ public constant char * opt_toggle_disallowed(int c) { switch (c) { case 'o': if (ch_getflags() & CH_CANSEEK) return "Input is not a pipe"; break; } return NULL; } /* * Return whether or not there is a string option pending; * that is, if the previous option was a string-valued option letter * (like -P) without a following string. * In that case, the current option is taken to be the string for * the previous option. */ public lbool isoptpending(void) { return (pendopt != NULL); } /* * Print error message about missing string. */ static void nostring(constant char *printopt) { PARG parg; parg.p_string = printopt; error("Value is required after %s", &parg); } /* * Print error message if a STRING type option is not followed by a string. */ public void nopendopt(void) { nostring(opt_desc(pendopt)); } /* * Scan to end of string or to an END_OPTION_STRING character. * In the latter case, replace the char with a null char. * Return a pointer to the remainder of the string, if any. * validchars is of the form "[-][.]d[,]". * "-" means an optional leading "-" is allowed * "." means an optional leading "." is allowed (after any "-") * "d" indicates a string of one or more digits (0-9) * "," indicates a comma-separated list of digit strings is allowed * "s" means a space char terminates the argument */ static constant char * optstring(constant char *s, char **p_str, constant char *printopt, constant char *validchars) { constant char *p; char *out; if (*s == '\0') { nostring(printopt); return (NULL); } /* Alloc could be more than needed, but not worth trimming. */ *p_str = (char *) ecalloc(strlen(s)+1, sizeof(char)); out = *p_str; for (p = s; *p != '\0'; p++) { if (opt_use_backslash && *p == '\\' && p[1] != '\0') { /* Take next char literally. */ ++p; } else { if (validchars != NULL) { if (validchars[0] == 's') { if (*p == ' ') break; } else if (*p == '-') { if (validchars[0] != '-') break; ++validchars; } else if (*p == '.') { if (validchars[0] == '-') ++validchars; if (validchars[0] != '.') break; ++validchars; } else if (*p == ',') { if (validchars[0] == '\0' || validchars[1] != ',') break; } else if (*p >= '0' && *p <= '9') { while (validchars[0] == '-' || validchars[0] == '.') ++validchars; if (validchars[0] != 'd') break; } else break; } if (*p == END_OPTION_STRING) /* End of option string. */ break; } *out++ = *p; } *out = '\0'; return (p); } /* */ static int num_error(constant char *printopt, lbool *errp, lbool overflow) { PARG parg; if (errp != NULL) { *errp = TRUE; return (-1); } if (printopt != NULL) { parg.p_string = printopt; error((overflow ? "Number too large in '%s'" : "Number is required after %s"), &parg); } return (-1); } /* * Translate a string into a number. * Like atoi(), but takes a pointer to a char *, and updates * the char * to point after the translated number. */ public int getnumc(constant char **sp, constant char *printopt, lbool *errp) { constant char *s = *sp; int n; lbool neg; s = skipspc(s); neg = FALSE; if (*s == '-') { neg = TRUE; s++; } if (*s < '0' || *s > '9') return (num_error(printopt, errp, FALSE)); n = lstrtoic(s, sp, 10); if (n < 0) return (num_error(printopt, errp, TRUE)); if (errp != NULL) *errp = FALSE; if (neg) n = -n; return (n); } public int getnum(char **sp, constant char *printopt, lbool *errp) { constant char *cs = *sp; int r = getnumc(&cs, printopt, errp); *sp = (char *) cs; return r; } /* * Translate a string into a fraction, represented by the part of a * number which would follow a decimal point. * The value of the fraction is returned as parts per NUM_FRAC_DENOM. * That is, if "n" is returned, the fraction intended is n/NUM_FRAC_DENOM. */ public long getfraction(constant char **sp, constant char *printopt, lbool *errp) { constant char *s; long frac = 0; int fraclen = 0; s = skipspc(*sp); if (*s < '0' || *s > '9') return (num_error(printopt, errp, FALSE)); for ( ; *s >= '0' && *s <= '9'; s++) { if (NUM_LOG_FRAC_DENOM <= fraclen) continue; frac = (frac * 10) + (*s - '0'); fraclen++; } while (fraclen++ < NUM_LOG_FRAC_DENOM) frac *= 10; *sp = s; if (errp != NULL) *errp = FALSE; return (frac); } /* * Set the UNSUPPORTED bit in every option listed * in the LESS_UNSUPPORT environment variable. */ public void init_unsupport(void) { constant char *s = lgetenv("LESS_UNSUPPORT"); if (isnullenv(s)) return; for (;;) { struct loption *opt; s = skipspc(s); if (*s == '\0') break; if (*s == '-' && *++s == '\0') break; if (*s == '-') /* long option name */ { ++s; opt = findopt_name(&s, NULL, NULL); } else /* short (single-char) option */ { opt = findopt(*s); if (opt != NULL) ++s; } if (opt != NULL) opt->otype |= UNSUPPORTED; } } /* * Get the value of the -e flag. */ public int get_quit_at_eof(void) { if (!less_is_more) return quit_at_eof; /* When less_is_more is set, the -e flag semantics are different. */ return quit_at_eof ? OPT_ONPLUS : OPT_ON; } less-668/option.h0000444060175306017530000000455714700607652013072 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ #define END_OPTION_STRING ('$') /* * Types of options. */ #define BOOL 01 /* Boolean option: 0 or 1 */ #define TRIPLE 02 /* Triple-valued option: 0, 1 or 2 */ #define NUMBER 04 /* Numeric option */ #define STRING 010 /* String-valued option */ #define NOVAR 020 /* No associated variable */ #define REPAINT 040 /* Repaint screen after toggling option */ #define NO_TOGGLE 0100 /* Option cannot be toggled with "-" cmd */ #define HL_REPAINT 0200 /* Repaint hilites after toggling option */ #define NO_QUERY 0400 /* Option cannot be queried with "_" cmd */ #define INIT_HANDLER 01000 /* Call option handler function at startup */ #define UNSUPPORTED 02000 /* Option is unsupported via LESS_UNSUPPORT */ #define OTYPE (BOOL|TRIPLE|NUMBER|STRING|NOVAR) #define OLETTER_NONE '\1' /* Invalid option letter */ /* * Argument to a handling function tells what type of activity: */ #define INIT 0 /* Initialization (from command line) */ #define QUERY 1 /* Query (from _ or - command) */ #define TOGGLE 2 /* Change value (from - command) */ /* Flag to toggle_option to specify how to "toggle" */ #define OPT_NO_TOGGLE 0 #define OPT_TOGGLE 1 #define OPT_UNSET 2 #define OPT_SET 3 #define OPT_NO_PROMPT 0100 /* Error code from findopt_name */ #define OPT_AMBIG 1 struct optname { constant char *oname; /* Long (GNU-style) option name */ struct optname *onext; /* List of synonymous option names */ }; #define OPTNAME_MAX 32 /* Max length of long option name */ struct loption { char oletter; /* The controlling letter (a-z) */ struct optname *onames; /* Long (GNU-style) option name */ int otype; /* Type of the option */ int odefault; /* Default value */ int *ovar; /* Pointer to the associated variable */ void (*ofunc)(int, constant char*); /* Pointer to special handling function */ constant char *odesc[3]; /* Description of each value */ }; less-668/opttbl.c0000444060175306017530000006225114700607625013054 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * The option table. */ #include "less.h" #include "option.h" /* * Variables controlled by command line options. */ public int quiet; /* Should we suppress the audible bell? */ public int no_vbell; /* Should we suppress the visual bell? */ public int how_search; /* Where should forward searches start? */ public int top_scroll; /* Repaint screen from top? (alternative is scroll from bottom) */ public int pr_type; /* Type of prompt (short, medium, long) */ public int bs_mode; /* How to process backspaces */ public int know_dumb; /* Don't complain about dumb terminals */ public int quit_at_eof; /* Quit after hitting end of file twice */ public int quit_if_one_screen; /* Quit if EOF on first screen */ public int squeeze; /* Squeeze multiple blank lines into one */ public int tabstop; /* Tab settings */ public int back_scroll; /* Repaint screen on backwards movement */ public int forw_scroll; /* Repaint screen on forward movement */ public int caseless; /* Do "caseless" searches */ public int linenums; /* Use line numbers */ public int autobuf; /* Automatically allocate buffers as needed */ public int bufspace; /* Max buffer space per file (K) */ public int ctldisp; /* Send control chars to screen untranslated */ public int force_open; /* Open the file even if not regular file */ public int swindow; /* Size of scrolling window */ public int jump_sline; /* Screen line of "jump target" */ public long jump_sline_fraction = -1; public int shift_count; /* Number of positions to shift horizontally */ public long shift_count_fraction = -1; public int chopline; /* Truncate displayed lines at screen width */ public int wordwrap; /* Wrap lines at space */ public int no_init; /* Disable sending ti/te termcap strings */ public int no_keypad; /* Disable sending ks/ke termcap strings */ public int twiddle; /* Show tildes after EOF */ public int show_attn; /* Hilite first unread line */ public int status_col; /* Display a status column */ public int use_lessopen; /* Use the LESSOPEN filter */ public int quit_on_intr; /* Quit on interrupt */ public int follow_mode; /* F cmd Follows file desc or file name? */ public int oldbot; /* Old bottom of screen behavior {{REMOVE}} */ public int opt_use_backslash; /* Use backslash escaping in option parsing */ public LWCHAR rscroll_char; /* Char which marks chopped lines with -S */ public int rscroll_attr; /* Attribute of rscroll_char */ public int no_hist_dups; /* Remove dups from history list */ public int mousecap; /* Allow mouse for scrolling */ public int wheel_lines; /* Number of lines to scroll on mouse wheel scroll */ public int perma_marks; /* Save marks in history file */ public int linenum_width; /* Width of line numbers */ public int status_col_width; /* Width of status column */ public int incr_search; /* Incremental search */ public int use_color; /* Use UI color */ public int want_filesize; /* Scan to EOF if necessary to get file size */ public int status_line; /* Highlight entire marked lines */ public int header_lines; /* Freeze header lines at top of screen */ public int header_cols; /* Freeze header columns at left of screen */ public int nonum_headers; /* Don't give headers line numbers */ public int nosearch_header_lines = 0; /* Don't search in header lines */ public int nosearch_header_cols = 0; /* Don't search in header columns */ public int redraw_on_quit; /* Redraw last screen after term deinit */ public int def_search_type; /* */ public int exit_F_on_close; /* Exit F command when input closes */ public int modelines; /* Lines to read looking for modelines */ public int show_preproc_error; /* Display msg when preproc exits with error */ public int proc_backspace; /* Special handling of backspace */ public int proc_tab; /* Special handling of tab */ public int proc_return; /* Special handling of carriage return */ public int match_shift; /* Extra horizontal shift on search match */ public long match_shift_fraction = NUM_FRAC_DENOM/2; /* 1/2 of screen width */ public char intr_char = CONTROL('X'); /* Char to interrupt reads */ #if HILITE_SEARCH public int hilite_search; /* Highlight matched search patterns? */ #endif public int less_is_more = 0; /* Make compatible with POSIX more */ /* * Long option names. */ static struct optname a_optname = { "search-skip-screen", NULL }; static struct optname b_optname = { "buffers", NULL }; static struct optname B__optname = { "auto-buffers", NULL }; static struct optname c_optname = { "clear-screen", NULL }; static struct optname d_optname = { "dumb", NULL }; static struct optname D__optname = { "color", NULL }; static struct optname e_optname = { "quit-at-eof", NULL }; static struct optname f_optname = { "force", NULL }; static struct optname F__optname = { "quit-if-one-screen", NULL }; #if HILITE_SEARCH static struct optname g_optname = { "hilite-search", NULL }; #endif static struct optname h_optname = { "max-back-scroll", NULL }; static struct optname i_optname = { "ignore-case", NULL }; static struct optname j_optname = { "jump-target", NULL }; static struct optname J__optname = { "status-column", NULL }; #if USERFILE static struct optname k_optname = { "lesskey-file", NULL }; #if HAVE_LESSKEYSRC static struct optname ks_optname = { "lesskey-src", NULL }; static struct optname kc_optname = { "lesskey-content", NULL }; #endif /* HAVE_LESSKEYSRC */ #endif static struct optname K__optname = { "quit-on-intr", NULL }; static struct optname L__optname = { "no-lessopen", NULL }; static struct optname m_optname = { "long-prompt", NULL }; static struct optname n_optname = { "line-numbers", NULL }; #if LOGFILE static struct optname o_optname = { "log-file", NULL }; static struct optname O__optname = { "LOG-FILE", NULL }; #endif static struct optname p_optname = { "pattern", NULL }; static struct optname P__optname = { "prompt", NULL }; static struct optname q2_optname = { "silent", NULL }; static struct optname q_optname = { "quiet", &q2_optname }; static struct optname r_optname = { "raw-control-chars", NULL }; static struct optname s_optname = { "squeeze-blank-lines", NULL }; static struct optname S__optname = { "chop-long-lines", NULL }; #if TAGS static struct optname t_optname = { "tag", NULL }; static struct optname T__optname = { "tag-file", NULL }; #endif static struct optname u_optname = { "underline-special", NULL }; static struct optname V__optname = { "version", NULL }; static struct optname w_optname = { "hilite-unread", NULL }; static struct optname x_optname = { "tabs", NULL }; static struct optname X__optname = { "no-init", NULL }; static struct optname y_optname = { "max-forw-scroll", NULL }; static struct optname z_optname = { "window", NULL }; static struct optname quote_optname = { "quotes", NULL }; static struct optname tilde_optname = { "tilde", NULL }; static struct optname query_optname = { "help", NULL }; static struct optname pound_optname = { "shift", NULL }; static struct optname keypad_optname = { "no-keypad", NULL }; static struct optname oldbot_optname = { "old-bot", NULL }; static struct optname follow_optname = { "follow-name", NULL }; static struct optname use_backslash_optname = { "use-backslash", NULL }; static struct optname rscroll_optname = { "rscroll", NULL }; static struct optname nohistdups_optname = { "no-histdups", NULL }; static struct optname mousecap_optname = { "mouse", NULL }; static struct optname wheel_lines_optname = { "wheel-lines", NULL }; static struct optname perma_marks_optname = { "save-marks", NULL }; static struct optname linenum_width_optname = { "line-num-width", NULL }; static struct optname status_col_width_optname = { "status-col-width", NULL }; static struct optname incr_search_optname = { "incsearch", NULL }; static struct optname use_color_optname = { "use-color", NULL }; static struct optname want_filesize_optname = { "file-size", NULL }; static struct optname status_line_optname = { "status-line", NULL }; static struct optname header_optname = { "header", NULL }; static struct optname nonum_headers_optname = { "no-number-headers", NULL }; static struct optname nosearch_headers_optname = { "no-search-headers", NULL }; static struct optname nosearch_header_lines_optname = { "no-search-header-lines", NULL }; static struct optname nosearch_header_cols_optname = { "no-search-header-columns", NULL }; static struct optname redraw_on_quit_optname = { "redraw-on-quit", NULL }; static struct optname search_type_optname = { "search-options", NULL }; static struct optname exit_F_on_close_optname = { "exit-follow-on-close", NULL }; static struct optname modelines_optname = { "modelines", NULL }; static struct optname no_vbell_optname = { "no-vbell", NULL }; static struct optname intr_optname = { "intr", NULL }; static struct optname wordwrap_optname = { "wordwrap", NULL }; static struct optname show_preproc_error_optname = { "show-preproc-errors", NULL }; static struct optname proc_backspace_optname = { "proc-backspace", NULL }; static struct optname proc_tab_optname = { "proc-tab", NULL }; static struct optname proc_return_optname = { "proc-return", NULL }; static struct optname match_shift_optname = { "match-shift", NULL }; #if LESSTEST static struct optname ttyin_name_optname = { "tty", NULL }; #endif /*LESSTEST*/ /* * Table of all options and their semantics. * * For BOOL and TRIPLE options, odesc[0], odesc[1], odesc[2] are * the description of the option when set to 0, 1 or 2, respectively. * For NUMBER options, odesc[0] is the prompt to use when entering * a new value, and odesc[1] is the description, which should contain * one %d which is replaced by the value of the number. * For STRING options, odesc[0] is the prompt to use when entering * a new value, and odesc[1], if not NULL, is the set of characters * that are valid in the string. */ static struct loption option[] = { { 'a', &a_optname, TRIPLE, OPT_ONPLUS, &how_search, NULL, { "Search includes displayed screen", "Search skips displayed screen", "Search includes all of displayed screen" } }, { 'b', &b_optname, NUMBER|INIT_HANDLER, 64, &bufspace, opt_b, { "Max buffer space per file (K): ", "Max buffer space per file: %dK", NULL } }, { 'B', &B__optname, BOOL, OPT_ON, &autobuf, NULL, { "Don't automatically allocate buffers", "Automatically allocate buffers when needed", NULL } }, { 'c', &c_optname, TRIPLE, OPT_OFF, &top_scroll, NULL, { "Repaint by scrolling from bottom of screen", "Repaint by painting from top of screen", "Repaint by painting from top of screen" } }, { 'd', &d_optname, BOOL|NO_TOGGLE, OPT_OFF, &know_dumb, NULL, { "Assume intelligent terminal", "Assume dumb terminal", NULL } }, { 'D', &D__optname, STRING|REPAINT|NO_QUERY, 0, NULL, opt_D, { "color desc: ", "s", NULL } }, { 'e', &e_optname, TRIPLE, OPT_OFF, &quit_at_eof, NULL, { "Don't quit at end-of-file", "Quit at end-of-file", "Quit immediately at end-of-file" } }, { 'f', &f_optname, BOOL, OPT_OFF, &force_open, NULL, { "Open only regular files", "Open even non-regular files", NULL } }, { 'F', &F__optname, BOOL, OPT_OFF, &quit_if_one_screen, NULL, { "Don't quit if end-of-file on first screen", "Quit if end-of-file on first screen", NULL } }, #if HILITE_SEARCH { 'g', &g_optname, TRIPLE|HL_REPAINT, OPT_ONPLUS, &hilite_search, NULL, { "Don't highlight search matches", "Highlight matches for previous search only", "Highlight all matches for previous search pattern", } }, #endif { 'h', &h_optname, NUMBER, -1, &back_scroll, NULL, { "Backwards scroll limit: ", "Backwards scroll limit is %d lines", NULL } }, { 'i', &i_optname, TRIPLE|HL_REPAINT, OPT_OFF, &caseless, opt_i, { "Case is significant in searches", "Ignore case in searches", "Ignore case in searches and in patterns" } }, { 'j', &j_optname, STRING, 0, NULL, opt_j, { "Target line: ", "-.d", NULL } }, { 'J', &J__optname, BOOL|REPAINT, OPT_OFF, &status_col, NULL, { "Don't display a status column", "Display a status column", NULL } }, #if USERFILE { 'k', &k_optname, STRING|NO_TOGGLE|NO_QUERY, 0, NULL, opt_k, { NULL, NULL, NULL } }, #if HAVE_LESSKEYSRC { OLETTER_NONE, &kc_optname, STRING|NO_TOGGLE|NO_QUERY, 0, NULL, opt_kc, { NULL, NULL, NULL } }, { OLETTER_NONE, &ks_optname, STRING|NO_TOGGLE|NO_QUERY, 0, NULL, opt_ks, { NULL, NULL, NULL } }, #endif /* HAVE_LESSKEYSRC */ #endif { 'K', &K__optname, BOOL, OPT_OFF, &quit_on_intr, NULL, { "Interrupt (ctrl-C) returns to prompt", "Interrupt (ctrl-C) exits less", NULL } }, { 'L', &L__optname, BOOL, OPT_ON, &use_lessopen, NULL, { "Don't use the LESSOPEN filter", "Use the LESSOPEN filter", NULL } }, { 'm', &m_optname, TRIPLE, OPT_OFF, &pr_type, NULL, { "Short prompt", "Medium prompt", "Long prompt" } }, { 'n', &n_optname, TRIPLE|REPAINT, OPT_ON, &linenums, NULL, { "Don't use line numbers", "Use line numbers", "Constantly display line numbers" } }, #if LOGFILE { 'o', &o_optname, STRING, 0, NULL, opt_o, { "log file: ", NULL, NULL } }, { 'O', &O__optname, STRING, 0, NULL, opt__O, { "Log file: ", NULL, NULL } }, #endif { 'p', &p_optname, STRING|NO_TOGGLE|NO_QUERY, 0, NULL, opt_p, { NULL, NULL, NULL } }, { 'P', &P__optname, STRING, 0, NULL, opt__P, { "prompt: ", NULL, NULL } }, { 'q', &q_optname, TRIPLE, OPT_OFF, &quiet, NULL, { "Ring the bell for errors AND at eof/bof", "Ring the bell for errors but not at eof/bof", "Never ring the bell" } }, { 'r', &r_optname, TRIPLE|REPAINT, OPT_OFF, &ctldisp, NULL, { "Display control characters as ^X", "Display control characters directly (not recommended)", "Display ANSI sequences directly, other control characters as ^X" } }, { 's', &s_optname, BOOL|REPAINT, OPT_OFF, &squeeze, NULL, { "Display all blank lines", "Squeeze multiple blank lines", NULL } }, { 'S', &S__optname, BOOL|REPAINT, OPT_OFF, &chopline, opt__S, { "Fold long lines", "Chop long lines", NULL } }, #if TAGS { 't', &t_optname, STRING|NO_QUERY, 0, NULL, opt_t, { "tag: ", NULL, NULL } }, { 'T', &T__optname, STRING, 0, NULL, opt__T, { "tags file: ", NULL, NULL } }, #endif { 'u', &u_optname, TRIPLE|REPAINT|HL_REPAINT, OPT_OFF, &bs_mode, NULL, { "Display underlined text in underline mode", "Backspaces cause overstrike", "Print backspace as ^H" } }, { 'V', &V__optname, NOVAR, 0, NULL, opt__V, { NULL, NULL, NULL } }, { 'w', &w_optname, TRIPLE|REPAINT, OPT_OFF, &show_attn, NULL, { "Don't highlight first unread line", "Highlight first unread line after forward-screen", "Highlight first unread line after any forward movement", } }, { 'x', &x_optname, STRING|REPAINT, 0, NULL, opt_x, { "Tab stops: ", "d,", NULL } }, { 'X', &X__optname, BOOL|NO_TOGGLE, OPT_OFF, &no_init, NULL, { "Send init/deinit strings to terminal", "Don't use init/deinit strings", NULL } }, { 'y', &y_optname, NUMBER, -1, &forw_scroll, NULL, { "Forward scroll limit: ", "Forward scroll limit is %d lines", NULL } }, { 'z', &z_optname, NUMBER, -1, &swindow, NULL, { "Scroll window size: ", "Scroll window size is %d lines", NULL } }, { '"', "e_optname, STRING, 0, NULL, opt_quote, { "quotes: ", "s", NULL } }, { '~', &tilde_optname, BOOL|REPAINT, OPT_ON, &twiddle, NULL, { "Don't show tildes after end of file", "Show tildes after end of file", NULL } }, { '?', &query_optname, NOVAR, 0, NULL, opt_query, { NULL, NULL, NULL } }, { '#', £_optname, STRING, 0, NULL, opt_shift, { "Horizontal shift: ", ".d", NULL } }, { OLETTER_NONE, &keypad_optname, BOOL|NO_TOGGLE, OPT_OFF, &no_keypad, NULL, { "Use keypad mode", "Don't use keypad mode", NULL } }, { OLETTER_NONE, &oldbot_optname, BOOL, OPT_OFF, &oldbot, NULL, { "Use new bottom of screen behavior", "Use old bottom of screen behavior", NULL } }, { OLETTER_NONE, &follow_optname, BOOL, FOLLOW_DESC, &follow_mode, NULL, { "F command follows file descriptor", "F command follows file name", NULL } }, { OLETTER_NONE, &use_backslash_optname, BOOL, OPT_OFF, &opt_use_backslash, NULL, { "Use backslash escaping in command line parameters", "Don't use backslash escaping in command line parameters", NULL } }, { OLETTER_NONE, &rscroll_optname, STRING|REPAINT|INIT_HANDLER, 0, NULL, opt_rscroll, { "rscroll character: ", "s", NULL } }, { OLETTER_NONE, &nohistdups_optname, BOOL, OPT_OFF, &no_hist_dups, NULL, { "Allow duplicates in history list", "Remove duplicates from history list", NULL } }, { OLETTER_NONE, &mousecap_optname, TRIPLE, OPT_OFF, &mousecap, opt_mousecap, { "Ignore mouse input", "Use the mouse for scrolling", "Use the mouse for scrolling (reverse)" } }, { OLETTER_NONE, &wheel_lines_optname, NUMBER|INIT_HANDLER, 0, &wheel_lines, opt_wheel_lines, { "Lines to scroll on mouse wheel: ", "Scroll %d line(s) on mouse wheel", NULL } }, { OLETTER_NONE, &perma_marks_optname, BOOL, OPT_OFF, &perma_marks, NULL, { "Don't save marks in history file", "Save marks in history file", NULL } }, { OLETTER_NONE, &linenum_width_optname, NUMBER|REPAINT, MIN_LINENUM_WIDTH, &linenum_width, opt_linenum_width, { "Line number width: ", "Line number width is %d chars", NULL } }, { OLETTER_NONE, &status_col_width_optname, NUMBER|REPAINT, 2, &status_col_width, opt_status_col_width, { "Status column width: ", "Status column width is %d chars", NULL } }, { OLETTER_NONE, &incr_search_optname, BOOL, OPT_OFF, &incr_search, NULL, { "Incremental search is off", "Incremental search is on", NULL } }, { OLETTER_NONE, &use_color_optname, BOOL|REPAINT, OPT_OFF, &use_color, NULL, { "Don't use color", "Use color", NULL } }, { OLETTER_NONE, &want_filesize_optname, BOOL|REPAINT, OPT_OFF, &want_filesize, opt_filesize, { "Don't get size of each file", "Get size of each file", NULL } }, { OLETTER_NONE, &status_line_optname, BOOL|REPAINT, OPT_OFF, &status_line, NULL, { "Don't color each line with its status column color", "Color each line with its status column color", NULL } }, { OLETTER_NONE, &header_optname, STRING|REPAINT, 0, NULL, opt_header, { "Header lines: ", "d,", NULL } }, { OLETTER_NONE, &nonum_headers_optname, BOOL|REPAINT, 0, &nonum_headers, NULL, { "Number header lines", "Don't number header lines", NULL } }, { OLETTER_NONE, &nosearch_headers_optname, BOOL|HL_REPAINT, 0, NULL, opt_nosearch_headers, { NULL, NULL, NULL } }, { OLETTER_NONE, &nosearch_header_lines_optname, BOOL|HL_REPAINT, 0, NULL, opt_nosearch_header_lines, { NULL, NULL, NULL } }, { OLETTER_NONE, &nosearch_header_cols_optname, BOOL|HL_REPAINT, 0, NULL, opt_nosearch_header_cols, { NULL, NULL, NULL } }, { OLETTER_NONE, &redraw_on_quit_optname, BOOL, OPT_OFF, &redraw_on_quit, NULL, { "Don't redraw screen when quitting", "Redraw last screen when quitting", NULL } }, { OLETTER_NONE, &search_type_optname, STRING, 0, NULL, opt_search_type, { "Search options: ", "s", NULL } }, { OLETTER_NONE, &exit_F_on_close_optname, BOOL, OPT_OFF, &exit_F_on_close, NULL, { "Don't exit F command when input closes", "Exit F command when input closes", NULL } }, { OLETTER_NONE, &no_vbell_optname, BOOL, OPT_OFF, &no_vbell, NULL, { "Display visual bell", "Don't display visual bell", NULL } }, { OLETTER_NONE, &modelines_optname, NUMBER, 0, &modelines, NULL, { "Lines to read looking for modelines: ", "Read %d lines looking for modelines", NULL } }, { OLETTER_NONE, &intr_optname, STRING, 0, NULL, opt_intr, { "interrupt character: ", "s", NULL } }, { OLETTER_NONE, &wordwrap_optname, BOOL|REPAINT, OPT_OFF, &wordwrap, NULL, { "Wrap lines at any character", "Wrap lines at spaces", NULL } }, { OLETTER_NONE, &show_preproc_error_optname, BOOL, OPT_OFF, &show_preproc_error, NULL, { "Don't show error message if preprocessor fails", "Show error message if preprocessor fails", NULL } }, { OLETTER_NONE, &proc_backspace_optname, TRIPLE|REPAINT|HL_REPAINT, OPT_OFF, &proc_backspace, NULL, { "Backspace handling is specified by the -U option", "Display underline text in underline mode", "Print backspaces as ^H" } }, { OLETTER_NONE, &proc_tab_optname, TRIPLE|REPAINT|HL_REPAINT, OPT_OFF, &proc_tab, NULL, { "Tab handling is specified by the -U option", "Expand tabs to spaces", "Print tabs as ^I" } }, { OLETTER_NONE, &proc_return_optname, TRIPLE|REPAINT|HL_REPAINT, OPT_OFF, &proc_return, NULL, { "Carriage return handling is specified by the -U option", "Delete carriage return before newline", "Print carriage return as ^M" } }, { OLETTER_NONE, &match_shift_optname, STRING|INIT_HANDLER, 0, NULL, opt_match_shift, { "Search match shift: ", ".d", NULL } }, #if LESSTEST { OLETTER_NONE, &ttyin_name_optname, STRING|NO_TOGGLE, 0, NULL, opt_ttyin_name, { NULL, NULL, NULL } }, #endif /*LESSTEST*/ { '\0', NULL, NOVAR, 0, NULL, NULL, { NULL, NULL, NULL } } }; /* * Initialize each option to its default value. */ public void init_option(void) { struct loption *o; constant char *p; p = lgetenv("LESS_IS_MORE"); if (!isnullenv(p)) less_is_more = 1; for (o = option; o->oletter != '\0'; o++) { /* * Set each variable to its default. */ if (o->ovar != NULL) *(o->ovar) = o->odefault; if (o->otype & INIT_HANDLER) (*(o->ofunc))(INIT, (char *) NULL); } } /* * Find an option in the option table, given its option letter. */ public struct loption * findopt(int c) { struct loption *o; for (o = option; o->oletter != '\0'; o++) { if (o->oletter == c) return (o); if ((o->otype & TRIPLE) && ASCII_TO_UPPER(o->oletter) == c) return (o); } return (NULL); } /* * */ static lbool is_optchar(char c) { if (ASCII_IS_UPPER(c)) return TRUE; if (ASCII_IS_LOWER(c)) return TRUE; if (c == '-') return TRUE; return FALSE; } /* * Find an option in the option table, given its option name. * p_optname is the (possibly partial) name to look for, and * is updated to point after the matched name. * p_oname if non-NULL is set to point to the full option name. */ public struct loption * findopt_name(constant char **p_optname, constant char **p_oname, lbool *p_ambig) { constant char *optname = *p_optname; struct loption *o; struct optname *oname; size_t len; int uppercase; struct loption *maxo = NULL; struct optname *maxoname = NULL; size_t maxlen = 0; lbool ambig = FALSE; lbool exact = FALSE; /* * Check all options. */ for (o = option; o->oletter != '\0'; o++) { /* * Check all names for this option. */ for (oname = o->onames; oname != NULL; oname = oname->onext) { /* * Try normal match first (uppercase == 0), * then, then if it's a TRIPLE option, * try uppercase match (uppercase == 1). */ for (uppercase = 0; uppercase <= 1; uppercase++) { len = sprefix(optname, oname->oname, uppercase); if (len == 0 || is_optchar(optname[len])) { /* * We didn't use all of the option name. */ continue; } if (!exact && len == maxlen) /* * Already had a partial match, * and now there's another one that * matches the same length. */ ambig = TRUE; else if (len > maxlen) { /* * Found a better match than * the one we had. */ maxo = o; maxoname = oname; maxlen = len; ambig = FALSE; exact = (len == strlen(oname->oname)); } if (!(o->otype & TRIPLE)) break; } } } if (p_ambig != NULL) *p_ambig = ambig; if (ambig) { /* * Name matched more than one option. */ return (NULL); } *p_optname = optname + maxlen; if (p_oname != NULL) *p_oname = maxoname == NULL ? NULL : maxoname->oname; return (maxo); } less-668/os.c0000444060175306017530000002457014700607625012173 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Operating system dependent routines. * * Most of the stuff in here is based on Unix, but an attempt * has been made to make things work on other operating systems. * This will sometimes result in a loss of functionality, unless * someone rewrites code specifically for the new operating system. * * The makefile provides defines to decide whether various * Unix features are present. */ #include "less.h" #include #include #if MSDOS_COMPILER==WIN32C #include #endif #if HAVE_TIME_H #include #endif #if HAVE_ERRNO_H #include #endif #if HAVE_VALUES_H #include #endif #if defined(__APPLE__) #include #endif #if HAVE_POLL && !MSDOS_COMPILER #define USE_POLL 1 static lbool use_poll = TRUE; #else #define USE_POLL 0 #endif #if USE_POLL #include static lbool any_data = FALSE; #endif /* * BSD setjmp() saves (and longjmp() restores) the signal mask. * This costs a system call or two per setjmp(), so if possible we clear the * signal mask with sigsetmask(), and use _setjmp()/_longjmp() instead. * On other systems, setjmp() doesn't affect the signal mask and so * _setjmp() does not exist; we just use setjmp(). */ #if HAVE__SETJMP && HAVE_SIGSETMASK #define SET_JUMP _setjmp #define LONG_JUMP _longjmp #else #define SET_JUMP setjmp #define LONG_JUMP longjmp #endif public int reading; public lbool waiting_for_data; public int consecutive_nulls = 0; /* Milliseconds to wait for data before displaying "waiting for data" message. */ static int waiting_for_data_delay = 4000; static jmp_buf read_label; extern int sigs; extern int ignore_eoi; extern int exit_F_on_close; extern int follow_mode; extern int scanning_eof; extern char intr_char; extern int is_tty; #if !MSDOS_COMPILER extern int tty; #endif public void init_poll(void) { constant char *delay = lgetenv("LESS_DATA_DELAY"); int idelay = (delay == NULL) ? 0 : atoi(delay); if (idelay > 0) waiting_for_data_delay = idelay; #if USE_POLL #if defined(__APPLE__) /* In old versions of MacOS, poll() does not work with /dev/tty. */ struct utsname uts; if (uname(&uts) < 0 || lstrtoi(uts.release, NULL, 10) < 20) use_poll = FALSE; #endif #endif } #if USE_POLL /* * Check whether data is available, either from a file/pipe or from the tty. * Return READ_AGAIN if no data currently available, but caller should retry later. * Return READ_INTR to abort F command (forw_loop). * Return 0 if safe to read from fd. */ static int check_poll(int fd, int tty) { struct pollfd poller[2] = { { fd, POLLIN, 0 }, { tty, POLLIN, 0 } }; int timeout = (waiting_for_data && !(scanning_eof && follow_mode == FOLLOW_NAME)) ? -1 : waiting_for_data_delay; if (!any_data) { /* * Don't do polling if no data has yet been received, * to allow a program piping data into less to have temporary * access to the tty (like sudo asking for a password). */ return (0); } poll(poller, 2, timeout); #if LESSTEST if (!is_lesstest()) /* Check for ^X only on a real tty. */ #endif /*LESSTEST*/ { if (poller[1].revents & POLLIN) { int ch = getchr(); if (ch < 0 || ch == intr_char) /* Break out of "waiting for data". */ return (READ_INTR); ungetcc_back((char) ch); } } if (ignore_eoi && exit_F_on_close && (poller[0].revents & (POLLHUP|POLLIN)) == POLLHUP) /* Break out of F loop on HUP due to --exit-follow-on-close. */ return (READ_INTR); if ((poller[0].revents & (POLLIN|POLLHUP|POLLERR)) == 0) /* No data available; let caller take action, then try again. */ return (READ_AGAIN); /* There is data (or HUP/ERR) available. Safe to call read() without blocking. */ return (0); } #endif /* USE_POLL */ public int supports_ctrl_x(void) { #if MSDOS_COMPILER==WIN32C return (TRUE); #else #if USE_POLL return (use_poll); #else return (FALSE); #endif /* USE_POLL */ #endif /* MSDOS_COMPILER==WIN32C */ } /* * Like read() system call, but is deliberately interruptible. * A call to intread() from a signal handler will interrupt * any pending iread(). */ public ssize_t iread(int fd, unsigned char *buf, size_t len) { ssize_t n; start: #if MSDOS_COMPILER==WIN32C if (ABORT_SIGS()) return (READ_INTR); #else #if MSDOS_COMPILER && MSDOS_COMPILER != DJGPPC if (kbhit()) { int c; c = getch(); if (c == '\003') return (READ_INTR); ungetch(c); } #endif #endif if (!reading && SET_JUMP(read_label)) { /* * We jumped here from intread. */ reading = FALSE; #if HAVE_SIGPROCMASK { sigset_t mask; sigemptyset(&mask); sigprocmask(SIG_SETMASK, &mask, NULL); } #else #if HAVE_SIGSETMASK sigsetmask(0); #else #ifdef _OSK sigmask(~0); #endif #endif #endif #if !MSDOS_COMPILER if (fd != tty && !ABORT_SIGS()) /* Non-interrupt signal like SIGWINCH. */ return (READ_AGAIN); #endif return (READ_INTR); } flush(); reading = TRUE; #if MSDOS_COMPILER==DJGPPC if (isatty(fd)) { /* * Don't try reading from a TTY until a character is * available, because that makes some background programs * believe DOS is busy in a way that prevents those * programs from working while "less" waits. * {{ This code was added 12 Jan 2007; still needed? }} */ fd_set readfds; FD_ZERO(&readfds); FD_SET(fd, &readfds); if (select(fd+1, &readfds, 0, 0, 0) == -1) { reading = FALSE; return (READ_ERR); } } #endif #if USE_POLL if (is_tty && fd != tty && use_poll) { int ret = check_poll(fd, tty); if (ret != 0) { if (ret == READ_INTR) sigs |= S_INTERRUPT; reading = FALSE; return (ret); } } #else #if MSDOS_COMPILER==WIN32C if (win32_kbhit()) { int c; c = WIN32getch(); if (c == intr_char) { sigs |= S_INTERRUPT; reading = FALSE; return (READ_INTR); } WIN32ungetch(c); } #endif #endif n = read(fd, buf, len); reading = FALSE; #if 1 /* * This is a kludge to workaround a problem on some systems * where terminating a remote tty connection causes read() to * start returning 0 forever, instead of -1. */ { if (!ignore_eoi) { if (n == 0) consecutive_nulls++; else consecutive_nulls = 0; if (consecutive_nulls > 20) quit(QUIT_ERROR); } } #endif if (n < 0) { #if HAVE_ERRNO /* * Certain values of errno indicate we should just retry the read. */ #if MUST_DEFINE_ERRNO extern int errno; #endif #ifdef EINTR if (errno == EINTR) goto start; #endif #ifdef EAGAIN if (errno == EAGAIN) goto start; #endif #endif return (READ_ERR); } #if USE_POLL if (fd != tty && n > 0) any_data = TRUE; #endif return (n); } /* * Interrupt a pending iread(). */ public void intread(void) { LONG_JUMP(read_label, 1); } /* * Return the current time. */ #if HAVE_TIME public time_type get_time(void) { time_type t; time(&t); return (t); } #endif #if !HAVE_STRERROR /* * Local version of strerror, if not available from the system. */ static char * strerror(int err) { static char buf[INT_STRLEN_BOUND(int)+12]; #if HAVE_SYS_ERRLIST extern char *sys_errlist[]; extern int sys_nerr; if (err < sys_nerr) return sys_errlist[err]; #endif sprintf(buf, "Error %d", err); return buf; } #endif /* * errno_message: Return an error message based on the value of "errno". */ public char * errno_message(constant char *filename) { char *p; char *m; size_t len; #if HAVE_ERRNO #if MUST_DEFINE_ERRNO extern int errno; #endif p = strerror(errno); #else p = "cannot open"; #endif len = strlen(filename) + strlen(p) + 3; m = (char *) ecalloc(len, sizeof(char)); SNPRINTF2(m, len, "%s: %s", filename, p); return (m); } /* * Return a description of a signal. * The return value is good until the next call to this function. */ public constant char * signal_message(int sig) { static char sigbuf[sizeof("Signal ") + INT_STRLEN_BOUND(sig) + 1]; #if HAVE_STRSIGNAL constant char *description = strsignal(sig); if (description) return description; #endif sprintf(sigbuf, "Signal %d", sig); return sigbuf; } /* * Return (VAL * NUM) / DEN, where DEN is positive * and min(VAL, NUM) <= DEN so the result cannot overflow. * Round to the nearest integer, breaking ties by rounding to even. */ public uintmax umuldiv(uintmax val, uintmax num, uintmax den) { /* * Like round(val * (double) num / den), but without rounding error. * Overflow cannot occur, so there is no need for floating point. */ uintmax q = val / den; uintmax r = val % den; uintmax qnum = q * num; uintmax rnum = r * num; uintmax quot = qnum + rnum / den; uintmax rem = rnum % den; return quot + (den / 2 < rem + (quot & ~den & 1)); } /* * Return the ratio of two POSITIONS, as a percentage. * {{ Assumes a POSITION is a long int. }} */ public int percentage(POSITION num, POSITION den) { return (int) muldiv(num, 100, den); } /* * Return the specified percentage of a POSITION. * Assume (0 <= POS && 0 <= PERCENT <= 100 * && 0 <= FRACTION < (PERCENT == 100 ? 1 : NUM_FRAC_DENOM)), * so the result cannot overflow. Round to even. */ public POSITION percent_pos(POSITION pos, int percent, long fraction) { /* * Change from percent (parts per 100) * to pctden (parts per 100 * NUM_FRAC_DENOM). */ POSITION pctden = (percent * NUM_FRAC_DENOM) + fraction; return (POSITION) muldiv(pos, pctden, 100 * NUM_FRAC_DENOM); } #if !HAVE_STRCHR /* * strchr is used by regexp.c. */ char * strchr(char *s, char c) { for ( ; *s != '\0'; s++) if (*s == c) return (s); if (c == '\0') return (s); return (NULL); } #endif #if !HAVE_MEMCPY void * memcpy(void *dst, void *src, size_t len) { char *dstp = (char *) dst; char *srcp = (char *) src; int i; for (i = 0; i < len; i++) dstp[i] = srcp[i]; return (dst); } #endif #ifdef _OSK_MWC32 /* * This implements an ANSI-style intercept setup for Microware C 3.2 */ public int os9_signal(int type, RETSIGTYPE (*handler)()) { intercept(handler); } #include int isatty(int f) { struct sgbuf sgbuf; if (_gs_opt(f, &sgbuf) < 0) return -1; return (sgbuf.sg_class == 0); } #endif public void sleep_ms(int ms) { #if MSDOS_COMPILER==WIN32C Sleep(ms); #else #if HAVE_NANOSLEEP int sec = ms / 1000; struct timespec t = { sec, (ms - sec*1000) * 1000000 }; nanosleep(&t, NULL); #else #if HAVE_USLEEP usleep(ms * 1000); #else sleep(ms / 1000 + (ms % 1000 != 0)); #endif #endif #endif } less-668/output.c0000444060175306017530000004112214700607626013103 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * High level routines dealing with the output to the screen. */ #include "less.h" #if MSDOS_COMPILER==WIN32C #include "windows.h" #ifndef COMMON_LVB_UNDERSCORE #define COMMON_LVB_UNDERSCORE 0x8000 #endif #endif public int errmsgs; /* Count of messages displayed by error() */ public int need_clr; public int final_attr; public int at_prompt; extern int sigs; extern int sc_width; extern int so_s_width, so_e_width; extern int is_tty; extern int oldbot; extern int utf_mode; extern char intr_char; #if MSDOS_COMPILER==WIN32C || MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC extern int ctldisp; extern int nm_fg_color, nm_bg_color; extern int bo_fg_color, bo_bg_color; extern int ul_fg_color, ul_bg_color; extern int so_fg_color, so_bg_color; extern int bl_fg_color, bl_bg_color; extern int sgr_mode; #if MSDOS_COMPILER==WIN32C extern int vt_enabled; #endif #endif /* * Display the line which is in the line buffer. */ public void put_line(void) { int c; size_t i; int a; if (ABORT_SIGS()) { /* * Don't output if a signal is pending. */ screen_trashed(); return; } final_attr = AT_NORMAL; for (i = 0; (c = gline(i, &a)) != '\0'; i++) { at_switch(a); final_attr = a; if (c == '\b') putbs(); else putchr(c); } at_exit(); } /* * win_flush has at least one non-critical issue when an escape sequence * begins at the last char of the buffer, and possibly more issues. * as a temporary measure to reduce likelyhood of encountering end-of-buffer * issues till the SGR parser is replaced, OUTBUF_SIZE is 8K on Windows. */ static char obuf[OUTBUF_SIZE]; static char *ob = obuf; static int outfd = 2; /* stderr */ #if MSDOS_COMPILER==WIN32C || MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC typedef unsigned t_attr; #define A_BOLD (1u<<0) #define A_ITALIC (1u<<1) #define A_UNDERLINE (1u<<2) #define A_BLINK (1u<<3) #define A_INVERSE (1u<<4) #define A_CONCEAL (1u<<5) /* long is guaranteed 32 bits, and we reserve bits for type + RGB */ typedef unsigned long t_color; #define T_DEFAULT 0ul #define T_ANSI 1ul /* colors 0-7 */ #define CGET_ANSI(c) ((c) & 0x7) #define C_DEFAULT (T_DEFAULT <<24) /* 0 */ #define C_ANSI(c) ((T_ANSI <<24) | (c)) /* attr/fg/bg/all 0 is the default attr/fg/bg/all, respectively */ typedef struct t_sgr { t_attr attr; t_color fg; t_color bg; } t_sgr; static constant t_sgr SGR_DEFAULT; /* = {0} */ /* returns 0 on success, non-0 on unknown SGR code */ static int update_sgr(t_sgr *sgr, long code) { switch (code) { case 0: *sgr = SGR_DEFAULT; break; case 1: sgr->attr |= A_BOLD; break; case 22: sgr->attr &= ~A_BOLD; break; case 3: sgr->attr |= A_ITALIC; break; case 23: sgr->attr &= ~A_ITALIC; break; case 4: sgr->attr |= A_UNDERLINE; break; case 24: sgr->attr &= ~A_UNDERLINE; break; case 6: /* fast-blink, fallthrough */ case 5: sgr->attr |= A_BLINK; break; case 25: sgr->attr &= ~A_BLINK; break; case 7: sgr->attr |= A_INVERSE; break; case 27: sgr->attr &= ~A_INVERSE; break; case 8: sgr->attr |= A_CONCEAL; break; case 28: sgr->attr &= ~A_CONCEAL; break; case 39: sgr->fg = C_DEFAULT; break; case 49: sgr->bg = C_DEFAULT; break; case 30: case 31: case 32: case 33: case 34: case 35: case 36: case 37: sgr->fg = C_ANSI(code - 30); break; case 40: case 41: case 42: case 43: case 44: case 45: case 46: case 47: sgr->bg = C_ANSI(code - 40); break; default: return 1; } return 0; } static void set_win_colors(t_sgr *sgr) { #if MSDOS_COMPILER==WIN32C /* Screen colors used by 3x and 4x SGR commands. */ static unsigned char screen_color[] = { 0, /* BLACK */ FOREGROUND_RED, FOREGROUND_GREEN, FOREGROUND_RED|FOREGROUND_GREEN, FOREGROUND_BLUE, FOREGROUND_BLUE|FOREGROUND_RED, FOREGROUND_BLUE|FOREGROUND_GREEN, FOREGROUND_BLUE|FOREGROUND_GREEN|FOREGROUND_RED }; #else static enum COLORS screen_color[] = { BLACK, RED, GREEN, BROWN, BLUE, MAGENTA, CYAN, LIGHTGRAY }; #endif int fg, bg, tmp; /* Windows colors */ /* Not "SGR mode": apply -D to default fg+bg with one attribute */ if (!sgr_mode && sgr->fg == C_DEFAULT && sgr->bg == C_DEFAULT) { switch (sgr->attr) { case A_BOLD: WIN32setcolors(bo_fg_color, bo_bg_color); return; case A_UNDERLINE: WIN32setcolors(ul_fg_color, ul_bg_color); return; case A_BLINK: WIN32setcolors(bl_fg_color, bl_bg_color); return; case A_INVERSE: WIN32setcolors(so_fg_color, so_bg_color); return; /* * There's no -Di so italic should not be here, but to * preserve legacy behavior, apply -Ds to italic too. */ case A_ITALIC: WIN32setcolors(so_fg_color, so_bg_color); return; } } /* generic application of the SGR state as Windows colors */ fg = sgr->fg == C_DEFAULT ? nm_fg_color : screen_color[CGET_ANSI(sgr->fg)]; bg = sgr->bg == C_DEFAULT ? nm_bg_color : screen_color[CGET_ANSI(sgr->bg)]; if (sgr->attr & A_BOLD) fg |= 8; if (sgr->attr & (A_BLINK | A_UNDERLINE)) bg |= 8; /* TODO: can be illegible */ if (sgr->attr & (A_INVERSE | A_ITALIC)) { tmp = fg; fg = bg; bg = tmp; } if (sgr->attr & A_CONCEAL) fg = bg ^ 8; WIN32setcolors(fg, bg); } /* like is_ansi_end, but doesn't assume c != 0 (returns 0 for c == 0) */ static int is_ansi_end_0(char c) { return c && is_ansi_end((unsigned char)c); } static void win_flush(void) { if (ctldisp != OPT_ONPLUS #if MSDOS_COMPILER==WIN32C || (vt_enabled && sgr_mode) #endif ) WIN32textout(obuf, ptr_diff(ob, obuf)); else { /* * Digest text, apply embedded SGR sequences as Windows-colors. * By default - when -Da ("SGR mode") is unset - also apply * translation of -D command-line options (at set_win_colors) */ char *anchor, *p, *p_next; static t_sgr sgr; /* when unsupported SGR value is encountered, like 38/48 for * 256/true colors, then we abort processing this sequence, * because it may expect followup values, but we don't know * how many, so we've lost sync of this sequence parsing. * Without VT enabled it's OK because we can't do much anyway, * but with VT enabled we choose to passthrough this sequence * to the terminal - which can handle it better than us. * however, this means that our "sgr" var is no longer in sync * with the actual terminal state, which can lead to broken * colors with future sequences which we _can_ fully parse. * in such case, once it happens, we keep passthrough sequences * until we know we're in sync again - on a valid reset. */ static int sgr_bad_sync; for (anchor = p_next = obuf; (p_next = memchr(p_next, ESC, ob - p_next)) != NULL; ) { p = p_next; if (p[1] == '[') /* "ESC-[" sequence */ { /* * unknown SGR code ignores the rest of the seq, * and allows ignoring sequences such as * ^[[38;5;123m or ^[[38;2;5;6;7m * (prior known codes at the same seq do apply) */ int bad_code = 0; if (p > anchor) { /* * If some chars seen since * the last escape sequence, * write them out to the screen. */ WIN32textout(anchor, ptr_diff(p, anchor)); anchor = p; } p += 2; /* Skip the "ESC-[" */ if (is_ansi_end_0(*p)) { /* * Handle null escape sequence * "ESC[m" as if it was "ESC[0m" */ p++; anchor = p_next = p; update_sgr(&sgr, 0); set_win_colors(&sgr); sgr_bad_sync = 0; continue; } p_next = p; /* * Parse and apply SGR values to the SGR state * based on the escape sequence. */ while (!is_ansi_end_0(*p)) { char *q; long code = strtol(p, &q, 10); if (*q == '\0') { /* * Incomplete sequence. * Leave it unprocessed * in the buffer. */ size_t slop = ptr_diff(q, anchor); memmove(obuf, anchor, slop); ob = &obuf[slop]; return; } if (q == p || (!is_ansi_end_0(*q) && *q != ';')) { /* * can't parse. passthrough * till the end of the buffer */ p_next = q; break; } if (*q == ';') q++; if (!bad_code) bad_code = update_sgr(&sgr, code); if (bad_code) sgr_bad_sync = 1; else if (code == 0) sgr_bad_sync = 0; p = q; } if (!is_ansi_end_0(*p) || p == p_next) break; if (sgr_bad_sync && vt_enabled) { /* this or a prior sequence had unknown * SGR value. passthrough all sequences * until we're in-sync again */ WIN32textout(anchor, ptr_diff(p+1, anchor)); } else { set_win_colors(&sgr); } p_next = anchor = p + 1; } else p_next++; } /* Output what's left in the buffer. */ WIN32textout(anchor, ptr_diff(ob, anchor)); } ob = obuf; } #endif /* * Flush buffered output. * * If we haven't displayed any file data yet, * output messages on error output (file descriptor 2), * otherwise output on standard output (file descriptor 1). * * This has the desirable effect of producing all * error messages on error output if standard output * is directed to a file. It also does the same if * we never produce any real output; for example, if * the input file(s) cannot be opened. If we do * eventually produce output, code in edit() makes * sure these messages can be seen before they are * overwritten or scrolled away. */ public void flush(void) { size_t n; n = ptr_diff(ob, obuf); if (n == 0) return; ob = obuf; #if MSDOS_COMPILER==MSOFTC if (interactive()) { obuf[n] = '\0'; _outtext(obuf); return; } #else #if MSDOS_COMPILER==WIN32C || MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC if (interactive()) { ob = obuf + n; *ob = '\0'; win_flush(); return; } #endif #endif if (write(outfd, obuf, n) != n) screen_trashed(); } /* * Set the output file descriptor (1=stdout or 2=stderr). */ public void set_output(int fd) { flush(); outfd = fd; } /* * Output a character. * ch is int for compatibility with tputs. */ public int putchr(int ch) { char c = (char) ch; #if 0 /* fake UTF-8 output for testing */ extern int utf_mode; if (utf_mode) { static char ubuf[MAX_UTF_CHAR_LEN]; static int ubuf_len = 0; static int ubuf_index = 0; if (ubuf_len == 0) { ubuf_len = utf_len(c); ubuf_index = 0; } ubuf[ubuf_index++] = c; if (ubuf_index < ubuf_len) return c; c = get_wchar(ubuf) & 0xFF; ubuf_len = 0; } #endif clear_bot_if_needed(); #if MSDOS_COMPILER if (c == '\n' && is_tty) { /* remove_top(1); */ putchr('\r'); } #else #ifdef _OSK if (c == '\n' && is_tty) /* In OS-9, '\n' == 0x0D */ putchr(0x0A); #endif #endif /* * Some versions of flush() write to *ob, so we must flush * when we are still one char from the end of obuf. */ if (ob >= &obuf[sizeof(obuf)-1]) flush(); *ob++ = c; at_prompt = 0; return (c); } public void clear_bot_if_needed(void) { if (!need_clr) return; need_clr = 0; clear_bot(); } /* * Output a string. */ public void putstr(constant char *s) { while (*s != '\0') putchr(*s++); } /* * Convert an integral type to a string. */ #define TYPE_TO_A_FUNC(funcname, type) \ void funcname(type num, char *buf, int radix) \ { \ int neg = (num < 0); \ char tbuf[INT_STRLEN_BOUND(num)+2]; \ char *s = tbuf + sizeof(tbuf); \ if (neg) num = -num; \ *--s = '\0'; \ do { \ *--s = "0123456789ABCDEF"[num % radix]; \ } while ((num /= radix) != 0); \ if (neg) *--s = '-'; \ strcpy(buf, s); \ } TYPE_TO_A_FUNC(postoa, POSITION) TYPE_TO_A_FUNC(linenumtoa, LINENUM) TYPE_TO_A_FUNC(inttoa, int) /* * Convert a string to an integral type. Return ((type) -1) on overflow. */ #define STR_TO_TYPE_FUNC(funcname, cfuncname, type) \ type cfuncname(constant char *buf, constant char **ebuf, int radix) \ { \ type val = 0; \ lbool v = 0; \ for (;; buf++) { \ char c = *buf; \ int digit = (c >= '0' && c <= '9') ? c - '0' : (c >= 'a' && c <= 'f') ? c - 'a' + 10 : (c >= 'A' && c <= 'F') ? c - 'A' + 10 : -1; \ if (digit < 0 || digit >= radix) break; \ v = v || ckd_mul(&val, val, radix); \ v = v || ckd_add(&val, val, digit); \ } \ if (ebuf != NULL) *ebuf = buf; \ return v ? (type)(-1) : val; \ } \ type funcname(char *buf, char **ebuf, int radix) \ { \ constant char *cbuf = buf; \ type r = cfuncname(cbuf, &cbuf, radix); \ if (ebuf != NULL) *ebuf = (char *) cbuf; /*{{const-issue}}*/ \ return r; \ } STR_TO_TYPE_FUNC(lstrtopos, lstrtoposc, POSITION) STR_TO_TYPE_FUNC(lstrtoi, lstrtoic, int) STR_TO_TYPE_FUNC(lstrtoul, lstrtoulc, unsigned long) /* * Print an integral type. */ #define IPRINT_FUNC(funcname, type, typetoa) \ static int funcname(type num, int radix) \ { \ char buf[INT_STRLEN_BOUND(num)]; \ typetoa(num, buf, radix); \ putstr(buf); \ return (int) strlen(buf); \ } IPRINT_FUNC(iprint_int, int, inttoa) IPRINT_FUNC(iprint_linenum, LINENUM, linenumtoa) /* * This function implements printf-like functionality * using a more portable argument list mechanism than printf's. * * {{ This paranoia about the portability of printf dates from experiences * with systems in the 1980s and is of course no longer necessary. }} */ public int less_printf(constant char *fmt, PARG *parg) { constant char *s; constant char *es; int col; col = 0; while (*fmt != '\0') { if (*fmt != '%') { putchr(*fmt++); col++; } else { ++fmt; switch (*fmt++) { case 's': s = parg->p_string; es = s + strlen(s); parg++; while (*s != '\0') { LWCHAR ch = step_charc(&s, +1, es); constant char *ps = utf_mode ? prutfchar(ch) : prchar(ch); while (*ps != '\0') { putchr(*ps++); col++; } } break; case 'd': col += iprint_int(parg->p_int, 10); parg++; break; case 'x': col += iprint_int(parg->p_int, 16); parg++; break; case 'n': col += iprint_linenum(parg->p_linenum, 10); parg++; break; case 'c': s = prchar((LWCHAR) parg->p_char); parg++; while (*s != '\0') { putchr(*s++); col++; } break; case '%': putchr('%'); break; } } } return (col); } /* * Get a RETURN. * If some other non-trivial char is pressed, unget it, so it will * become the next command. */ public void get_return(void) { int c; #if ONLY_RETURN while ((c = getchr()) != '\n' && c != '\r') bell(); #else c = getchr(); if (c != '\n' && c != '\r' && c != ' ' && c != READ_INTR) ungetcc((char) c); #endif } /* * Output a message in the lower left corner of the screen * and wait for carriage return. */ public void error(constant char *fmt, PARG *parg) { int col = 0; static char return_to_continue[] = " (press RETURN)"; errmsgs++; if (!interactive()) { less_printf(fmt, parg); putchr('\n'); return; } if (!oldbot) squish_check(); at_exit(); clear_bot(); at_enter(AT_STANDOUT|AT_COLOR_ERROR); col += so_s_width; col += less_printf(fmt, parg); putstr(return_to_continue); at_exit(); col += (int) sizeof(return_to_continue) + so_e_width; get_return(); lower_left(); clear_eol(); if (col >= sc_width) /* * Printing the message has probably scrolled the screen. * {{ Unless the terminal doesn't have auto margins, * in which case we just hammered on the right margin. }} */ screen_trashed(); flush(); } /* * Output a message in the lower left corner of the screen * and don't wait for carriage return. * Usually used to warn that we are beginning a potentially * time-consuming operation. */ static void ierror_suffix(constant char *fmt, PARG *parg, constant char *suffix1, constant char *suffix2, constant char *suffix3) { at_exit(); clear_bot(); at_enter(AT_STANDOUT|AT_COLOR_ERROR); (void) less_printf(fmt, parg); putstr(suffix1); putstr(suffix2); putstr(suffix3); at_exit(); flush(); need_clr = 1; } public void ierror(constant char *fmt, PARG *parg) { ierror_suffix(fmt, parg, "... (interrupt to abort)", "", ""); } public void ixerror(constant char *fmt, PARG *parg) { if (!supports_ctrl_x()) ierror(fmt, parg); else { char ichar[MAX_PRCHAR_LEN+1]; strcpy(ichar, prchar((LWCHAR) intr_char)); ierror_suffix(fmt, parg, "... (", ichar, " or interrupt to abort)"); } } /* * Output a message in the lower left corner of the screen * and return a single-character response. */ public int query(constant char *fmt, PARG *parg) { int c; int col = 0; if (interactive()) clear_bot(); (void) less_printf(fmt, parg); c = getchr(); if (interactive()) { lower_left(); if (col >= sc_width) screen_trashed(); flush(); } else { putchr('\n'); } if (c == 'Q') quit(QUIT_OK); return (c); } less-668/pattern.c0000444060175306017530000002437314700607627013232 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Routines to do pattern matching. */ #include "less.h" extern int caseless; extern int is_caseless; extern int utf_mode; /* * Compile a search pattern, for future use by match_pattern. */ static int compile_pattern2(constant char *pattern, int search_type, PATTERN_TYPE *comp_pattern, int show_error) { if (search_type & SRCH_NO_REGEX) return (0); { #if HAVE_GNU_REGEX struct re_pattern_buffer *comp = (struct re_pattern_buffer *) ecalloc(1, sizeof(struct re_pattern_buffer)); re_set_syntax(RE_SYNTAX_POSIX_EXTENDED); if (re_compile_pattern(pattern, strlen(pattern), comp)) { free(comp); if (show_error) error("Invalid pattern", NULL_PARG); return (-1); } if (*comp_pattern != NULL) { regfree(*comp_pattern); free(*comp_pattern); } *comp_pattern = comp; #endif #if HAVE_POSIX_REGCOMP regex_t *comp = (regex_t *) ecalloc(1, sizeof(regex_t)); if (regcomp(comp, pattern, REGCOMP_FLAG | (is_caseless ? REG_ICASE : 0))) { free(comp); if (show_error) error("Invalid pattern", NULL_PARG); return (-1); } if (*comp_pattern != NULL) { regfree(*comp_pattern); free(*comp_pattern); } *comp_pattern = comp; #endif #if HAVE_PCRE constant char *errstring; int erroffset; PARG parg; pcre *comp = pcre_compile(pattern, ((utf_mode) ? PCRE_UTF8 | PCRE_NO_UTF8_CHECK : 0) | (is_caseless ? PCRE_CASELESS : 0), &errstring, &erroffset, NULL); if (comp == NULL) { parg.p_string = (char *) errstring; if (show_error) error("%s", &parg); return (-1); } *comp_pattern = comp; #endif #if HAVE_PCRE2 int errcode; PCRE2_SIZE erroffset; PARG parg; pcre2_code *comp = pcre2_compile((PCRE2_SPTR)pattern, strlen(pattern), (is_caseless ? PCRE2_CASELESS : 0), &errcode, &erroffset, NULL); if (comp == NULL) { if (show_error) { char msg[160]; pcre2_get_error_message(errcode, (PCRE2_UCHAR*)msg, sizeof(msg)); parg.p_string = msg; error("%s", &parg); } return (-1); } *comp_pattern = comp; #endif #if HAVE_RE_COMP PARG parg; if ((parg.p_string = re_comp(pattern)) != NULL) { if (show_error) error("%s", &parg); return (-1); } *comp_pattern = 1; #endif #if HAVE_REGCMP char *comp; if ((comp = regcmp(pattern, 0)) == NULL) { if (show_error) error("Invalid pattern", NULL_PARG); return (-1); } if (comp_pattern != NULL) free(*comp_pattern); *comp_pattern = comp; #endif #if HAVE_V8_REGCOMP struct regexp *comp; reg_show_error = show_error; comp = regcomp(pattern); reg_show_error = 1; if (comp == NULL) { /* * regcomp has already printed an error message * via regerror(). */ return (-1); } if (*comp_pattern != NULL) free(*comp_pattern); *comp_pattern = comp; #endif } return (0); } /* * Like compile_pattern2, but convert the pattern to lowercase if necessary. */ public int compile_pattern(constant char *pattern, int search_type, int show_error, PATTERN_TYPE *comp_pattern) { int result; if (caseless != OPT_ONPLUS || (re_handles_caseless && !(search_type & SRCH_NO_REGEX))) { result = compile_pattern2(pattern, search_type, comp_pattern, show_error); } else { char *cvt_pattern = (char*) ecalloc(1, cvt_length(strlen(pattern), CVT_TO_LC)); cvt_text(cvt_pattern, pattern, NULL, NULL, CVT_TO_LC); result = compile_pattern2(cvt_pattern, search_type, comp_pattern, show_error); free(cvt_pattern); } return (result); } /* * Forget that we have a compiled pattern. */ public void uncompile_pattern(PATTERN_TYPE *pattern) { #if HAVE_GNU_REGEX if (*pattern != NULL) { regfree(*pattern); free(*pattern); } *pattern = NULL; #endif #if HAVE_POSIX_REGCOMP if (*pattern != NULL) { regfree(*pattern); free(*pattern); } *pattern = NULL; #endif #if HAVE_PCRE if (*pattern != NULL) pcre_free(*pattern); *pattern = NULL; #endif #if HAVE_PCRE2 if (*pattern != NULL) pcre2_code_free(*pattern); *pattern = NULL; #endif #if HAVE_RE_COMP *pattern = 0; #endif #if HAVE_REGCMP if (*pattern != NULL) free(*pattern); *pattern = NULL; #endif #if HAVE_V8_REGCOMP if (*pattern != NULL) free(*pattern); *pattern = NULL; #endif } #if 0 /* * Can a pattern be successfully compiled? */ public int valid_pattern(char *pattern) { PATTERN_TYPE comp_pattern; int result; SET_NULL_PATTERN(comp_pattern); result = compile_pattern2(pattern, 0, &comp_pattern, 0); if (result != 0) return (0); uncompile_pattern(&comp_pattern); return (1); } #endif /* * Is a compiled pattern null? */ public lbool is_null_pattern(PATTERN_TYPE pattern) { #if HAVE_GNU_REGEX return (pattern == NULL); #endif #if HAVE_POSIX_REGCOMP return (pattern == NULL); #endif #if HAVE_PCRE return (pattern == NULL); #endif #if HAVE_PCRE2 return (pattern == NULL); #endif #if HAVE_RE_COMP return (pattern == 0); #endif #if HAVE_REGCMP return (pattern == NULL); #endif #if HAVE_V8_REGCOMP return (pattern == NULL); #endif #if NO_REGEX return (pattern == NULL); #endif } /* * Simple pattern matching function. * It supports no metacharacters like *, etc. */ static int match(constant char *pattern, size_t pattern_len, constant char *buf, int buf_len, constant char ***sp, constant char ***ep, int nsubs) { constant char *pp; constant char *lp; constant char *pattern_end = pattern + pattern_len; constant char *buf_end = buf + buf_len; (void) nsubs; for ( ; buf < buf_end; buf++) { for (pp = pattern, lp = buf; ; pp++, lp++) { char cp = *pp; char cl = *lp; if (caseless == OPT_ONPLUS && ASCII_IS_UPPER(cp)) cp = ASCII_TO_LOWER(cp); if (cp != cl) break; if (pp == pattern_end || lp == buf_end) break; } if (pp == pattern_end) { *(*sp)++ = buf; *(*ep)++ = lp; return (1); } } **sp = **ep = NULL; return (0); } /* * Perform a pattern match with the previously compiled pattern. * Set sp[0] and ep[0] to the start and end of the matched string. * Set sp[i] and ep[i] to the start and end of the i-th matched subpattern. * Subpatterns are defined by parentheses in the regex language. */ static int match_pattern1(PATTERN_TYPE pattern, constant char *tpattern, constant char *line, size_t aline_len, constant char **sp, constant char **ep, int nsp, int notbol, int search_type) { int matched; int line_len = (int) aline_len; /*{{type-issue}}*/ #if NO_REGEX search_type |= SRCH_NO_REGEX; #endif if (search_type & SRCH_NO_REGEX) matched = match(tpattern, strlen(tpattern), line, line_len, &sp, &ep, nsp); else { #if HAVE_GNU_REGEX { struct re_registers search_regs; pattern->not_bol = notbol; pattern->regs_allocated = REGS_UNALLOCATED; matched = re_search(pattern, line, line_len, 0, line_len, &search_regs) >= 0; if (matched) { *sp++ = line + search_regs.start[0]; *ep++ = line + search_regs.end[0]; } } #endif #if HAVE_POSIX_REGCOMP { #define RM_COUNT (NUM_SEARCH_COLORS+2) regmatch_t rm[RM_COUNT]; int flags = (notbol) ? REG_NOTBOL : 0; #ifdef REG_STARTEND flags |= REG_STARTEND; rm[0].rm_so = 0; rm[0].rm_eo = line_len; #endif matched = !regexec(pattern, line, RM_COUNT, rm, flags); if (matched) { int i; int ecount; for (ecount = RM_COUNT; ecount > 0; ecount--) if (rm[ecount-1].rm_so >= 0) break; if (ecount >= nsp) ecount = nsp-1; for (i = 0; i < ecount; i++) { if (rm[i].rm_so < 0) { *sp++ = *ep++ = line; } else { #ifndef __WATCOMC__ *sp++ = line + rm[i].rm_so; *ep++ = line + rm[i].rm_eo; #else *sp++ = rm[i].rm_sp; *ep++ = rm[i].rm_ep; #endif } } } } #endif #if HAVE_PCRE { #define OVECTOR_COUNT ((3*NUM_SEARCH_COLORS)+3) int ovector[OVECTOR_COUNT]; int flags = (notbol) ? PCRE_NOTBOL : 0; int i; int ecount; int mcount = pcre_exec(pattern, NULL, line, line_len, 0, flags, ovector, OVECTOR_COUNT); matched = (mcount > 0); ecount = nsp-1; if (ecount > mcount) ecount = mcount; for (i = 0; i < ecount*2; ) { if (ovector[i] < 0 || ovector[i+1] < 0) { *sp++ = *ep++ = line; i += 2; } else { *sp++ = line + ovector[i++]; *ep++ = line + ovector[i++]; } } } #endif #if HAVE_PCRE2 { int flags = (notbol) ? PCRE2_NOTBOL : 0; pcre2_match_data *md = pcre2_match_data_create(nsp-1, NULL); int mcount = pcre2_match(pattern, (PCRE2_SPTR)line, line_len, 0, flags, md, NULL); matched = (mcount > 0); if (matched) { PCRE2_SIZE *ovector = pcre2_get_ovector_pointer(md); int i; int ecount = nsp-1; if (ecount > mcount) ecount = mcount; for (i = 0; i < ecount*2; ) { if (ovector[i] < 0 || ovector[i+1] < 0) { *sp++ = *ep++ = line; i += 2; } else { *sp++ = line + ovector[i++]; *ep++ = line + ovector[i++]; } } } pcre2_match_data_free(md); } #endif #if HAVE_RE_COMP matched = (re_exec(line) == 1); /* * re_exec doesn't seem to provide a way to get the matched string. */ #endif #if HAVE_REGCMP matched = ((*ep++ = regex(pattern, line)) != NULL); if (matched) *sp++ = __loc1; #endif #if HAVE_V8_REGCOMP #if HAVE_REGEXEC2 matched = regexec2(pattern, line, notbol); #else matched = regexec(pattern, line); #endif if (matched) { *sp++ = pattern->startp[0]; *ep++ = pattern->endp[0]; } #endif } *sp = *ep = NULL; matched = (!(search_type & SRCH_NO_MATCH) && matched) || ((search_type & SRCH_NO_MATCH) && !matched); return (matched); } public int match_pattern(PATTERN_TYPE pattern, constant char *tpattern, constant char *line, size_t line_len, constant char **sp, constant char **ep, int nsp, int notbol, int search_type) { int matched = match_pattern1(pattern, tpattern, line, line_len, sp, ep, nsp, notbol, search_type); int i; for (i = 1; i <= NUM_SEARCH_COLORS; i++) { if ((search_type & SRCH_SUBSEARCH(i)) && ep[i] == sp[i]) matched = 0; } return matched; } /* * Return the name of the pattern matching library. */ public constant char * pattern_lib_name(void) { #if HAVE_GNU_REGEX return ("GNU"); #else #if HAVE_POSIX_REGCOMP return ("POSIX"); #else #if HAVE_PCRE2 return ("PCRE2"); #else #if HAVE_PCRE return ("PCRE"); #else #if HAVE_RE_COMP return ("BSD"); #else #if HAVE_REGCMP return ("V8"); #else #if HAVE_V8_REGCOMP return ("Spencer V8"); #else return ("no"); #endif #endif #endif #endif #endif #endif #endif } less-668/pattern.h0000444060175306017530000000357514700607653013237 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ #if HAVE_GNU_REGEX #define __USE_GNU 1 #include #define PATTERN_TYPE struct re_pattern_buffer * #define SET_NULL_PATTERN(name) name = NULL #endif /* ---- POSIX ---- */ #if HAVE_POSIX_REGCOMP #include #ifdef REG_EXTENDED #define REGCOMP_FLAG REG_EXTENDED #else #define REGCOMP_FLAG 0 #endif #define PATTERN_TYPE regex_t * #define SET_NULL_PATTERN(name) name = NULL #define re_handles_caseless TRUE #endif /* ---- PCRE ---- */ #if HAVE_PCRE #include #define PATTERN_TYPE pcre * #define SET_NULL_PATTERN(name) name = NULL #define re_handles_caseless TRUE #endif /* ---- PCRE2 ---- */ #if HAVE_PCRE2 #define PCRE2_CODE_UNIT_WIDTH 8 #include #define PATTERN_TYPE pcre2_code * #define SET_NULL_PATTERN(name) name = NULL #define re_handles_caseless TRUE #endif /* ---- RE_COMP ---- */ #if HAVE_RE_COMP constant char *re_comp(constant char*); int re_exec(constant char*); #define PATTERN_TYPE int #define SET_NULL_PATTERN(name) name = 0 #endif /* ---- REGCMP ---- */ #if HAVE_REGCMP char *regcmp(char*); char *regex(char**, char*); extern char *__loc1; #define PATTERN_TYPE char ** #define SET_NULL_PATTERN(name) name = NULL #endif /* ---- REGCOMP ---- */ #if HAVE_V8_REGCOMP #include "regexp.h" extern int reg_show_error; #define PATTERN_TYPE struct regexp * #define SET_NULL_PATTERN(name) name = NULL #endif /* ---- NONE ---- */ #if NO_REGEX #define PATTERN_TYPE void * #define SET_NULL_PATTERN(name) #endif #ifndef re_handles_caseless #define re_handles_caseless FALSE #endif less-668/pckeys.h0000444060175306017530000000212714700607652013047 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Definitions of keys on the PC. * Special (non-ASCII) keys on the PC send a two-byte sequence, * where the first byte is 0 and the second is as defined below. */ #define PCK_SHIFT_TAB '\017' #define PCK_ALT_E '\022' #define PCK_CAPS_LOCK '\072' #define PCK_F1 '\073' #define PCK_NUM_LOCK '\105' #define PCK_HOME '\107' #define PCK_UP '\110' #define PCK_PAGEUP '\111' #define PCK_LEFT '\113' #define PCK_RIGHT '\115' #define PCK_END '\117' #define PCK_DOWN '\120' #define PCK_PAGEDOWN '\121' #define PCK_INSERT '\122' #define PCK_DELETE '\123' #define PCK_CTL_LEFT '\163' #define PCK_CTL_RIGHT '\164' #define PCK_CTL_DELETE '\223' less-668/position.c0000444060175306017530000001561214700607627013415 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Routines dealing with the "position" table. * This is a table which tells the position (in the input file) of the * first char on each currently displayed line. * * {{ The position table is scrolled by moving all the entries. * Would be better to have a circular table * and just change a couple of pointers. }} */ #include "less.h" #include "position.h" static POSITION *table = NULL; /* The position table */ static int table_size = 0; extern int sc_width, sc_height; extern int hshift; /* * Return the starting file position of a line displayed on the screen. * The line may be specified as a line number relative to the top * of the screen, but is usually one of these special cases: * the top (first) line on the screen * the second line on the screen * the bottom line on the screen * the line after the bottom line on the screen */ public POSITION position(int sindex) { switch (sindex) { case BOTTOM: sindex = sc_height - 2; break; case BOTTOM_PLUS_ONE: sindex = sc_height - 1; break; case MIDDLE: sindex = (sc_height - 1) / 2; break; } return (table[sindex]); } /* * Add a new file position to the bottom of the position table. */ public void add_forw_pos(POSITION pos) { int i; /* * Scroll the position table up. */ for (i = 1; i < sc_height; i++) table[i-1] = table[i]; table[sc_height - 1] = pos; } /* * Add a new file position to the top of the position table. */ public void add_back_pos(POSITION pos) { int i; /* * Scroll the position table down. */ for (i = sc_height - 1; i > 0; i--) table[i] = table[i-1]; table[0] = pos; } /* * Initialize the position table, done whenever we clear the screen. */ public void pos_clear(void) { int i; for (i = 0; i < sc_height; i++) table[i] = NULL_POSITION; } /* * Allocate or reallocate the position table. */ public void pos_init(void) { struct scrpos scrpos; if (sc_height <= table_size) return; /* * If we already have a table, remember the first line in it * before we free it, so we can copy that line to the new table. */ if (table != NULL) { get_scrpos(&scrpos, TOP); free((char*)table); } else scrpos.pos = NULL_POSITION; table = (POSITION *) ecalloc((size_t) sc_height, sizeof(POSITION)); /*{{type-issue}}*/ table_size = sc_height; pos_clear(); if (scrpos.pos != NULL_POSITION) table[scrpos.ln-1] = scrpos.pos; } /* * See if the byte at a specified position is currently on the screen. * Check the position table to see if the position falls within its range. * Return the position table entry if found, -1 if not. */ public int onscreen(POSITION pos) { int i; if (pos < table[0]) return (-1); for (i = 1; i < sc_height; i++) if (pos < table[i]) return (i-1); return (-1); } /* * See if the entire screen is empty. */ public int empty_screen(void) { return (empty_lines(0, sc_height-1)); } public int empty_lines(int s, int e) { int i; for (i = s; i <= e; i++) if (table[i] != NULL_POSITION && table[i] != 0) return (0); return (1); } /* * Get the current screen position. * The screen position consists of both a file position and * a screen line number where the file position is placed on the screen. * Normally the screen line number is 0, but if we are positioned * such that the top few lines are empty, we may have to set * the screen line to a number > 0. */ public void get_scrpos(struct scrpos *scrpos, int where) { int i; int dir; int last; switch (where) { case TOP: i = 0; dir = +1; last = sc_height-2; break; case BOTTOM: case BOTTOM_PLUS_ONE: i = sc_height-2; dir = -1; last = 0; break; default: i = where; if (table[i] == NULL_POSITION) { scrpos->pos = NULL_POSITION; return; } /* Values of dir and last don't matter after this. */ break; } /* * Find the first line on the screen which has something on it, * and return the screen line number and the file position. */ for (;; i += dir) { if (table[i] != NULL_POSITION) { scrpos->ln = i+1; scrpos->pos = table[i]; return; } if (i == last) break; } /* * The screen is empty. */ scrpos->pos = NULL_POSITION; } /* * Adjust a screen line number to be a simple positive integer * in the range { 0 .. sc_height-2 }. * (The bottom line, sc_height-1, is reserved for prompts, etc.) * The given "sline" may be in the range { 1 .. sc_height-1 } * to refer to lines relative to the top of the screen (starting from 1), * or it may be in { -1 .. -(sc_height-1) } to refer to lines * relative to the bottom of the screen. */ public int sindex_from_sline(int sline) { /* * Negative screen line number means * relative to the bottom of the screen. */ if (sline < 0) sline += sc_height; /* * Can't be less than 1 or greater than sc_height. */ if (sline <= 0) sline = 1; if (sline > sc_height) sline = sc_height; /* * Return zero-based line number, not one-based. */ return (sline-1); } /* * Given a line that starts at linepos, * and the character at byte offset choff into that line, * return the number of characters (not bytes) between the * beginning of the line and the first byte of the choff character. */ static int pos_shift(POSITION linepos, size_t choff) { constant char *line; size_t line_len; POSITION pos; int cvt_ops; char *cline; pos = forw_raw_line_len(linepos, choff, &line, &line_len); if (pos == NULL_POSITION || line_len != choff) return -1; cvt_ops = get_cvt_ops(0); /* {{ Passing 0 ignores SRCH_NO_REGEX; does it matter? }} */ /* {{ It would be nice to be able to call cvt_text with dst=NULL, to avoid need to alloc a useless cline. }} */ cline = (char *) ecalloc(1, cvt_length(line_len, cvt_ops)); cvt_text(cline, line, NULL, &line_len, cvt_ops); free(cline); return (int) line_len; /*{{type-issue}}*/ } /* * Return the position of the first char of the line containing tpos. * Thus if tpos is the first char of its line, just return tpos. */ static POSITION beginning_of_line(POSITION tpos) { ch_seek(tpos); while (ch_tell() != ch_zero()) { int ch = ch_back_get(); if (ch == '\n') { (void) ch_forw_get(); break; } } return ch_tell(); } /* * When viewing long lines, it may be that the first char in the top screen * line is not the first char in its (file) line (the table is "beheaded"). * This function sets that entry to the position of the first char in the line, * and sets hshift so that the first char in the first line is unchanged. */ public void pos_rehead(void) { POSITION linepos; POSITION tpos = table[TOP]; if (tpos == NULL_POSITION) return; linepos = beginning_of_line(tpos); if (linepos == tpos) return; table[TOP] = linepos; hshift = pos_shift(linepos, (size_t) (tpos - linepos)); screen_trashed(); } less-668/position.h0000444060175306017530000000067414700607653013423 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Include file for interfacing to position.c modules. */ #define TOP (0) #define TOP_PLUS_ONE (1) #define BOTTOM (-1) #define BOTTOM_PLUS_ONE (-2) #define MIDDLE (-3) less-668/prompt.c0000444060175306017530000003070414700607630013063 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Prompting and other messages. * There are three flavors of prompts, SHORT, MEDIUM and LONG, * selected by the -m/-M options. * There is also the "equals message", printed by the = command. * A prompt is a message composed of various pieces, such as the * name of the file being viewed, the percentage into the file, etc. */ #include "less.h" #include "position.h" extern int pr_type; extern lbool new_file; extern int linenums; extern int hshift; extern int sc_height; extern int jump_sline; extern int less_is_more; extern int header_lines; extern int utf_mode; extern IFILE curr_ifile; #if OSC8_LINK extern char *osc8_path; #endif #if EDITOR extern constant char *editor; extern constant char *editproto; #endif /* * Prototypes for the three flavors of prompts. * These strings are expanded by pr_expand(). */ static constant char s_proto[] = "?n?f%f .?m(%T %i of %m) ..?e(END) ?x- Next\\: %x..%t"; static constant char m_proto[] = "?n?f%f .?m(%T %i of %m) ..?e(END) ?x- Next\\: %x.:?pB%pB\\%:byte %bB?s/%s...%t"; static constant char M_proto[] = "?f%f .?n?m(%T %i of %m) ..?ltlines %lt-%lb?L/%L. :byte %bB?s/%s. .?e(END) ?x- Next\\: %x.:?pB%pB\\%..%t"; static constant char e_proto[] = "?f%f .?m(%T %i of %m) .?ltlines %lt-%lb?L/%L. .byte %bB?s/%s. ?e(END) :?pB%pB\\%..%t"; static constant char h_proto[] = "HELP -- ?eEND -- Press g to see it again:Press RETURN for more., or q when done"; static constant char w_proto[] = "Waiting for data"; static constant char more_proto[] = "--More--(?eEND ?x- Next\\: %x.:?pB%pB\\%:byte %bB?s/%s...%t)"; public char *prproto[3]; public char constant *eqproto = e_proto; public char constant *hproto = h_proto; public char constant *wproto = w_proto; static char message[PROMPT_SIZE]; static char *mp; /* * Initialize the prompt prototype strings. */ public void init_prompt(void) { prproto[0] = save(s_proto); prproto[1] = save(less_is_more ? more_proto : m_proto); prproto[2] = save(M_proto); eqproto = save(e_proto); hproto = save(h_proto); wproto = save(w_proto); } /* * Append a string to the end of the message. * nprt means the character *may* be nonprintable * and should be converted to printable form. */ static void ap_estr(constant char *s, lbool nprt) { constant char *es = s + strlen(s); while (*s != '\0') { LWCHAR ch = step_charc(&s, +1, es); constant char *ps; char ubuf[MAX_UTF_CHAR_LEN+1]; size_t plen; if (nprt) { ps = utf_mode ? prutfchar(ch) : prchar(ch); } else { char *up = ubuf; put_wchar(&up, ch); *up = '\0'; ps = ubuf; } plen = strlen(ps); if (mp + plen >= message + PROMPT_SIZE) break; strcpy(mp, ps); mp += plen; } *mp = '\0'; } static void ap_str(constant char *s) { ap_estr(s, FALSE); } /* * Append a character to the end of the message. */ static void ap_char(char c) { if (mp + 1 >= message + PROMPT_SIZE) return; *mp++ = c; *mp = '\0'; } /* * Append a POSITION (as a decimal integer) to the end of the message. */ static void ap_pos(POSITION pos) { char buf[INT_STRLEN_BOUND(pos) + 2]; postoa(pos, buf, 10); ap_str(buf); } /* * Append a line number to the end of the message. */ static void ap_linenum(LINENUM linenum) { char buf[INT_STRLEN_BOUND(linenum) + 2]; linenumtoa(linenum, buf, 10); ap_str(buf); } /* * Append an integer to the end of the message. */ static void ap_int(int num) { char buf[INT_STRLEN_BOUND(num) + 2]; inttoa(num, buf, 10); ap_str(buf); } /* * Append a question mark to the end of the message. */ static void ap_quest(void) { ap_str("?"); } /* * Return the "current" byte offset in the file. */ static POSITION curr_byte(int where) { POSITION pos; pos = position(where); while (pos == NULL_POSITION && where >= 0 && where < sc_height-1) pos = position(++where); if (pos == NULL_POSITION) pos = ch_length(); return (pos); } /* * Return the value of a prototype conditional. * A prototype string may include conditionals which consist of a * question mark followed by a single letter. * Here we decode that letter and return the appropriate boolean value. */ static lbool cond(char c, int where) { POSITION len; switch (c) { case 'a': /* Anything in the message yet? */ return (mp > message); case 'b': /* Current byte offset known? */ return (curr_byte(where) != NULL_POSITION); case 'c': return (hshift != 0); case 'e': /* At end of file? */ return (eof_displayed()); case 'f': /* Filename known? */ case 'g': return (strcmp(get_filename(curr_ifile), "-") != 0); case 'l': /* Line number known? */ case 'd': /* Same as l */ if (!linenums) return FALSE; return (currline(where) != 0); case 'L': /* Final line number known? */ case 'D': /* Final page number known? */ return (linenums && ch_length() != NULL_POSITION); case 'm': /* More than one file? */ #if TAGS return (ntags() ? (ntags() > 1) : (nifile() > 1)); #else return (nifile() > 1); #endif case 'n': /* First prompt in a new file? */ #if TAGS return (ntags() ? TRUE : new_file ? TRUE : FALSE); #else return (new_file ? TRUE : FALSE); #endif case 'p': /* Percent into file (bytes) known? */ return (curr_byte(where) != NULL_POSITION && ch_length() > 0); case 'P': /* Percent into file (lines) known? */ return (currline(where) != 0 && (len = ch_length()) > 0 && find_linenum(len) != 0); case 's': /* Size of file known? */ case 'B': return (ch_length() != NULL_POSITION); case 'x': /* Is there a "next" file? */ #if TAGS if (ntags()) return (FALSE); #endif return (next_ifile(curr_ifile) != NULL_IFILE); } return (FALSE); } /* * Decode a "percent" prototype character. * A prototype string may include various "percent" escapes; * that is, a percent sign followed by a single letter. * Here we decode that letter and take the appropriate action, * usually by appending something to the message being built. */ static void protochar(char c, int where) { POSITION pos; POSITION len; int n; LINENUM linenum; LINENUM last_linenum; IFILE h; char *s; #undef PAGE_NUM #define PAGE_NUM(linenum) ((((linenum) - 1) / (sc_height - header_lines - 1)) + 1) switch (c) { case 'b': /* Current byte offset */ pos = curr_byte(where); if (pos != NULL_POSITION) ap_pos(pos); else ap_quest(); break; case 'c': ap_int(hshift); break; case 'd': /* Current page number */ linenum = currline(where); if (linenum > 0 && sc_height > header_lines + 1) ap_linenum(PAGE_NUM(linenum)); else ap_quest(); break; case 'D': /* Final page number */ /* Find the page number of the last byte in the file (len-1). */ len = ch_length(); if (len == NULL_POSITION) ap_quest(); else if (len == 0) /* An empty file has no pages. */ ap_linenum(0); else { linenum = find_linenum(len - 1); if (linenum <= 0) ap_quest(); else ap_linenum(PAGE_NUM(linenum)); } break; #if EDITOR case 'E': /* Editor name */ ap_str(editor); break; #endif case 'f': /* File name */ ap_estr(get_filename(curr_ifile), TRUE); break; case 'F': /* Last component of file name */ ap_estr(last_component(get_filename(curr_ifile)), TRUE); break; case 'g': /* Shell-escaped file name */ s = shell_quote(get_filename(curr_ifile)); ap_str(s); free(s); break; case 'i': /* Index into list of files */ #if TAGS if (ntags()) ap_int(curr_tag()); else #endif ap_int(get_index(curr_ifile)); break; case 'l': /* Current line number */ linenum = currline(where); if (linenum != 0) ap_linenum(vlinenum(linenum)); else ap_quest(); break; case 'L': /* Final line number */ len = ch_length(); if (len == NULL_POSITION || len == ch_zero() || (linenum = find_linenum(len)) <= 0) ap_quest(); else ap_linenum(vlinenum(linenum-1)); break; case 'm': /* Number of files */ #if TAGS n = ntags(); if (n) ap_int(n); else #endif ap_int(nifile()); break; case 'o': /* path (URI without protocol) of selected OSC8 link */ #if OSC8_LINK if (osc8_path != NULL) ap_str(osc8_path); else #endif ap_quest(); break; case 'p': /* Percent into file (bytes) */ pos = curr_byte(where); len = ch_length(); if (pos != NULL_POSITION && len > 0) ap_int(percentage(pos,len)); else ap_quest(); break; case 'P': /* Percent into file (lines) */ linenum = currline(where); if (linenum == 0 || (len = ch_length()) == NULL_POSITION || len == ch_zero() || (last_linenum = find_linenum(len)) <= 0) ap_quest(); else ap_int(percentage(linenum, last_linenum)); break; case 's': /* Size of file */ case 'B': len = ch_length(); if (len != NULL_POSITION) ap_pos(len); else ap_quest(); break; case 't': /* Truncate trailing spaces in the message */ while (mp > message && mp[-1] == ' ') mp--; *mp = '\0'; break; case 'T': /* Type of list */ #if TAGS if (ntags()) ap_str("tag"); else #endif ap_str("file"); break; case 'x': /* Name of next file */ h = next_ifile(curr_ifile); if (h != NULL_IFILE) ap_str(get_filename(h)); else ap_quest(); break; } } /* * Skip a false conditional. * When a false condition is found (either a false IF or the ELSE part * of a true IF), this routine scans the prototype string to decide * where to resume parsing the string. * We must keep track of nested IFs and skip them properly. */ static constant char * skipcond(constant char *p) { int iflevel; /* * We came in here after processing a ? or :, * so we start nested one level deep. */ iflevel = 1; for (;;) switch (*++p) { case '?': /* * Start of a nested IF. */ iflevel++; break; case ':': /* * Else. * If this matches the IF we came in here with, * then we're done. */ if (iflevel == 1) return (p); break; case '.': /* * Endif. * If this matches the IF we came in here with, * then we're done. */ if (--iflevel == 0) return (p); break; case '\\': /* * Backslash escapes the next character. */ if (p[1] != '\0') ++p; break; case '\0': /* * Whoops. Hit end of string. * This is a malformed conditional, but just treat it * as if all active conditionals ends here. */ return (p-1); } /*NOTREACHED*/ } /* * Decode a char that represents a position on the screen. */ static constant char * wherechar(char constant *p, int *wp) { switch (*p) { case 'b': case 'd': case 'l': case 'p': case 'P': switch (*++p) { case 't': *wp = TOP; break; case 'm': *wp = MIDDLE; break; case 'b': *wp = BOTTOM; break; case 'B': *wp = BOTTOM_PLUS_ONE; break; case 'j': *wp = sindex_from_sline(jump_sline); break; default: *wp = TOP; p--; break; } } return (p); } /* * Construct a message based on a prototype string. */ public constant char * pr_expand(constant char *proto) { constant char *p; char c; int where; mp = message; if (*proto == '\0') return (""); for (p = proto; *p != '\0'; p++) { switch (*p) { default: /* Just put the character in the message */ ap_char(*p); break; case '\\': /* Backslash escapes the next character */ if (p[1] != '\0') ap_char(*++p); break; case '?': /* Conditional (IF) */ if ((c = *++p) == '\0') --p; else { where = 0; p = wherechar(p, &where); if (!cond(c, where)) p = skipcond(p); } break; case ':': /* ELSE */ p = skipcond(p); break; case '.': /* ENDIF */ break; case '%': /* Percent escape */ if ((c = *++p) == '\0') --p; else { where = 0; p = wherechar(p, &where); protochar(c, where); } break; } } if (mp == message) return (""); return (message); } /* * Return a message suitable for printing by the "=" command. */ public constant char * eq_message(void) { return (pr_expand(eqproto)); } /* * Return a prompt. * This depends on the prompt type (SHORT, MEDIUM, LONG), etc. * If we can't come up with an appropriate prompt, return NULL * and the caller will prompt with a colon. */ public constant char * pr_string(void) { constant char *prompt; int type; type = (!less_is_more) ? pr_type : pr_type ? 0 : 1; prompt = pr_expand((ch_getflags() & CH_HELPFILE) ? hproto : prproto[type]); new_file = FALSE; return (prompt); } /* * Return a message suitable for printing while waiting in the F command. */ public constant char * wait_message(void) { return (pr_expand(wproto)); } less-668/README0000444060175306017530000002437314700607641012265 0ustar marknmarkn This is the source code distribution of "less". This program is part of the GNU project (https://www.gnu.org). This program is free software. You may redistribute it and/or modify it under the terms of either: 1. The GNU General Public License, as published by the Free Software Foundation; either version 3, or (at your option) any later version. A copy of this license is in the file COPYING. or 2. The Less License, in the file LICENSE. Please report any problems at https://github.com/gwsw/less/issues. See https://greenwoodsoftware.com/less for the latest info. Source repository is at https://github.com/gwsw/less.git. ========================================================================= You should build from a clone of a git repository ONLY IF you are doing development on the less source itself. If you are merely using less as a tool, you should download a release from https://greenwoodsoftware.com and NOT from github. The formatted manual page is in less.man. The manual page nroff source is in less.nro. Major changes made since the last posted version are in NEWS. ======================================================================= INSTALLATION (Unix & Linux systems only): 1. Move the distributed source to its own directory and unpack it, if you have not already done so. 2. If you are building from a clone of a git repository, type "make -f Makefile.aut distfiles". If you are building from a numbered release package (a tar or zip file with a name like less-999.tar.gz or less-999.zip downloaded from greenwoodsoftware.com, not from github), you should skip this step. 3. Type "sh configure". This will generate a Makefile and a defines.h. Warning: if you have a GNU sed, make sure it is version 2.05 or later. The file INSTALL describes the usage of the configure program in general. In addition, these options to configure are supported: --with-editor=program Specifies the default editor program used by the "v" command. The default is "vi". --with-regex=lib Specifies the regular expression library used by less for pattern matching. The default is "auto", which means the configure program finds a regular expression library automatically. Other values are: gnu Use the GNU regex library. pcre Use the PCRE library. pcre2 Use the PCRE2 library. posix Use the POSIX-compatible regcomp. regcmp Use the regcmp library. re_comp Use the re_comp library. regcomp Use the V8-compatible regcomp. regcomp-local Use Henry Spencer's V8-compatible regcomp (source is supplied with less). none No regular expressions, only simple string matching. --with-secure Builds a "secure" version of less, with some features disabled to prevent users from viewing other files, accessing shell commands, etc. 4. It is a good idea to look over the generated Makefile and defines.h and make sure they look ok. If you know of any peculiarities of your system that configure might not have detected, you may fix the Makefile now. Take particular notice of the list of "terminal" libraries in the LIBS definition in the Makefile; these may need to be edited. The terminal libraries will be some subset of -lncurses -lcurses -ltermcap -ltermlib If you wish, you may edit defines.h to remove some optional features. If you choose not to include some features in your version, you may wish to edit the manual page "less.nro" and the help page "less.hlp" to remove the descriptions of the features which you are removing. If you edit less.hlp, you should run "make -f Makefile.aut help.c". 5. Type "make" and watch the fun. 6. If the make succeeds, it will generate the programs "less", "lesskey" and "lessecho" in your current directory. Test the generated programs. 7. When satisfied that it works, if you wish to install it in a public place, type "make install". The default install destinations are: Executables (less, lesskey, lessecho) in /usr/local/bin Documentation (less.nro, lesskey.nro) in /usr/local/man/man1 If you want to install any of these files elsewhere, define bindir and/or mandir to the appropriate directories. Note to hackers: comments noting possible improvements are enclosed in double curly brackets {{ like this }}. (Note that the above note was originally written at a time when "hackers" most commonly meant "enthusiastic and dedicated computer programmers", not "persons who attempt to circumvent computer security".) ======================================================================= INSTALLATION (MS-DOS systems only, with Microsoft C, Borland C, or DJGPP) 1. Move the distributed source to its own directory. Depending on your compiler, you may need to convert the source to have CR-LF rather than LF as line terminators. 2. If you are using Microsoft C, rename MAKEFILE.DSU to MAKEFILE. If you are using Borland C, rename MAKEFILE.DSB to MAKEFILE. If you are using DJGPP, rename MAKEFILE.DSG to MAKEFILE. 3. Look at MAKEFILE to make sure that the definitions for CC and LIBDIR are correct. CC should be the name of your C compiler and LIBDIR should be the directory where the C libraries reside (for Microsoft C only). If these definitions need to be changed, you can either modify the definitions directly in MAKEFILE, or set your environment variables CC and/or LIBDIR to override the definitions in MAKEFILE. 4. If you wish, you may edit DEFINES.DS to remove some optional features. If you choose not to include some features in your version, you may wish to edit the manual page LESS.MAN and the help page HELP.C to remove the descriptions of the features which you are removing. 5. Run your "make" program and watch the fun. If your "make" requires a flag to import environment variables, you should use that flag. If your compiler runs out of memory, try running "make -n >cmds.bat" and then run cmds.bat. 6. If the make succeeds, it will generate the programs "LESS.EXE" and "LESSKEY.EXE" in your current directory. Test the generated programs. 7. When satisfied that it works, you may wish to install LESS.EXE and LESSKEY.EXE in a directory which is included in your PATH. ======================================================================= INSTALLATION (Windows-95, Windows-98 and Windows-NT systems only, with Borland C or Microsoft Visual C++) 1. Move the distributed source to its own directory. 2. If you are using Borland C, rename Makefile.wnb to Makefile. If you are using Microsoft Visual C++, rename Makefile.wnm to Makefile. 3. Check the Makefile to make sure the definitions look ok. 4. If you wish, you may edit defines.wn to remove some optional features. If you choose not to include some features in your version, you may wish to edit the manual page less.man and the help page help.c to remove the descriptions of the features which you are removing. 5. Type "make" and watch the fun. 6. If the make succeeds, it will generate the programs "less.exe" and "lesskey.exe" in your current directory. Test the generated programs. 7. When satisfied that it works, if you wish to install it in a public place, type "make install". See step 6 of the Unix installation instructions for details on how to change the default installation directories. ======================================================================= INSTALLATION (OS/2 systems only, with EMX C) 1. Move the distributed source to its own directory. 2. Rename Makefile.o2e to Makefile. 3. Check the Makefile to make sure the definitions look ok. 4. If you wish, you may edit defines.o2 to remove some optional features. If you choose not to include some features in your version, you may wish to edit the manual page less.man and the help page help.c to remove the descriptions of the features which you are removing. 5. Type "make" and watch the fun. 6. If the make succeeds, it will generate the programs "less.exe" and "lesskey.exe" in your current directory. Test the generated programs. 7. Make sure you have the emx runtime installed. You need the emx DLLs emx.dll and emxlibcs.dll and also the termcap database, termcap.dat. Make sure you have termcap.dat either in the default location or somewhere in a directory listed in the PATH or INIT environment variables. 8. When satisfied that it works, you may wish to install less.exe, lesskey.exe and scrsize.exe in a directory which is included in your PATH. scrsize.exe is required only if you use a terminal emulator such as xterm or rxvt. ======================================================================= INSTALLATION (OS-9 systems only, with Microware C or Ultra C) 1. Move the distributed source to its own directory. 2. If you are using Microware C, rename Makefile.o9c to Makefile. If you are using Ultra C, rename Makefile.o9u to Makefile. 3. Check the Makefile to make sure the definitions look ok. 4. If you wish, you may edit defines.o9 to remove some optional features. If you choose not to include some features in your version, you may wish to edit the manual page less.man and the help page help.c to remove the descriptions of the features which you are removing. 5. Type "dmake" and watch the fun. The standard OS-9 "make" will probably not work. If you don't have dmake, you can get a copy from os9archive.rtsi.com. 6. If the make succeeds, it will generate the programs "less" and "lesskey" in your current directory. Test the generated programs. 7. When satisfied that it works, if you wish to install it in a public place, type "dmake install". See step 6 of the Unix installation instructions for details on how to change the default installation directories. ======================================================================= ACKNOWLEDGMENTS: Some versions of the less distribution are packaged using Info-ZIP's compression utility. Info-ZIP's software is free and can be obtained as source code or executables from various anonymous-ftp sites, including ftp.uu.net:/pub/archiving/zip. less-668/regexp.c0000444060175306017530000006766214700607634013055 0ustar marknmarkn/* * regcomp and regexec -- regsub and regerror are elsewhere * * Copyright (c) 1986 by University of Toronto. * Written by Henry Spencer. Not derived from licensed software. * * Permission is granted to anyone to use this software for any * purpose on any computer system, and to redistribute it freely, * subject to the following restrictions: * * 1. The author is not responsible for the consequences of use of * this software, no matter how awful, even if they arise * from defects in it. * * 2. The origin of this software must not be misrepresented, either * by explicit claim or by omission. * * 3. Altered versions must be plainly marked as such, and must not * be misrepresented as being the original software. * * Beware that some of this code is subtly aware of the way operator * precedence is structured in regular expressions. Serious changes in * regular-expression syntax might require a total rethink. * * *** NOTE: this code has been altered slightly for use in Tcl. *** * Slightly modified by David MacKenzie to undo most of the changes for TCL. * Added regexec2 with notbol parameter. -- 4/19/99 Mark Nudelman */ #include "less.h" #if HAVE_STDIO_H #include #endif #if HAVE_STDLIB_H #include #endif #if HAVE_STRING_H #include #endif #include "regexp.h" /* * The "internal use only" fields in regexp.h are present to pass info from * compile to execute that permits the execute phase to run lots faster on * simple cases. They are: * * regstart char that must begin a match; '\0' if none obvious * reganch is the match anchored (at beginning-of-line only)? * regmust string (pointer into program) that match must include, or NULL * regmlen length of regmust string * * Regstart and reganch permit very fast decisions on suitable starting points * for a match, cutting down the work a lot. Regmust permits fast rejection * of lines that cannot possibly match. The regmust tests are costly enough * that regcomp() supplies a regmust only if the r.e. contains something * potentially expensive (at present, the only such thing detected is * or + * at the start of the r.e., which can involve a lot of backup). Regmlen is * supplied because the test in regexec() needs it and regcomp() is * computing it anyway. */ /* * Structure for regexp "program". This is essentially a linear encoding * of a nondeterministic finite-state machine (aka syntax charts or * "railroad normal form" in parsing technology). Each node is an opcode * plus a "next" pointer, possibly plus an operand. "Next" pointers of * all nodes except BRANCH implement concatenation; a "next" pointer with * a BRANCH on both ends of it is connecting two alternatives. (Here we * have one of the subtle syntax dependencies: an individual BRANCH (as * opposed to a collection of them) is never concatenated with anything * because of operator precedence.) The operand of some types of node is * a literal string; for others, it is a node leading into a sub-FSM. In * particular, the operand of a BRANCH node is the first node of the branch. * (NB this is *not* a tree structure: the tail of the branch connects * to the thing following the set of BRANCHes.) The opcodes are: */ /* definition number opnd? meaning */ #undef EOL #define END 0 /* no End of program. */ #define BOL 1 /* no Match "" at beginning of line. */ #define EOL 2 /* no Match "" at end of line. */ #define ANY 3 /* no Match any one character. */ #define ANYOF 4 /* str Match any character in this string. */ #define ANYBUT 5 /* str Match any character not in this string. */ #define BRANCH 6 /* node Match this alternative, or the next... */ #define BACK 7 /* no Match "", "next" ptr points backward. */ #define EXACTLY 8 /* str Match this string. */ #define NOTHING 9 /* no Match empty string. */ #define STAR 10 /* node Match this (simple) thing 0 or more times. */ #define PLUS 11 /* node Match this (simple) thing 1 or more times. */ #define OPEN 20 /* no Mark this point in input as start of #n. */ /* OPEN+1 is number 1, etc. */ #define CLOSE 30 /* no Analogous to OPEN. */ /* * Opcode notes: * * BRANCH The set of branches constituting a single choice are hooked * together with their "next" pointers, since precedence prevents * anything being concatenated to any individual branch. The * "next" pointer of the last BRANCH in a choice points to the * thing following the whole choice. This is also where the * final "next" pointer of each individual branch points; each * branch starts with the operand node of a BRANCH node. * * BACK Normal "next" pointers all implicitly point forward; BACK * exists to make loop structures possible. * * STAR,PLUS '?', and complex '*' and '+', are implemented as circular * BRANCH structures using BACK. Simple cases (one character * per match) are implemented with STAR and PLUS for speed * and to minimize recursive plunges. * * OPEN,CLOSE ...are numbered at compile time. */ /* * A node is one char of opcode followed by two chars of "next" pointer. * "Next" pointers are stored as two 8-bit pieces, high order first. The * value is a positive offset from the opcode of the node containing it. * An operand, if any, simply follows the node. (Note that much of the * code generation knows about this implicit relationship.) * * Using two bytes for the "next" pointer is vast overkill for most things, * but allows patterns to get big without disasters. */ #define OP(p) (*(p)) #define NEXT(p) (((*((p)+1)&0377)<<8) + (*((p)+2)&0377)) #define OPERAND(p) ((p) + 3) /* * See regmagic.h for one further detail of program structure. */ /* * Utility definitions. */ #ifndef CHARBITS #define UCHARAT(p) ((int)*(unsigned char *)(p)) #else #define UCHARAT(p) ((int)*(p)&CHARBITS) #endif #define FAIL(m) { regerror(m); return(NULL); } #define ISMULT(c) ((c) == '*' || (c) == '+' || (c) == '?') #define META "^$.[()|?+*\\" /* * Flags to be passed up and down. */ #define HASWIDTH 01 /* Known never to match null string. */ #define SIMPLE 02 /* Simple enough to be STAR/PLUS operand. */ #define SPSTART 04 /* Starts with * or +. */ #define WORST 0 /* Worst case. */ /* * Global work variables for regcomp(). */ static constant char *regparse; /* Input-scan pointer. */ static int regnpar; /* () count. */ static char regdummy; static char *regcode; /* Code-emit pointer; ®dummy = don't. */ static long regsize; /* Code size. */ /* * The first byte of the regexp internal "program" is actually this magic * number; the start node begins in the second byte. */ #define MAGIC 0234 /* * Forward declarations for regcomp()'s friends. */ #ifndef STATIC #define STATIC static #endif STATIC char *reg(int, int *); STATIC char *regbranch(int *); STATIC char *regpiece(int *); STATIC char *regatom(int *); STATIC char *regnode(char); STATIC char *regnext(register char *); STATIC void regc(char); STATIC void reginsert(char, char *); STATIC void regtail(char *, char *); STATIC void regoptail(char *, char *); #ifdef STRCSPN STATIC int strcspn(constant char *, constant char *); #endif /* - regcomp - compile a regular expression into internal code * * We can't allocate space until we know how big the compiled form will be, * but we can't compile it (and thus know how big it is) until we've got a * place to put the code. So we cheat: we compile it twice, once with code * generation turned off and size counting turned on, and once "for real". * This also means that we don't allocate space until we are sure that the * thing really will compile successfully, and we never have to move the * code and thus invalidate pointers into it. (Note that it has to be in * one piece because free() must be able to free it all.) * * Beware that the optimization-preparation code in here knows about some * of the structure of the compiled regexp. */ regexp * regcomp(constant char *exp) { register regexp *r; register char *scan; register char *longest; register int len; int flags; if (exp == NULL) FAIL("NULL argument"); /* First pass: determine size, legality. */ regparse = exp; regnpar = 1; regsize = 0L; regcode = ®dummy; regc(MAGIC); if (reg(0, &flags) == NULL) return(NULL); /* Small enough for pointer-storage convention? */ if (regsize >= 32767L) /* Probably could be 65535L. */ FAIL("regexp too big"); /* Allocate space. */ r = (regexp *)malloc(sizeof(regexp) + (unsigned)regsize); if (r == NULL) FAIL("out of space"); /* Second pass: emit code. */ regparse = exp; regnpar = 1; regcode = r->program; regc(MAGIC); if (reg(0, &flags) == NULL) { free(r); return(NULL); } /* Dig out information for optimizations. */ r->regstart = '\0'; /* Worst-case defaults. */ r->reganch = 0; r->regmust = NULL; r->regmlen = 0; scan = r->program+1; /* First BRANCH. */ if (OP(regnext(scan)) == END) { /* Only one top-level choice. */ scan = OPERAND(scan); /* Starting-point info. */ if (OP(scan) == EXACTLY) r->regstart = *OPERAND(scan); else if (OP(scan) == BOL) r->reganch++; /* * If there's something expensive in the r.e., find the * longest literal string that must appear and make it the * regmust. Resolve ties in favor of later strings, since * the regstart check works with the beginning of the r.e. * and avoiding duplication strengthens checking. Not a * strong reason, but sufficient in the absence of others. */ if (flags&SPSTART) { longest = NULL; len = 0; for (; scan != NULL; scan = regnext(scan)) if (OP(scan) == EXACTLY && ((int) strlen(OPERAND(scan))) >= len) { longest = OPERAND(scan); len = (int) strlen(OPERAND(scan)); } r->regmust = longest; r->regmlen = len; } } return(r); } /* - reg - regular expression, i.e. main body or parenthesized thing * * Caller must absorb opening parenthesis. * * Combining parenthesis handling with the base level of regular expression * is a trifle forced, but the need to tie the tails of the branches to what * follows makes it hard to avoid. */ static char * reg(int paren, int *flagp) { register char *ret; register char *br; register char *ender; register int parno = 0; int flags; *flagp = HASWIDTH; /* Tentatively. */ /* Make an OPEN node, if parenthesized. */ if (paren) { if (regnpar >= NSUBEXP) FAIL("too many ()"); parno = regnpar; regnpar++; ret = regnode(OPEN+parno); } else ret = NULL; /* Pick up the branches, linking them together. */ br = regbranch(&flags); if (br == NULL) return(NULL); if (ret != NULL) regtail(ret, br); /* OPEN -> first. */ else ret = br; if (!(flags&HASWIDTH)) *flagp &= ~HASWIDTH; *flagp |= flags&SPSTART; while (*regparse == '|') { regparse++; br = regbranch(&flags); if (br == NULL) return(NULL); regtail(ret, br); /* BRANCH -> BRANCH. */ if (!(flags&HASWIDTH)) *flagp &= ~HASWIDTH; *flagp |= flags&SPSTART; } /* Make a closing node, and hook it on the end. */ ender = regnode((paren) ? CLOSE+parno : END); regtail(ret, ender); /* Hook the tails of the branches to the closing node. */ for (br = ret; br != NULL; br = regnext(br)) regoptail(br, ender); /* Check for proper termination. */ if (paren && *regparse++ != ')') { FAIL("unmatched ()"); } else if (!paren && *regparse != '\0') { if (*regparse == ')') { FAIL("unmatched ()"); } else FAIL("junk on end"); /* "Can't happen". */ /* NOTREACHED */ } return(ret); } /* - regbranch - one alternative of an | operator * * Implements the concatenation operator. */ static char * regbranch(int *flagp) { register char *ret; register char *chain; register char *latest; int flags; *flagp = WORST; /* Tentatively. */ ret = regnode(BRANCH); chain = NULL; while (*regparse != '\0' && *regparse != '|' && *regparse != ')') { latest = regpiece(&flags); if (latest == NULL) return(NULL); *flagp |= flags&HASWIDTH; if (chain == NULL) /* First piece. */ *flagp |= flags&SPSTART; else regtail(chain, latest); chain = latest; } if (chain == NULL) /* Loop ran zero times. */ (void) regnode(NOTHING); return(ret); } /* - regpiece - something followed by possible [*+?] * * Note that the branching code sequences used for ? and the general cases * of * and + are somewhat optimized: they use the same NOTHING node as * both the endmarker for their branch list and the body of the last branch. * It might seem that this node could be dispensed with entirely, but the * endmarker role is not redundant. */ static char * regpiece(int *flagp) { register char *ret; register char op; register char *next; int flags; ret = regatom(&flags); if (ret == NULL) return(NULL); op = *regparse; if (!ISMULT(op)) { *flagp = flags; return(ret); } if (!(flags&HASWIDTH) && op != '?') FAIL("*+ operand could be empty"); *flagp = (op != '+') ? (WORST|SPSTART) : (WORST|HASWIDTH); if (op == '*' && (flags&SIMPLE)) reginsert(STAR, ret); else if (op == '*') { /* Emit x* as (x&|), where & means "self". */ reginsert(BRANCH, ret); /* Either x */ regoptail(ret, regnode(BACK)); /* and loop */ regoptail(ret, ret); /* back */ regtail(ret, regnode(BRANCH)); /* or */ regtail(ret, regnode(NOTHING)); /* null. */ } else if (op == '+' && (flags&SIMPLE)) reginsert(PLUS, ret); else if (op == '+') { /* Emit x+ as x(&|), where & means "self". */ next = regnode(BRANCH); /* Either */ regtail(ret, next); regtail(regnode(BACK), ret); /* loop back */ regtail(next, regnode(BRANCH)); /* or */ regtail(ret, regnode(NOTHING)); /* null. */ } else if (op == '?') { /* Emit x? as (x|) */ reginsert(BRANCH, ret); /* Either x */ regtail(ret, regnode(BRANCH)); /* or */ next = regnode(NOTHING); /* null. */ regtail(ret, next); regoptail(ret, next); } regparse++; if (ISMULT(*regparse)) FAIL("nested *?+"); return(ret); } /* - regatom - the lowest level * * Optimization: gobbles an entire sequence of ordinary characters so that * it can turn them into a single node, which is smaller to store and * faster to run. Backslashed characters are exceptions, each becoming a * separate node; the code is simpler that way and it's not worth fixing. */ static char * regatom(int *flagp) { register char *ret; int flags; *flagp = WORST; /* Tentatively. */ switch (*regparse++) { case '^': ret = regnode(BOL); break; case '$': ret = regnode(EOL); break; case '.': ret = regnode(ANY); *flagp |= HASWIDTH|SIMPLE; break; case '[': { register int clss; register int classend; if (*regparse == '^') { /* Complement of range. */ ret = regnode(ANYBUT); regparse++; } else ret = regnode(ANYOF); if (*regparse == ']' || *regparse == '-') regc(*regparse++); while (*regparse != '\0' && *regparse != ']') { if (*regparse == '-') { regparse++; if (*regparse == ']' || *regparse == '\0') regc('-'); else { clss = UCHARAT(regparse-2)+1; classend = UCHARAT(regparse); if (clss > classend+1) FAIL("invalid [] range"); for (; clss <= classend; clss++) regc(clss); regparse++; } } else regc(*regparse++); } regc('\0'); if (*regparse != ']') FAIL("unmatched []"); regparse++; *flagp |= HASWIDTH|SIMPLE; } break; case '(': ret = reg(1, &flags); if (ret == NULL) return(NULL); *flagp |= flags&(HASWIDTH|SPSTART); break; case '\0': case '|': case ')': FAIL("internal urp"); /* Supposed to be caught earlier. */ /* NOTREACHED */ break; case '?': case '+': case '*': FAIL("?+* follows nothing"); /* NOTREACHED */ break; case '\\': if (*regparse == '\0') FAIL("trailing \\"); ret = regnode(EXACTLY); regc(*regparse++); regc('\0'); *flagp |= HASWIDTH|SIMPLE; break; default: { register int len; register char ender; regparse--; len = (int) strcspn(regparse, META); if (len <= 0) FAIL("internal disaster"); ender = *(regparse+len); if (len > 1 && ISMULT(ender)) len--; /* Back off clear of ?+* operand. */ *flagp |= HASWIDTH; if (len == 1) *flagp |= SIMPLE; ret = regnode(EXACTLY); while (len > 0) { regc(*regparse++); len--; } regc('\0'); } break; } return(ret); } /* - regnode - emit a node */ static char * /* Location. */ regnode(char op) { register char *ret; register char *ptr; ret = regcode; if (ret == ®dummy) { regsize += 3; return(ret); } ptr = ret; *ptr++ = op; *ptr++ = '\0'; /* Null "next" pointer. */ *ptr++ = '\0'; regcode = ptr; return(ret); } /* - regc - emit (if appropriate) a byte of code */ static void regc(char b) { if (regcode != ®dummy) *regcode++ = b; else regsize++; } /* - reginsert - insert an operator in front of already-emitted operand * * Means relocating the operand. */ static void reginsert(char op, char *opnd) { register constant char *src; register char *dst; register char *place; if (regcode == ®dummy) { regsize += 3; return; } src = regcode; regcode += 3; dst = regcode; while (src > opnd) *--dst = *--src; place = opnd; /* Op node, where operand used to be. */ *place++ = op; *place++ = '\0'; *place++ = '\0'; } /* - regtail - set the next-pointer at the end of a node chain */ static void regtail(char *p, char *val) { register char *scan; register char *temp; register int offset; if (p == ®dummy) return; /* Find last node. */ scan = p; for (;;) { temp = regnext(scan); if (temp == NULL) break; scan = temp; } if (OP(scan) == BACK) offset = (int) (scan - val); else offset = (int) (val - scan); *(scan+1) = (offset>>8)&0377; *(scan+2) = offset&0377; } /* - regoptail - regtail on operand of first argument; nop if operandless */ static void regoptail(char *p, char *val) { /* "Operandless" and "op != BRANCH" are synonymous in practice. */ if (p == NULL || p == ®dummy || OP(p) != BRANCH) return; regtail(OPERAND(p), val); } /* * regexec and friends */ /* * Global work variables for regexec(). */ static constant char *reginput; /* String-input pointer. */ static constant char *regbol; /* Beginning of input, for ^ check. */ static constant char **regstartp; /* Pointer to startp array. */ static constant char **regendp; /* Ditto for endp. */ /* * Forwards. */ STATIC int regtry(regexp *, constant char *); STATIC int regmatch(char *); STATIC int regrepeat(char *); #ifdef DEBUG int regnarrate = 0; void regdump(); STATIC char *regprop(); #endif /* - regexec - match a regexp against a string */ int regexec2(register regexp *prog, register constant char *string, int notbol) { register constant char *s; /* Be paranoid... */ if (prog == NULL || string == NULL) { regerror("NULL parameter"); return(0); } /* Check validity of program. */ if (UCHARAT(prog->program) != MAGIC) { regerror("corrupted program"); return(0); } /* If there is a "must appear" string, look for it. */ if (prog->regmust != NULL) { s = string; while ((s = strchr(s, prog->regmust[0])) != NULL) { if (strncmp(s, prog->regmust, prog->regmlen) == 0) break; /* Found it. */ s++; } if (s == NULL) /* Not present. */ return(0); } /* Mark beginning of line for ^ . */ if (notbol) regbol = NULL; else regbol = string; /* Simplest case: anchored match need be tried only once. */ if (prog->reganch) return(regtry(prog, string)); /* Messy cases: unanchored match. */ s = string; if (prog->regstart != '\0') /* We know what char it must start with. */ while ((s = strchr(s, prog->regstart)) != NULL) { if (regtry(prog, s)) return(1); s++; } else /* We don't -- general case. */ do { if (regtry(prog, s)) return(1); } while (*s++ != '\0'); /* Failure. */ return(0); } int regexec(register regexp *prog, register constant char *string) { return regexec2(prog, string, 0); } /* - regtry - try match at specific point */ static int /* 0 failure, 1 success */ regtry(regexp *prog, constant char *string) { register int i; register constant char **sp; register constant char **ep; reginput = string; regstartp = prog->startp; regendp = prog->endp; sp = prog->startp; ep = prog->endp; for (i = NSUBEXP; i > 0; i--) { *sp++ = NULL; *ep++ = NULL; } if (regmatch(prog->program + 1)) { prog->startp[0] = string; prog->endp[0] = reginput; return(1); } else return(0); } /* - regmatch - main matching routine * * Conceptually the strategy is simple: check to see whether the current * node matches, call self recursively to see whether the rest matches, * and then act accordingly. In practice we make some effort to avoid * recursion, in particular by going through "ordinary" nodes (that don't * need to know whether the rest of the match failed) by a loop instead of * by recursion. */ static int /* 0 failure, 1 success */ regmatch(char *prog) { register char *scan; /* Current node. */ char *next; /* Next node. */ scan = prog; #ifdef DEBUG if (scan != NULL && regnarrate) fprintf(stderr, "%s(\n", regprop(scan)); #endif while (scan != NULL) { #ifdef DEBUG if (regnarrate) fprintf(stderr, "%s...\n", regprop(scan)); #endif next = regnext(scan); switch (OP(scan)) { case BOL: if (reginput != regbol) return(0); break; case EOL: if (*reginput != '\0') return(0); break; case ANY: if (*reginput == '\0') return(0); reginput++; break; case EXACTLY: { register int len; register char *opnd; opnd = OPERAND(scan); /* Inline the first character, for speed. */ if (*opnd != *reginput) return(0); len = (int) strlen(opnd); if (len > 1 && strncmp(opnd, reginput, len) != 0) return(0); reginput += len; } break; case ANYOF: if (*reginput == '\0' || strchr(OPERAND(scan), *reginput) == NULL) return(0); reginput++; break; case ANYBUT: if (*reginput == '\0' || strchr(OPERAND(scan), *reginput) != NULL) return(0); reginput++; break; case NOTHING: break; case BACK: break; case OPEN+1: case OPEN+2: case OPEN+3: case OPEN+4: case OPEN+5: case OPEN+6: case OPEN+7: case OPEN+8: case OPEN+9: { register int no; register constant char *save; no = OP(scan) - OPEN; save = reginput; if (regmatch(next)) { /* * Don't set startp if some later * invocation of the same parentheses * already has. */ if (regstartp[no] == NULL) regstartp[no] = save; return(1); } else return(0); } /* NOTREACHED */ break; case CLOSE+1: case CLOSE+2: case CLOSE+3: case CLOSE+4: case CLOSE+5: case CLOSE+6: case CLOSE+7: case CLOSE+8: case CLOSE+9: { register int no; register constant char *save; no = OP(scan) - CLOSE; save = reginput; if (regmatch(next)) { /* * Don't set endp if some later * invocation of the same parentheses * already has. */ if (regendp[no] == NULL) regendp[no] = save; return(1); } else return(0); } /* NOTREACHED */ break; case BRANCH: { register constant char *save; if (OP(next) != BRANCH) /* No choice. */ next = OPERAND(scan); /* Avoid recursion. */ else { do { save = reginput; if (regmatch(OPERAND(scan))) return(1); reginput = save; scan = regnext(scan); } while (scan != NULL && OP(scan) == BRANCH); return(0); /* NOTREACHED */ } } /* NOTREACHED */ break; case STAR: case PLUS: { register char nextch; register int no; register constant char *save; register int min; /* * Lookahead to avoid useless match attempts * when we know what character comes next. */ nextch = '\0'; if (OP(next) == EXACTLY) nextch = *OPERAND(next); min = (OP(scan) == STAR) ? 0 : 1; save = reginput; no = regrepeat(OPERAND(scan)); while (no >= min) { /* If it could work, try it. */ if (nextch == '\0' || *reginput == nextch) if (regmatch(next)) return(1); /* Couldn't or didn't -- back up. */ no--; reginput = save + no; } return(0); } /* NOTREACHED */ break; case END: return(1); /* Success! */ /* NOTREACHED */ break; default: regerror("memory corruption"); return(0); /* NOTREACHED */ break; } scan = next; } /* * We get here only if there's trouble -- normally "case END" is * the terminating point. */ regerror("corrupted pointers"); return(0); } /* - regrepeat - repeatedly match something simple, report how many */ static int regrepeat(char *p) { register int count = 0; register constant char *scan; register char *opnd; scan = reginput; opnd = OPERAND(p); switch (OP(p)) { case ANY: count = (int) strlen(scan); scan += count; break; case EXACTLY: while (*opnd == *scan) { count++; scan++; } break; case ANYOF: while (*scan != '\0' && strchr(opnd, *scan) != NULL) { count++; scan++; } break; case ANYBUT: while (*scan != '\0' && strchr(opnd, *scan) == NULL) { count++; scan++; } break; default: /* Oh dear. Called inappropriately. */ regerror("internal foulup"); count = 0; /* Best compromise. */ break; } reginput = scan; return(count); } /* - regnext - dig the "next" pointer out of a node */ static char * regnext(register char *p) { register int offset; if (p == ®dummy) return(NULL); offset = NEXT(p); if (offset == 0) return(NULL); if (OP(p) == BACK) return(p-offset); else return(p+offset); } #ifdef DEBUG STATIC char *regprop(); /* - regdump - dump a regexp onto stdout in vaguely comprehensible form */ void regdump(r) regexp *r; { register char *s; register char op = EXACTLY; /* Arbitrary non-END op. */ register char *next; s = r->program + 1; while (op != END) { /* While that wasn't END last time... */ op = OP(s); printf("%2d%s", s-r->program, regprop(s)); /* Where, what. */ next = regnext(s); if (next == NULL) /* Next ptr. */ printf("(0)"); else printf("(%d)", (s-r->program)+(next-s)); s += 3; if (op == ANYOF || op == ANYBUT || op == EXACTLY) { /* Literal string, where present. */ while (*s != '\0') { putchar(*s); s++; } s++; } putchar('\n'); } /* Header fields of interest. */ if (r->regstart != '\0') printf("start `%c' ", r->regstart); if (r->reganch) printf("anchored "); if (r->regmust != NULL) printf("must have \"%s\"", r->regmust); printf("\n"); } /* - regprop - printable representation of opcode */ static constant char * regprop(op) constant char *op; { register char *p; static char buf[50]; (void) strcpy(buf, ":"); switch (OP(op)) { case BOL: p = "BOL"; break; case EOL: p = "EOL"; break; case ANY: p = "ANY"; break; case ANYOF: p = "ANYOF"; break; case ANYBUT: p = "ANYBUT"; break; case BRANCH: p = "BRANCH"; break; case EXACTLY: p = "EXACTLY"; break; case NOTHING: p = "NOTHING"; break; case BACK: p = "BACK"; break; case END: p = "END"; break; case OPEN+1: case OPEN+2: case OPEN+3: case OPEN+4: case OPEN+5: case OPEN+6: case OPEN+7: case OPEN+8: case OPEN+9: sprintf(buf+strlen(buf), "OPEN%d", OP(op)-OPEN); p = NULL; break; case CLOSE+1: case CLOSE+2: case CLOSE+3: case CLOSE+4: case CLOSE+5: case CLOSE+6: case CLOSE+7: case CLOSE+8: case CLOSE+9: sprintf(buf+strlen(buf), "CLOSE%d", OP(op)-CLOSE); p = NULL; break; case STAR: p = "STAR"; break; case PLUS: p = "PLUS"; break; default: regerror("corrupted opcode"); break; } if (p != NULL) (void) strcat(buf, p); return(buf); } #endif /* * The following is provided for those people who do not have strcspn() in * their C libraries. They should get off their butts and do something * about it; at least one public-domain implementation of those (highly * useful) string routines has been published on Usenet. */ #ifdef STRCSPN /* * strcspn - find length of initial segment of s1 consisting entirely * of characters not from s2 */ static int strcspn(constant char *s1, constant char *s2) { register char *scan1; register char *scan2; register int count; count = 0; for (scan1 = s1; *scan1 != '\0'; scan1++) { for (scan2 = s2; *scan2 != '\0';) /* ++ moved down. */ if (*scan1 == *scan2++) return(count); count++; } return(count); } #endif less-668/regexp.h0000444060175306017530000000214714700607635013046 0ustar marknmarkn/* * Definitions etc. for regexp(3) routines. * * Caveat: this is V8 regexp(3) [actually, a reimplementation thereof], * not the System V one. */ #ifndef _REGEXP #define _REGEXP 1 #define NSUBEXP 10 typedef struct regexp { constant char *startp[NSUBEXP]; constant char *endp[NSUBEXP]; char regstart; /* Internal use only. */ char reganch; /* Internal use only. */ char *regmust; /* Internal use only. */ int regmlen; /* Internal use only. */ char program[1]; /* Unwarranted chumminess with compiler. */ } regexp; #if defined(__STDC__) || defined(__cplusplus) # define _ANSI_ARGS_(x) x #else # define _ANSI_ARGS_(x) () #endif extern regexp *regcomp _ANSI_ARGS_((constant char *exp)); extern int regexec _ANSI_ARGS_((regexp *prog, constant char *string)); extern int regexec2 _ANSI_ARGS_((regexp *prog, constant char *string, int notbol)); extern void regsub _ANSI_ARGS_((regexp *prog, constant char *source, char *dest)); extern void regerror _ANSI_ARGS_((constant char *msg)); #endif /* REGEXP */ less-668/screen.c0000444060175306017530000021447114700607607013032 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Routines which deal with the characteristics of the terminal. * Uses termcap to be as terminal-independent as possible. */ #include "less.h" #include "cmd.h" #if MSDOS_COMPILER #include "pckeys.h" #if MSDOS_COMPILER==MSOFTC #include #else #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC #include #if MSDOS_COMPILER==DJGPPC #include extern int fd0; #endif #else #if MSDOS_COMPILER==WIN32C #include #endif #endif #endif #include #ifndef FOREGROUND_BLUE #define FOREGROUND_BLUE 0x0001 #endif #ifndef FOREGROUND_GREEN #define FOREGROUND_GREEN 0x0002 #endif #ifndef FOREGROUND_RED #define FOREGROUND_RED 0x0004 #endif #ifndef FOREGROUND_INTENSITY #define FOREGROUND_INTENSITY 0x0008 #endif #else #if HAVE_SYS_IOCTL_H #include #endif #if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS #include #else #if HAVE_TERMIO_H #include #else #if HAVE_SGSTAT_H #include #else #include #endif #endif #endif #if HAVE_NCURSESW_TERMCAP_H #include #else #if HAVE_NCURSES_TERMCAP_H #include #else #if HAVE_TERMCAP_H #include #endif #endif #endif #ifdef _OSK #include #endif #if OS2 #include #include "pckeys.h" #endif #if HAVE_SYS_STREAM_H #include #endif #if HAVE_SYS_PTEM_H #include #endif #endif /* MSDOS_COMPILER */ /* * Check for broken termios package that forces you to manually * set the line discipline. */ #ifdef __ultrix__ #define MUST_SET_LINE_DISCIPLINE 1 #else #define MUST_SET_LINE_DISCIPLINE 0 #endif #if OS2 #define DEFAULT_TERM "ansi" static char *windowid; #else #define DEFAULT_TERM "unknown" #endif #if MSDOS_COMPILER==MSOFTC static int videopages; static long msec_loops; static int flash_created = 0; #define SET_FG_COLOR(fg) _settextcolor(fg) #define SET_BG_COLOR(bg) _setbkcolor(bg) #define SETCOLORS(fg,bg) { SET_FG_COLOR(fg); SET_BG_COLOR(bg); } #endif #if MSDOS_COMPILER==BORLANDC static unsigned short *whitescreen; static int flash_created = 0; #endif #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC #define _settextposition(y,x) gotoxy(x,y) #define _clearscreen(m) clrscr() #define _outtext(s) cputs(s) #define SET_FG_COLOR(fg) textcolor(fg) #define SET_BG_COLOR(bg) textbackground(bg) #define SETCOLORS(fg,bg) { SET_FG_COLOR(fg); SET_BG_COLOR(bg); } extern int sc_height; #endif #if MSDOS_COMPILER==WIN32C #define UTF8_MAX_LENGTH 4 static WORD curr_attr; static HANDLE con_out_save = INVALID_HANDLE_VALUE; /* previous console */ static HANDLE con_out_ours = INVALID_HANDLE_VALUE; /* our own */ HANDLE con_out = INVALID_HANDLE_VALUE; /* current console */ extern int utf_mode; extern int quitting; static void win32_init_term(); static void win32_deinit_term(); #ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING #define ENABLE_VIRTUAL_TERMINAL_PROCESSING 4 #endif #define FG_COLORS (FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE | FOREGROUND_INTENSITY) #define BG_COLORS (BACKGROUND_RED | BACKGROUND_GREEN | BACKGROUND_BLUE | BACKGROUND_INTENSITY) #define MAKEATTR(fg,bg) ((WORD)((fg)|((bg)<<4))) #define APPLY_COLORS() { if (SetConsoleTextAttribute(con_out, curr_attr) == 0) \ error("SETCOLORS failed", NULL_PARG); } #define SET_FG_COLOR(fg) { curr_attr &= ~0x0f; curr_attr |= (fg); APPLY_COLORS(); } #define SET_BG_COLOR(bg) { curr_attr &= ~0xf0; curr_attr |= ((bg)<<4); APPLY_COLORS(); } #define SETCOLORS(fg,bg) { curr_attr = MAKEATTR(fg,bg); APPLY_COLORS(); } #endif #if MSDOS_COMPILER public int nm_fg_color = CV_ERROR; /* Color of normal text */ public int nm_bg_color = CV_ERROR; public int nm_attr = 0; public int bo_fg_color = CV_ERROR; /* Color of bold text */ public int bo_bg_color = CV_ERROR; public int bo_attr = 0; public int ul_fg_color = CV_ERROR; /* Color of underlined text */ public int ul_bg_color = CV_ERROR; public int ul_attr = 0; public int so_fg_color = CV_ERROR; /* Color of standout text */ public int so_bg_color = CV_ERROR; public int so_attr = 0; public int bl_fg_color = CV_ERROR; /* Color of blinking text */ public int bl_bg_color = CV_ERROR; public int bl_attr = 0; static int sy_fg_color; /* Color of system text (before less) */ static int sy_bg_color; public int sgr_mode; /* Honor ANSI sequences rather than using above */ #if MSDOS_COMPILER==WIN32C static DWORD init_console_output_mode; extern DWORD init_console_input_mode; extern DWORD curr_console_input_mode; extern DWORD base_console_input_mode; extern DWORD mouse_console_input_mode; public int vt_enabled = -1; /* Is virtual terminal processing available? */ #endif #else /* * Strings passed to tputs() to do various terminal functions. */ static constant char *sc_pad, /* Pad string */ *sc_home, /* Cursor home */ *sc_addline, /* Add line, scroll down following lines */ *sc_lower_left, /* Cursor to last line, first column */ *sc_return, /* Cursor to beginning of current line */ *sc_move, /* General cursor positioning */ *sc_clear, /* Clear screen */ *sc_eol_clear, /* Clear to end of line */ *sc_eos_clear, /* Clear to end of screen */ *sc_s_in, /* Enter standout (highlighted) mode */ *sc_s_out, /* Exit standout mode */ *sc_u_in, /* Enter underline mode */ *sc_u_out, /* Exit underline mode */ *sc_b_in, /* Enter bold mode */ *sc_b_out, /* Exit bold mode */ *sc_bl_in, /* Enter blink mode */ *sc_bl_out, /* Exit blink mode */ *sc_visual_bell, /* Visual bell (flash screen) sequence */ *sc_backspace, /* Backspace cursor */ *sc_s_keypad, /* Start keypad mode */ *sc_e_keypad, /* End keypad mode */ *sc_s_mousecap, /* Start mouse capture mode */ *sc_e_mousecap, /* End mouse capture mode */ *sc_init, /* Startup terminal initialization */ *sc_deinit; /* Exit terminal de-initialization */ static int attrcolor = -1; #endif static int init_done = 0; public int auto_wrap; /* Terminal does \r\n when write past margin */ public int ignaw; /* Terminal ignores \n immediately after wrap */ public int erase_char; /* The user's erase char */ public int erase2_char; /* The user's other erase char */ public int kill_char; /* The user's line-kill char */ public int werase_char; /* The user's word-erase char */ public int sc_width, sc_height; /* Height & width of screen */ public int bo_s_width, bo_e_width; /* Printing width of boldface seq */ public int ul_s_width, ul_e_width; /* Printing width of underline seq */ public int so_s_width, so_e_width; /* Printing width of standout seq */ public int bl_s_width, bl_e_width; /* Printing width of blink seq */ public int above_mem, below_mem; /* Memory retained above/below screen */ public int can_goto_line; /* Can move cursor to any line */ public int clear_bg; /* Clear fills with background color */ public int missing_cap = 0; /* Some capability is missing */ public constant char *kent = NULL; /* Keypad ENTER sequence */ public lbool term_init_done = FALSE; public lbool full_screen = TRUE; static int attrmode = AT_NORMAL; static int termcap_debug = -1; static int no_alt_screen; /* sc_init does not switch to alt screen */ extern int binattr; extern int one_screen; #if !MSDOS_COMPILER static constant char *cheaper(constant char *t1, constant char *t2, constant char *def); static void tmodes(constant char *incap, constant char *outcap, constant char **instr, constant char **outstr, constant char *def_instr, constant char *def_outstr, char **spp); #endif /* * These two variables are sometimes defined in, * and needed by, the termcap library. */ #if MUST_DEFINE_OSPEED extern short ospeed; /* Terminal output baud rate */ extern char PC; /* Pad character */ #endif #ifdef _OSK short ospeed; char PC_, *UP, *BC; #endif extern int quiet; /* If VERY_QUIET, use visual bell for bell */ extern int no_vbell; extern int no_back_scroll; extern int no_init; extern int no_keypad; extern int sigs; extern int top_scroll; extern int quit_if_one_screen; extern int oldbot; extern int mousecap; extern int is_tty; extern int use_color; #if HILITE_SEARCH extern int hilite_search; #endif #if MSDOS_COMPILER==WIN32C extern int wscroll; extern HANDLE tty; #else extern int tty; #endif #if (HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS) || defined(TCGETA) /* * Set termio flags for use by less. */ static void set_termio_flags( #if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS struct termios *s #else struct termio *s #endif ) { s->c_lflag &= ~(0 #ifdef ICANON | ICANON #endif #ifdef ECHO | ECHO #endif #ifdef ECHOE | ECHOE #endif #ifdef ECHOK | ECHOK #endif #ifdef ECHONL | ECHONL #endif ); s->c_oflag |= (0 #ifdef OXTABS | OXTABS #else #ifdef TAB3 | TAB3 #else #ifdef XTABS | XTABS #endif #endif #endif #ifdef OPOST | OPOST #endif #ifdef ONLCR | ONLCR #endif ); s->c_oflag &= ~(0 #ifdef ONOEOT | ONOEOT #endif #ifdef OCRNL | OCRNL #endif #ifdef ONOCR | ONOCR #endif #ifdef ONLRET | ONLRET #endif ); } #endif /* * Change terminal to "raw mode", or restore to "normal" mode. * "Raw mode" means * 1. An outstanding read will complete on receipt of a single keystroke. * 2. Input is not echoed. * 3. On output, \n is mapped to \r\n. * 4. \t is NOT expanded into spaces. * 5. Signal-causing characters such as ctrl-C (interrupt), * etc. are NOT disabled. * It doesn't matter whether an input \n is mapped to \r, or vice versa. */ public void raw_mode(int on) { static int curr_on = 0; if (on == curr_on) return; erase2_char = '\b'; /* in case OS doesn't know about erase2 */ #if LESSTEST if (is_lesstest()) { /* {{ For consistent conditions when running tests. }} */ erase_char = '\b'; kill_char = CONTROL('U'); werase_char = CONTROL('W'); } else #endif /*LESSTEST*/ #if HAVE_TERMIOS_H && HAVE_TERMIOS_FUNCS { struct termios s; static struct termios save_term; static int saved_term = 0; if (on) { /* * Get terminal modes. */ if (tcgetattr(tty, &s) < 0) { erase_char = '\b'; kill_char = CONTROL('U'); werase_char = CONTROL('W'); } else { /* * Save modes and set certain variables dependent on modes. */ if (!saved_term) { save_term = s; saved_term = 1; } #if HAVE_OSPEED switch (cfgetospeed(&s)) { #ifdef B0 case B0: ospeed = 0; break; #endif #ifdef B50 case B50: ospeed = 1; break; #endif #ifdef B75 case B75: ospeed = 2; break; #endif #ifdef B110 case B110: ospeed = 3; break; #endif #ifdef B134 case B134: ospeed = 4; break; #endif #ifdef B150 case B150: ospeed = 5; break; #endif #ifdef B200 case B200: ospeed = 6; break; #endif #ifdef B300 case B300: ospeed = 7; break; #endif #ifdef B600 case B600: ospeed = 8; break; #endif #ifdef B1200 case B1200: ospeed = 9; break; #endif #ifdef B1800 case B1800: ospeed = 10; break; #endif #ifdef B2400 case B2400: ospeed = 11; break; #endif #ifdef B4800 case B4800: ospeed = 12; break; #endif #ifdef B9600 case B9600: ospeed = 13; break; #endif #ifdef EXTA case EXTA: ospeed = 14; break; #endif #ifdef EXTB case EXTB: ospeed = 15; break; #endif #ifdef B57600 case B57600: ospeed = 16; break; #endif #ifdef B115200 case B115200: ospeed = 17; break; #endif default: ; } #endif erase_char = s.c_cc[VERASE]; #ifdef VERASE2 erase2_char = s.c_cc[VERASE2]; #endif kill_char = s.c_cc[VKILL]; #ifdef VWERASE werase_char = s.c_cc[VWERASE]; #else werase_char = CONTROL('W'); #endif /* * Set the modes to the way we want them. */ set_termio_flags(&s); s.c_cc[VMIN] = 1; s.c_cc[VTIME] = 0; #ifdef VLNEXT s.c_cc[VLNEXT] = 0; #endif #ifdef VDSUSP s.c_cc[VDSUSP] = 0; #endif #ifdef VSTOP s.c_cc[VSTOP] = 0; #endif #ifdef VSTART s.c_cc[VSTART] = 0; #endif #ifdef VDISCARD s.c_cc[VDISCARD] = 0; #endif #if MUST_SET_LINE_DISCIPLINE /* * System's termios is broken; need to explicitly * request TERMIODISC line discipline. */ s.c_line = TERMIODISC; #endif } } else { /* * Restore saved modes. */ s = save_term; } #if HAVE_FSYNC fsync(tty); #endif tcsetattr(tty, TCSADRAIN, &s); #if MUST_SET_LINE_DISCIPLINE if (!on) { /* * Broken termios *ignores* any line discipline * except TERMIODISC. A different old line discipline * is therefore not restored, yet. Restore the old * line discipline by hand. */ ioctl(tty, TIOCSETD, &save_term.c_line); } #endif } #else #ifdef TCGETA { struct termio s; static struct termio save_term; static int saved_term = 0; if (on) { /* * Get terminal modes. */ ioctl(tty, TCGETA, &s); /* * Save modes and set certain variables dependent on modes. */ if (!saved_term) { save_term = s; saved_term = 1; } #if HAVE_OSPEED ospeed = s.c_cflag & CBAUD; #endif erase_char = s.c_cc[VERASE]; kill_char = s.c_cc[VKILL]; #ifdef VWERASE werase_char = s.c_cc[VWERASE]; #else werase_char = CONTROL('W'); #endif /* * Set the modes to the way we want them. */ set_termio_flags(&s); s.c_cc[VMIN] = 1; s.c_cc[VTIME] = 0; #ifdef VSTOP s.c_cc[VSTOP] = 0; #endif #ifdef VSTART s.c_cc[VSTART] = 0; #endif } else { /* * Restore saved modes. */ s = save_term; } ioctl(tty, TCSETAW, &s); } #else #ifdef TIOCGETP { struct sgttyb s; static struct sgttyb save_term; static int saved_term = 0; if (on) { /* * Get terminal modes. */ ioctl(tty, TIOCGETP, &s); /* * Save modes and set certain variables dependent on modes. */ if (!saved_term) { save_term = s; saved_term = 1; } #if HAVE_OSPEED ospeed = s.sg_ospeed; #endif erase_char = s.sg_erase; kill_char = s.sg_kill; werase_char = CONTROL('W'); /* * Set the modes to the way we want them. */ s.sg_flags |= CBREAK; s.sg_flags &= ~(ECHO|XTABS); } else { /* * Restore saved modes. */ s = save_term; } ioctl(tty, TIOCSETN, &s); } #else #ifdef _OSK { struct sgbuf s; static struct sgbuf save_term; static int saved_term = 0; if (on) { /* * Get terminal modes. */ _gs_opt(tty, &s); /* * Save modes and set certain variables dependent on modes. */ if (!saved_term) { save_term = s; saved_term = 1; } erase_char = s.sg_bspch; kill_char = s.sg_dlnch; werase_char = CONTROL('W'); /* * Set the modes to the way we want them. */ s.sg_echo = 0; s.sg_eofch = 0; s.sg_pause = 0; s.sg_psch = 0; } else { /* * Restore saved modes. */ s = save_term; } _ss_opt(tty, &s); } #else /* MS-DOS, Windows, or OS2 */ #if OS2 /* OS2 */ LSIGNAL(SIGINT, SIG_IGN); #endif erase_char = '\b'; #if MSDOS_COMPILER==DJGPPC kill_char = CONTROL('U'); /* * So that when we shell out or run another program, its * stdin is in cooked mode. We do not switch stdin to binary * mode if fd0 is zero, since that means we were called before * tty was reopened in open_getchr, in which case we would be * changing the original stdin device outside less. */ if (fd0 != 0) setmode(0, on ? O_BINARY : O_TEXT); #else kill_char = ESC; #endif werase_char = CONTROL('W'); #endif #endif #endif #endif curr_on = on; } #if !MSDOS_COMPILER /* * Some glue to prevent calling termcap functions if tgetent() failed. */ static int hardcopy; static constant char * ltget_env(constant char *capname) { char name[64]; if (termcap_debug) { struct env { struct env *next; char *name; char *value; }; static struct env *envs = NULL; struct env *p; for (p = envs; p != NULL; p = p->next) if (strcmp(p->name, capname) == 0) return p->value; p = (struct env *) ecalloc(1, sizeof(struct env)); p->name = save(capname); p->value = (char *) ecalloc(strlen(capname)+3, sizeof(char)); sprintf(p->value, "<%s>", capname); p->next = envs; envs = p; return p->value; } SNPRINTF1(name, sizeof(name), "LESS_TERMCAP_%s", capname); return (lgetenv(name)); } static int ltgetflag(constant char *capname) { constant char *s; if ((s = ltget_env(capname)) != NULL) return (*s != '\0' && *s != '0'); if (hardcopy) return (0); return (tgetflag(capname)); } static int ltgetnum(constant char *capname) { constant char *s; if ((s = ltget_env(capname)) != NULL) return (atoi(s)); if (hardcopy) return (-1); return (tgetnum(capname)); } static constant char * ltgetstr(constant char *capname, char **pp) { constant char *s; if ((s = ltget_env(capname)) != NULL) return (s); if (hardcopy) return (NULL); return (tgetstr(capname, pp)); } #endif /* MSDOS_COMPILER */ /* * Get size of the output screen. */ static void scrsize(void) { constant char *s; int sys_height; int sys_width; #if !MSDOS_COMPILER int n; #endif #define DEF_SC_WIDTH 80 #if MSDOS_COMPILER #define DEF_SC_HEIGHT 25 #else #define DEF_SC_HEIGHT 24 #endif sys_width = sys_height = 0; #if LESSTEST if (0) /* can't use is_lesstest(): ttyin_name may not be set by scan_option yet */ #endif /*LESSTEST*/ { #if MSDOS_COMPILER==MSOFTC { struct videoconfig w; _getvideoconfig(&w); sys_height = w.numtextrows; sys_width = w.numtextcols; } #else #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC { struct text_info w; gettextinfo(&w); sys_height = w.screenheight; sys_width = w.screenwidth; } #else #if MSDOS_COMPILER==WIN32C { CONSOLE_SCREEN_BUFFER_INFO scr; GetConsoleScreenBufferInfo(con_out, &scr); sys_height = scr.srWindow.Bottom - scr.srWindow.Top + 1; sys_width = scr.srWindow.Right - scr.srWindow.Left + 1; } #else #if OS2 { int s[2]; _scrsize(s); sys_width = s[0]; sys_height = s[1]; /* * When using terminal emulators for XFree86/OS2, the * _scrsize function does not work well. * Call the scrsize.exe program to get the window size. */ windowid = getenv("WINDOWID"); if (windowid != NULL) { FILE *fd = popen("scrsize", "rt"); if (fd != NULL) { int w, h; fscanf(fd, "%i %i", &w, &h); if (w > 0 && h > 0) { sys_width = w; sys_height = h; } pclose(fd); } } } #else #ifdef TIOCGWINSZ { struct winsize w; if (ioctl(2, TIOCGWINSZ, &w) == 0) { if (w.ws_row > 0) sys_height = w.ws_row; if (w.ws_col > 0) sys_width = w.ws_col; } } #else #ifdef WIOCGETD { struct uwdata w; if (ioctl(2, WIOCGETD, &w) == 0) { if (w.uw_height > 0) sys_height = w.uw_height / w.uw_vs; if (w.uw_width > 0) sys_width = w.uw_width / w.uw_hs; } } #endif #endif #endif #endif #endif #endif } if (sys_height > 0) sc_height = sys_height; else if ((s = lgetenv("LINES")) != NULL) sc_height = atoi(s); #if !MSDOS_COMPILER else if ((n = ltgetnum("li")) > 0) sc_height = n; #endif if ((s = lgetenv("LESS_LINES")) != NULL) { int height = atoi(s); sc_height = (height < 0) ? sc_height + height : height; full_screen = FALSE; } if (sc_height <= 0) sc_height = DEF_SC_HEIGHT; if (sys_width > 0) sc_width = sys_width; else if ((s = lgetenv("COLUMNS")) != NULL) sc_width = atoi(s); #if !MSDOS_COMPILER else if ((n = ltgetnum("co")) > 0) sc_width = n; #endif if ((s = lgetenv("LESS_COLUMNS")) != NULL) { int width = atoi(s); sc_width = (width < 0) ? sc_width + width : width; } if (sc_width <= 0) sc_width = DEF_SC_WIDTH; screen_size_changed(); } /* * Recalculate things that depend on the screen size. */ public void screen_size_changed(void) { calc_jump_sline(); calc_shift_count(); calc_match_shift(); } #if MSDOS_COMPILER==MSOFTC /* * Figure out how many empty loops it takes to delay a millisecond. */ static void get_clock(void) { clock_t start; /* * Get synchronized at the start of a tick. */ start = clock(); while (clock() == start) ; /* * Now count loops till the next tick. */ start = clock(); msec_loops = 0; while (clock() == start) msec_loops++; /* * Convert from (loops per clock) to (loops per millisecond). */ msec_loops *= CLOCKS_PER_SEC; msec_loops /= 1000; } /* * Delay for a specified number of milliseconds. */ static void delay(int msec) { long i; while (msec-- > 0) { for (i = 0; i < msec_loops; i++) (void) clock(); } } #endif /* * Return the characters actually input by a "special" key. */ public constant char * special_key_str(int key) { static char tbuf[40]; constant char *s; #if MSDOS_COMPILER || OS2 static char k_right[] = { '\340', PCK_RIGHT, 0 }; static char k_left[] = { '\340', PCK_LEFT, 0 }; static char k_ctl_right[] = { '\340', PCK_CTL_RIGHT, 0 }; static char k_ctl_left[] = { '\340', PCK_CTL_LEFT, 0 }; static char k_insert[] = { '\340', PCK_INSERT, 0 }; static char k_delete[] = { '\340', PCK_DELETE, 0 }; static char k_ctl_delete[] = { '\340', PCK_CTL_DELETE, 0 }; static char k_ctl_backspace[] = { '\177', 0 }; static char k_backspace[] = { '\b', 0 }; static char k_home[] = { '\340', PCK_HOME, 0 }; static char k_end[] = { '\340', PCK_END, 0 }; static char k_up[] = { '\340', PCK_UP, 0 }; static char k_down[] = { '\340', PCK_DOWN, 0 }; static char k_backtab[] = { '\340', PCK_SHIFT_TAB, 0 }; static char k_pagedown[] = { '\340', PCK_PAGEDOWN, 0 }; static char k_pageup[] = { '\340', PCK_PAGEUP, 0 }; static char k_f1[] = { '\340', PCK_F1, 0 }; #endif #if !MSDOS_COMPILER char *sp = tbuf; #endif switch (key) { #if OS2 /* * If windowid is not NULL, assume less is executed in * the XFree86 environment. */ case SK_RIGHT_ARROW: s = windowid ? ltgetstr("kr", &sp) : k_right; break; case SK_LEFT_ARROW: s = windowid ? ltgetstr("kl", &sp) : k_left; break; case SK_UP_ARROW: s = windowid ? ltgetstr("ku", &sp) : k_up; break; case SK_DOWN_ARROW: s = windowid ? ltgetstr("kd", &sp) : k_down; break; case SK_PAGE_UP: s = windowid ? ltgetstr("kP", &sp) : k_pageup; break; case SK_PAGE_DOWN: s = windowid ? ltgetstr("kN", &sp) : k_pagedown; break; case SK_HOME: s = windowid ? ltgetstr("kh", &sp) : k_home; break; case SK_END: s = windowid ? ltgetstr("@7", &sp) : k_end; break; case SK_DELETE: s = windowid ? ltgetstr("kD", &sp) : k_delete; if (s == NULL) { tbuf[0] = '\177'; tbuf[1] = '\0'; s = tbuf; } break; #endif #if MSDOS_COMPILER case SK_RIGHT_ARROW: s = k_right; break; case SK_LEFT_ARROW: s = k_left; break; case SK_UP_ARROW: s = k_up; break; case SK_DOWN_ARROW: s = k_down; break; case SK_PAGE_UP: s = k_pageup; break; case SK_PAGE_DOWN: s = k_pagedown; break; case SK_HOME: s = k_home; break; case SK_END: s = k_end; break; case SK_DELETE: s = k_delete; break; #endif #if MSDOS_COMPILER || OS2 case SK_INSERT: s = k_insert; break; case SK_CTL_LEFT_ARROW: s = k_ctl_left; break; case SK_CTL_RIGHT_ARROW: s = k_ctl_right; break; case SK_CTL_BACKSPACE: s = k_ctl_backspace; break; case SK_CTL_DELETE: s = k_ctl_delete; break; case SK_BACKSPACE: s = k_backspace; break; case SK_F1: s = k_f1; break; case SK_BACKTAB: s = k_backtab; break; #else case SK_RIGHT_ARROW: s = ltgetstr("kr", &sp); break; case SK_LEFT_ARROW: s = ltgetstr("kl", &sp); break; case SK_UP_ARROW: s = ltgetstr("ku", &sp); break; case SK_DOWN_ARROW: s = ltgetstr("kd", &sp); break; case SK_PAGE_UP: s = ltgetstr("kP", &sp); break; case SK_PAGE_DOWN: s = ltgetstr("kN", &sp); break; case SK_HOME: s = ltgetstr("kh", &sp); break; case SK_END: s = ltgetstr("@7", &sp); break; case SK_DELETE: s = ltgetstr("kD", &sp); if (s == NULL) { tbuf[0] = '\177'; tbuf[1] = '\0'; s = tbuf; } break; case SK_BACKSPACE: s = ltgetstr("kb", &sp); if (s == NULL) { tbuf[0] = '\b'; tbuf[1] = '\0'; s = tbuf; } break; #endif case SK_CONTROL_K: tbuf[0] = CONTROL('K'); tbuf[1] = '\0'; s = tbuf; break; default: return (NULL); } return (s); } #if MSDOS_COMPILER public void init_win_colors(void) { if (nm_fg_color == CV_ERROR || nm_fg_color == CV_NOCHANGE) nm_fg_color = sy_fg_color; if (nm_bg_color == CV_ERROR || nm_bg_color == CV_NOCHANGE) nm_bg_color = sy_bg_color; if (bo_fg_color == CV_NOCHANGE) bo_fg_color = sy_fg_color; else if (bo_fg_color == CV_ERROR) bo_fg_color = sy_fg_color | 8; if (bo_bg_color == CV_NOCHANGE) bo_bg_color = sy_bg_color; else if (bo_bg_color == CV_ERROR) bo_bg_color = sy_bg_color; if (ul_fg_color == CV_NOCHANGE) ul_fg_color = sy_fg_color; else if (ul_fg_color == CV_ERROR) ul_fg_color = (sy_bg_color == 3 || sy_bg_color == 11) ? 0 : 11; if (ul_bg_color == CV_NOCHANGE) ul_bg_color = sy_bg_color; else if (ul_bg_color == CV_ERROR) ul_bg_color = sy_bg_color; if (so_fg_color == CV_NOCHANGE) so_fg_color = sy_fg_color; else if (so_fg_color == CV_ERROR) so_fg_color = sy_bg_color; if (so_bg_color == CV_NOCHANGE) so_bg_color = sy_bg_color; else if (so_bg_color == CV_ERROR) so_bg_color = sy_fg_color; if (bl_fg_color == CV_NOCHANGE) bl_fg_color = sy_fg_color; else if (bl_fg_color == CV_ERROR) bl_fg_color = ul_bg_color; if (bl_bg_color == CV_NOCHANGE) bl_bg_color = sy_bg_color; else if (bl_bg_color == CV_ERROR) bl_bg_color = ul_fg_color; nm_fg_color |= nm_attr; bo_fg_color |= bo_attr; ul_fg_color |= ul_attr; so_fg_color |= so_attr; bl_fg_color |= bl_attr; } #endif /* MSDOS_COMPILER */ /* * Get terminal capabilities via termcap. */ public void get_term(void) { termcap_debug = !isnullenv(lgetenv("LESS_TERMCAP_DEBUG")); #if MSDOS_COMPILER auto_wrap = 1; ignaw = 0; can_goto_line = 1; clear_bg = 1; /* * Set up default colors. * The xx_s_width and xx_e_width vars are already initialized to 0. */ #if MSDOS_COMPILER==MSOFTC sy_bg_color = _getbkcolor(); sy_fg_color = _gettextcolor(); get_clock(); #else #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC { struct text_info w; gettextinfo(&w); sy_bg_color = (w.attribute >> 4) & 0x0F; sy_fg_color = (w.attribute >> 0) & 0x0F; } #else #if MSDOS_COMPILER==WIN32C { CONSOLE_SCREEN_BUFFER_INFO scr; con_out_save = con_out = GetStdHandle(STD_OUTPUT_HANDLE); /* * Always open stdin in binary. Note this *must* be done * before any file operations have been done on fd0. */ SET_BINARY(0); GetConsoleMode(con_out, &init_console_output_mode); GetConsoleScreenBufferInfo(con_out, &scr); curr_attr = scr.wAttributes; sy_bg_color = (curr_attr & BG_COLORS) >> 4; /* normalize */ sy_fg_color = curr_attr & FG_COLORS; } #endif #endif #endif init_win_colors(); /* * Get size of the screen. */ scrsize(); pos_init(); #else /* !MSDOS_COMPILER */ { char *sp; constant char *t1; constant char *t2; constant char *term; /* * Some termcap libraries assume termbuf is static * (accessible after tgetent returns). */ static char termbuf[TERMBUF_SIZE]; static char sbuf[TERMSBUF_SIZE]; #if OS2 /* * Make sure the termcap database is available. */ constant char *cp = lgetenv("TERMCAP"); if (isnullenv(cp)) { char *termcap; if ((sp = homefile("termcap.dat")) != NULL) { termcap = (char *) ecalloc(strlen(sp)+9, sizeof(char)); sprintf(termcap, "TERMCAP=%s", sp); free(sp); putenv(termcap); } } #endif /* * Find out what kind of terminal this is. */ if ((term = lgetenv("TERM")) == NULL) term = DEFAULT_TERM; hardcopy = 0; /* {{ Should probably just pass NULL instead of termbuf. }} */ if (tgetent(termbuf, term) != TGETENT_OK) hardcopy = 1; if (ltgetflag("hc")) hardcopy = 1; /* * Get size of the screen. */ scrsize(); pos_init(); auto_wrap = ltgetflag("am"); ignaw = ltgetflag("xn"); above_mem = ltgetflag("da"); below_mem = ltgetflag("db"); clear_bg = ltgetflag("ut"); no_alt_screen = ltgetflag("NR"); /* * Assumes termcap variable "sg" is the printing width of: * the standout sequence, the end standout sequence, * the underline sequence, the end underline sequence, * the boldface sequence, and the end boldface sequence. */ if ((so_s_width = ltgetnum("sg")) < 0) so_s_width = 0; so_e_width = so_s_width; bo_s_width = bo_e_width = so_s_width; ul_s_width = ul_e_width = so_s_width; bl_s_width = bl_e_width = so_s_width; #if HILITE_SEARCH if (so_s_width > 0 || so_e_width > 0) /* * Disable highlighting by default on magic cookie terminals. * Turning on highlighting might change the displayed width * of a line, causing the display to get messed up. * The user can turn it back on with -g, * but she won't like the results. */ hilite_search = 0; #endif /* * Get various string-valued capabilities. */ sp = sbuf; #if HAVE_OSPEED sc_pad = ltgetstr("pc", &sp); if (sc_pad != NULL) PC = *sc_pad; #endif sc_s_keypad = ltgetstr("ks", &sp); if (sc_s_keypad == NULL) sc_s_keypad = ""; sc_e_keypad = ltgetstr("ke", &sp); if (sc_e_keypad == NULL) sc_e_keypad = ""; kent = ltgetstr("@8", &sp); sc_s_mousecap = ltgetstr("MOUSE_START", &sp); if (sc_s_mousecap == NULL) sc_s_mousecap = ESCS "[?1000h" ESCS "[?1006h"; sc_e_mousecap = ltgetstr("MOUSE_END", &sp); if (sc_e_mousecap == NULL) sc_e_mousecap = ESCS "[?1006l" ESCS "[?1000l"; sc_init = ltgetstr("ti", &sp); if (sc_init == NULL) sc_init = ""; sc_deinit= ltgetstr("te", &sp); if (sc_deinit == NULL) sc_deinit = ""; sc_eol_clear = ltgetstr("ce", &sp); if (sc_eol_clear == NULL || *sc_eol_clear == '\0') { missing_cap = 1; sc_eol_clear = ""; } sc_eos_clear = ltgetstr("cd", &sp); if (below_mem && (sc_eos_clear == NULL || *sc_eos_clear == '\0')) { missing_cap = 1; sc_eos_clear = ""; } sc_clear = ltgetstr("cl", &sp); if (sc_clear == NULL || *sc_clear == '\0') { missing_cap = 1; sc_clear = "\n\n"; } sc_move = ltgetstr("cm", &sp); if (sc_move == NULL || *sc_move == '\0') { /* * This is not an error here, because we don't * always need sc_move. * We need it only if we don't have home or lower-left. */ sc_move = ""; can_goto_line = 0; } else can_goto_line = 1; tmodes("so", "se", &sc_s_in, &sc_s_out, "", "", &sp); tmodes("us", "ue", &sc_u_in, &sc_u_out, sc_s_in, sc_s_out, &sp); tmodes("md", "me", &sc_b_in, &sc_b_out, sc_s_in, sc_s_out, &sp); tmodes("mb", "me", &sc_bl_in, &sc_bl_out, sc_s_in, sc_s_out, &sp); sc_visual_bell = ltgetstr("vb", &sp); if (sc_visual_bell == NULL) sc_visual_bell = ""; if (ltgetflag("bs")) sc_backspace = "\b"; else { sc_backspace = ltgetstr("bc", &sp); if (sc_backspace == NULL || *sc_backspace == '\0') sc_backspace = "\b"; } /* * Choose between using "ho" and "cm" ("home" and "cursor move") * to move the cursor to the upper left corner of the screen. */ t1 = ltgetstr("ho", &sp); if (t1 == NULL) t1 = ""; if (*sc_move == '\0') t2 = ""; else { strcpy(sp, tgoto(sc_move, 0, 0)); t2 = sp; sp += strlen(sp) + 1; } sc_home = cheaper(t1, t2, "|\b^"); /* * Choose between using "ll" and "cm" ("lower left" and "cursor move") * to move the cursor to the lower left corner of the screen. */ t1 = ltgetstr("ll", &sp); if (t1 == NULL || !full_screen) t1 = ""; if (*sc_move == '\0') t2 = ""; else { strcpy(sp, tgoto(sc_move, 0, sc_height-1)); t2 = sp; sp += strlen(sp) + 1; } sc_lower_left = cheaper(t1, t2, "\r"); /* * Get carriage return string. */ sc_return = ltgetstr("cr", &sp); if (sc_return == NULL) sc_return = "\r"; /* * Choose between using "al" or "sr" ("add line" or "scroll reverse") * to add a line at the top of the screen. */ t1 = ltgetstr("al", &sp); if (t1 == NULL) t1 = ""; t2 = ltgetstr("sr", &sp); if (t2 == NULL) t2 = ""; #if OS2 if (*t1 == '\0' && *t2 == '\0') sc_addline = ""; else #endif if (above_mem) sc_addline = t1; else sc_addline = cheaper(t1, t2, ""); if (*sc_addline == '\0') { /* * Force repaint on any backward movement. */ no_back_scroll = 1; } } #endif /* MSDOS_COMPILER */ } #if !MSDOS_COMPILER /* * Return the cost of displaying a termcap string. * We use the trick of calling tputs, but as a char printing function * we give it inc_costcount, which just increments "costcount". * This tells us how many chars would be printed by using this string. * {{ Couldn't we just use strlen? }} */ static int costcount; /*ARGSUSED*/ static int inc_costcount(int c) { costcount++; return (c); } static int cost(constant char *t) { costcount = 0; tputs(t, sc_height, inc_costcount); return (costcount); } /* * Return the "best" of the two given termcap strings. * The best, if both exist, is the one with the lower * cost (see cost() function). */ static constant char * cheaper(constant char *t1, constant char *t2, constant char *def) { if (*t1 == '\0' && *t2 == '\0') { missing_cap = 1; return (def); } if (*t1 == '\0') return (t2); if (*t2 == '\0') return (t1); if (cost(t1) < cost(t2)) return (t1); return (t2); } static void tmodes(constant char *incap, constant char *outcap, constant char **instr, constant char **outstr, constant char *def_instr, constant char *def_outstr, char **spp) { *instr = ltgetstr(incap, spp); if (*instr == NULL) { /* Use defaults. */ *instr = def_instr; *outstr = def_outstr; return; } *outstr = ltgetstr(outcap, spp); if (*outstr == NULL) /* No specific out capability; use "me". */ *outstr = ltgetstr("me", spp); if (*outstr == NULL) /* Don't even have "me"; use a null string. */ *outstr = ""; } #endif /* MSDOS_COMPILER */ /* * Below are the functions which perform all the * terminal-specific screen manipulation. */ #if MSDOS_COMPILER #if MSDOS_COMPILER==WIN32C static void _settextposition(int row, int col) { COORD cpos; CONSOLE_SCREEN_BUFFER_INFO csbi; GetConsoleScreenBufferInfo(con_out, &csbi); cpos.X = csbi.srWindow.Left + (col - 1); cpos.Y = csbi.srWindow.Top + (row - 1); SetConsoleCursorPosition(con_out, cpos); } #endif /* * Initialize the screen to the correct color at startup. */ static void initcolor(void) { #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC intensevideo(); #endif SETCOLORS(nm_fg_color, nm_bg_color); #if 0 /* * This clears the screen at startup. This is different from * the behavior of other versions of less. Disable it for now. */ char *blanks; int row; int col; /* * Create a complete, blank screen using "normal" colors. */ SETCOLORS(nm_fg_color, nm_bg_color); blanks = (char *) ecalloc(width+1, sizeof(char)); for (col = 0; col < sc_width; col++) blanks[col] = ' '; blanks[sc_width] = '\0'; for (row = 0; row < sc_height; row++) _outtext(blanks); free(blanks); #endif } #endif #if MSDOS_COMPILER==WIN32C /* * Enable virtual terminal processing, if available. */ static void win32_init_vt_term(void) { DWORD console_output_mode; if (vt_enabled == 0 || (vt_enabled == 1 && con_out == con_out_ours)) return; console_output_mode = init_console_output_mode | ENABLE_VIRTUAL_TERMINAL_PROCESSING; vt_enabled = SetConsoleMode(con_out, console_output_mode); if (vt_enabled) { auto_wrap = 0; ignaw = 1; } } static void win32_deinit_vt_term(void) { if (vt_enabled == 1 && con_out == con_out_save) SetConsoleMode(con_out, init_console_output_mode); } /* * Termcap-like init with a private win32 console. */ static void win32_init_term(void) { CONSOLE_SCREEN_BUFFER_INFO scr; COORD size; if (con_out_save == INVALID_HANDLE_VALUE) return; GetConsoleScreenBufferInfo(con_out_save, &scr); if (con_out_ours == INVALID_HANDLE_VALUE) { /* * Create our own screen buffer, so that we * may restore the original when done. */ con_out_ours = CreateConsoleScreenBuffer( GENERIC_WRITE | GENERIC_READ, FILE_SHARE_WRITE | FILE_SHARE_READ, (LPSECURITY_ATTRIBUTES) NULL, CONSOLE_TEXTMODE_BUFFER, (LPVOID) NULL); } size.X = scr.srWindow.Right - scr.srWindow.Left + 1; size.Y = scr.srWindow.Bottom - scr.srWindow.Top + 1; SetConsoleScreenBufferSize(con_out_ours, size); SetConsoleActiveScreenBuffer(con_out_ours); con_out = con_out_ours; } /* * Restore the startup console. */ static void win32_deinit_term(void) { if (con_out_save == INVALID_HANDLE_VALUE) return; if (quitting) (void) CloseHandle(con_out_ours); SetConsoleActiveScreenBuffer(con_out_save); con_out = con_out_save; } #endif #if !MSDOS_COMPILER static void do_tputs(constant char *str, int affcnt, int (*f_putc)(int)) { #if LESSTEST if (is_lesstest() && f_putc == putchr) putstr(str); else #endif /*LESSTEST*/ tputs(str, affcnt, f_putc); } /* * Like tputs but we handle $<...> delay strings here because * some implementations of tputs don't perform delays correctly. */ static void ltputs(constant char *str, int affcnt, int (*f_putc)(int)) { while (str != NULL && *str != '\0') { #if HAVE_STRSTR constant char *obrac = strstr(str, "$<"); if (obrac != NULL) { char str2[64]; size_t slen = ptr_diff(obrac, str); if (slen < sizeof(str2)) { int delay; /* Output first part of string (before "$<"). */ memcpy(str2, str, slen); str2[slen] = '\0'; do_tputs(str2, affcnt, f_putc); str += slen + 2; /* Perform the delay. */ delay = lstrtoic(str, &str, 10); if (*str == '*') if (ckd_mul(&delay, delay, affcnt)) delay = INT_MAX; flush(); sleep_ms(delay); /* Skip past closing ">" at end of delay string. */ str = strstr(str, ">"); if (str != NULL) str++; continue; } } #endif /* Pass the rest of the string to tputs and we're done. */ do_tputs(str, affcnt, f_putc); break; } } #endif /* MSDOS_COMPILER */ /* * Configure the terminal so mouse clicks and wheel moves * produce input to less. */ public void init_mouse(void) { #if !MSDOS_COMPILER ltputs(sc_s_mousecap, sc_height, putchr); #else #if MSDOS_COMPILER==WIN32C curr_console_input_mode = mouse_console_input_mode; SetConsoleMode(tty, curr_console_input_mode); #endif #endif } /* * Configure the terminal so mouse clicks and wheel moves * are handled by the system (so text can be selected, etc). */ public void deinit_mouse(void) { #if !MSDOS_COMPILER ltputs(sc_e_mousecap, sc_height, putchr); #else #if MSDOS_COMPILER==WIN32C curr_console_input_mode = base_console_input_mode; SetConsoleMode(tty, curr_console_input_mode); #endif #endif } /* * Initialize terminal */ public void init(void) { clear_bot_if_needed(); #if !MSDOS_COMPILER if (!(quit_if_one_screen && one_screen)) { if (!no_init) { ltputs(sc_init, sc_height, putchr); /* * Some terminals leave the cursor unmoved when switching * to the alt screen. To avoid having the text appear at * a seemingly random line on the alt screen, move to * lower left if we are using an alt screen. */ if (*sc_init != '\0' && *sc_deinit != '\0' && !no_alt_screen) lower_left(); term_init_done = 1; } if (!no_keypad) ltputs(sc_s_keypad, sc_height, putchr); if (mousecap) init_mouse(); } init_done = 1; if (top_scroll) { int i; /* * This is nice to terminals with no alternate screen, * but with saved scrolled-off-the-top lines. This way, * no previous line is lost, but we start with a whole * screen to ourself. */ for (i = 1; i < sc_height; i++) putchr('\n'); } else line_left(); #else #if MSDOS_COMPILER==WIN32C if (!(quit_if_one_screen && one_screen)) { if (!no_init) { win32_init_term(); term_init_done = 1; } if (mousecap) init_mouse(); } win32_init_vt_term(); #endif init_done = 1; initcolor(); flush(); #endif } /* * Deinitialize terminal */ public void deinit(void) { if (!init_done) return; #if !MSDOS_COMPILER if (!(quit_if_one_screen && one_screen)) { if (mousecap) deinit_mouse(); if (!no_keypad) ltputs(sc_e_keypad, sc_height, putchr); if (!no_init) ltputs(sc_deinit, sc_height, putchr); } #else /* Restore system colors. */ SETCOLORS(sy_fg_color, sy_bg_color); #if MSDOS_COMPILER==WIN32C win32_deinit_vt_term(); if (!(quit_if_one_screen && one_screen)) { if (mousecap) deinit_mouse(); if (!no_init) win32_deinit_term(); } #else /* Need clreol to make SETCOLORS take effect. */ clreol(); #endif #endif init_done = 0; } /* * Are we interactive (ie. writing to an initialized tty)? */ public int interactive(void) { return (is_tty && init_done); } static void assert_interactive(void) { if (interactive()) return; /* abort(); */ } /* * Home cursor (move to upper left corner of screen). */ public void home(void) { assert_interactive(); #if !MSDOS_COMPILER ltputs(sc_home, 1, putchr); #else flush(); _settextposition(1,1); #endif } #if LESSTEST public void dump_screen(void) { char dump_cmd[32]; SNPRINTF1(dump_cmd, sizeof(dump_cmd), ESCS"0;0;%dR", sc_width * sc_height); ltputs(dump_cmd, sc_height, putchr); flush(); } #endif /*LESSTEST*/ /* * Add a blank line (called with cursor at home). * Should scroll the display down. */ public void add_line(void) { assert_interactive(); #if !MSDOS_COMPILER ltputs(sc_addline, sc_height, putchr); #else flush(); #if MSDOS_COMPILER==MSOFTC _scrolltextwindow(_GSCROLLDOWN); _settextposition(1,1); #else #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC movetext(1,1, sc_width,sc_height-1, 1,2); gotoxy(1,1); clreol(); #else #if MSDOS_COMPILER==WIN32C { CHAR_INFO fillchar; SMALL_RECT rcSrc, rcClip; COORD new_org; CONSOLE_SCREEN_BUFFER_INFO csbi; GetConsoleScreenBufferInfo(con_out,&csbi); /* The clip rectangle is the entire visible screen. */ rcClip.Left = csbi.srWindow.Left; rcClip.Top = csbi.srWindow.Top; rcClip.Right = csbi.srWindow.Right; rcClip.Bottom = csbi.srWindow.Bottom; /* The source rectangle is the visible screen minus the last line. */ rcSrc = rcClip; rcSrc.Bottom--; /* Move the top left corner of the source window down one row. */ new_org.X = rcSrc.Left; new_org.Y = rcSrc.Top + 1; /* Fill the right character and attributes. */ fillchar.Char.AsciiChar = ' '; curr_attr = MAKEATTR(nm_fg_color, nm_bg_color); fillchar.Attributes = curr_attr; ScrollConsoleScreenBuffer(con_out, &rcSrc, &rcClip, new_org, &fillchar); _settextposition(1,1); } #endif #endif #endif #endif } #if 0 /* * Remove the n topmost lines and scroll everything below it in the * window upward. This is needed to stop leaking the topmost line * into the scrollback buffer when we go down-one-line (in WIN32). */ public void remove_top(int n) { #if MSDOS_COMPILER==WIN32C SMALL_RECT rcSrc, rcClip; CHAR_INFO fillchar; COORD new_org; CONSOLE_SCREEN_BUFFER_INFO csbi; /* to get buffer info */ if (n >= sc_height - 1) { clear(); home(); return; } flush(); GetConsoleScreenBufferInfo(con_out, &csbi); /* Get the extent of all-visible-rows-but-the-last. */ rcSrc.Left = csbi.srWindow.Left; rcSrc.Top = csbi.srWindow.Top + n; rcSrc.Right = csbi.srWindow.Right; rcSrc.Bottom = csbi.srWindow.Bottom; /* Get the clip rectangle. */ rcClip.Left = rcSrc.Left; rcClip.Top = csbi.srWindow.Top; rcClip.Right = rcSrc.Right; rcClip.Bottom = rcSrc.Bottom ; /* Move the source window up n rows. */ new_org.X = rcSrc.Left; new_org.Y = rcSrc.Top - n; /* Fill the right character and attributes. */ fillchar.Char.AsciiChar = ' '; curr_attr = MAKEATTR(nm_fg_color, nm_bg_color); fillchar.Attributes = curr_attr; ScrollConsoleScreenBuffer(con_out, &rcSrc, &rcClip, new_org, &fillchar); /* Position cursor on first blank line. */ goto_line(sc_height - n - 1); #endif } #endif #if MSDOS_COMPILER==WIN32C /* * Clear the screen. */ static void win32_clear(void) { /* * This will clear only the currently visible rows of the NT * console buffer, which means none of the precious scrollback * rows are touched making for faster scrolling. Note that, if * the window has fewer columns than the console buffer (i.e. * there is a horizontal scrollbar as well), the entire width * of the visible rows will be cleared. */ COORD topleft; DWORD nchars; DWORD winsz; CONSOLE_SCREEN_BUFFER_INFO csbi; /* get the number of cells in the current buffer */ GetConsoleScreenBufferInfo(con_out, &csbi); winsz = csbi.dwSize.X * (csbi.srWindow.Bottom - csbi.srWindow.Top + 1); topleft.X = 0; topleft.Y = csbi.srWindow.Top; curr_attr = MAKEATTR(nm_fg_color, nm_bg_color); FillConsoleOutputCharacter(con_out, ' ', winsz, topleft, &nchars); FillConsoleOutputAttribute(con_out, curr_attr, winsz, topleft, &nchars); } /* * Remove the n topmost lines and scroll everything below it in the * window upward. */ public void win32_scroll_up(int n) { SMALL_RECT rcSrc, rcClip; CHAR_INFO fillchar; COORD topleft; COORD new_org; DWORD nchars; DWORD size; CONSOLE_SCREEN_BUFFER_INFO csbi; if (n <= 0) return; if (n >= sc_height - 1) { win32_clear(); _settextposition(1,1); return; } /* Get the extent of what will remain visible after scrolling. */ GetConsoleScreenBufferInfo(con_out, &csbi); rcSrc.Left = csbi.srWindow.Left; rcSrc.Top = csbi.srWindow.Top + n; rcSrc.Right = csbi.srWindow.Right; rcSrc.Bottom = csbi.srWindow.Bottom; /* Get the clip rectangle. */ rcClip.Left = rcSrc.Left; rcClip.Top = csbi.srWindow.Top; rcClip.Right = rcSrc.Right; rcClip.Bottom = rcSrc.Bottom ; /* Move the source text to the top of the screen. */ new_org.X = rcSrc.Left; new_org.Y = rcClip.Top; /* Fill the right character and attributes. */ fillchar.Char.AsciiChar = ' '; fillchar.Attributes = MAKEATTR(nm_fg_color, nm_bg_color); /* Scroll the window. */ SetConsoleTextAttribute(con_out, fillchar.Attributes); ScrollConsoleScreenBuffer(con_out, &rcSrc, &rcClip, new_org, &fillchar); /* Clear remaining lines at bottom. */ topleft.X = csbi.dwCursorPosition.X; topleft.Y = rcSrc.Bottom - n; size = (n * csbi.dwSize.X) + (rcSrc.Right - topleft.X); FillConsoleOutputCharacter(con_out, ' ', size, topleft, &nchars); FillConsoleOutputAttribute(con_out, fillchar.Attributes, size, topleft, &nchars); SetConsoleTextAttribute(con_out, curr_attr); /* Move cursor n lines up from where it was. */ csbi.dwCursorPosition.Y -= n; SetConsoleCursorPosition(con_out, csbi.dwCursorPosition); } #endif /* * Move cursor to lower left corner of screen. */ public void lower_left(void) { assert_interactive(); #if !MSDOS_COMPILER ltputs(sc_lower_left, 1, putchr); #else flush(); _settextposition(sc_height, 1); #endif } /* * Move cursor to left position of current line. */ public void line_left(void) { assert_interactive(); #if !MSDOS_COMPILER ltputs(sc_return, 1, putchr); #else { int row; flush(); #if MSDOS_COMPILER==WIN32C { CONSOLE_SCREEN_BUFFER_INFO scr; GetConsoleScreenBufferInfo(con_out, &scr); row = scr.dwCursorPosition.Y - scr.srWindow.Top + 1; } #else #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC row = wherey(); #else { struct rccoord tpos = _gettextposition(); row = tpos.row; } #endif #endif _settextposition(row, 1); } #endif } /* * Check if the console size has changed and reset internals * (in lieu of SIGWINCH for WIN32). */ public void check_winch(void) { #if MSDOS_COMPILER==WIN32C CONSOLE_SCREEN_BUFFER_INFO scr; COORD size; if (con_out == INVALID_HANDLE_VALUE) return; flush(); GetConsoleScreenBufferInfo(con_out, &scr); size.Y = scr.srWindow.Bottom - scr.srWindow.Top + 1; size.X = scr.srWindow.Right - scr.srWindow.Left + 1; if (size.Y != sc_height || size.X != sc_width) { sc_height = size.Y; sc_width = size.X; if (!no_init && con_out_ours == con_out) SetConsoleScreenBufferSize(con_out, size); pos_init(); wscroll = (sc_height + 1) / 2; screen_trashed(); } #endif } /* * Goto a specific line on the screen. */ public void goto_line(int sindex) { assert_interactive(); #if !MSDOS_COMPILER ltputs(tgoto(sc_move, 0, sindex), 1, putchr); #else flush(); _settextposition(sindex+1, 1); #endif } #if MSDOS_COMPILER==MSOFTC || MSDOS_COMPILER==BORLANDC /* * Create an alternate screen which is all white. * This screen is used to create a "flash" effect, by displaying it * briefly and then switching back to the normal screen. * {{ Yuck! There must be a better way to get a visual bell. }} */ static void create_flash(void) { #if MSDOS_COMPILER==MSOFTC struct videoconfig w; char *blanks; int row, col; _getvideoconfig(&w); videopages = w.numvideopages; if (videopages < 2) { at_enter(AT_STANDOUT); at_exit(); } else { _setactivepage(1); at_enter(AT_STANDOUT); blanks = (char *) ecalloc(w.numtextcols, sizeof(char)); for (col = 0; col < w.numtextcols; col++) blanks[col] = ' '; for (row = w.numtextrows; row > 0; row--) _outmem(blanks, w.numtextcols); _setactivepage(0); _setvisualpage(0); free(blanks); at_exit(); } #else #if MSDOS_COMPILER==BORLANDC int n; whitescreen = (unsigned short *) malloc(sc_width * sc_height * sizeof(short)); if (whitescreen == NULL) return; for (n = 0; n < sc_width * sc_height; n++) whitescreen[n] = 0x7020; #endif #endif flash_created = 1; } #endif /* MSDOS_COMPILER */ /* * Output the "visual bell", if there is one. */ public void vbell(void) { if (no_vbell) return; #if !MSDOS_COMPILER if (*sc_visual_bell == '\0') return; ltputs(sc_visual_bell, sc_height, putchr); #else #if MSDOS_COMPILER==DJGPPC ScreenVisualBell(); #else #if MSDOS_COMPILER==MSOFTC /* * Create a flash screen on the second video page. * Switch to that page, then switch back. */ if (!flash_created) create_flash(); if (videopages < 2) return; _setvisualpage(1); delay(100); _setvisualpage(0); #else #if MSDOS_COMPILER==BORLANDC unsigned short *currscreen; /* * Get a copy of the current screen. * Display the flash screen. * Then restore the old screen. */ if (!flash_created) create_flash(); if (whitescreen == NULL) return; currscreen = (unsigned short *) malloc(sc_width * sc_height * sizeof(short)); if (currscreen == NULL) return; gettext(1, 1, sc_width, sc_height, currscreen); puttext(1, 1, sc_width, sc_height, whitescreen); delay(100); puttext(1, 1, sc_width, sc_height, currscreen); free(currscreen); #else #if MSDOS_COMPILER==WIN32C /* paint screen with an inverse color */ clear(); /* leave it displayed for 100 msec. */ Sleep(100); /* restore with a redraw */ repaint(); #endif #endif #endif #endif #endif } /* * Make a noise. */ static void beep(void) { #if !MSDOS_COMPILER putchr(CONTROL('G')); #else #if MSDOS_COMPILER==WIN32C MessageBeep(0); #else write(1, "\7", 1); #endif #endif } /* * Ring the terminal bell. */ public void bell(void) { if (quiet == VERY_QUIET) vbell(); else beep(); } /* * Clear the screen. */ public void clear(void) { assert_interactive(); #if !MSDOS_COMPILER ltputs(sc_clear, sc_height, putchr); #else flush(); #if MSDOS_COMPILER==WIN32C win32_clear(); #else _clearscreen(_GCLEARSCREEN); #endif #endif } /* * Clear from the cursor to the end of the cursor's line. * {{ This must not move the cursor. }} */ public void clear_eol(void) { /* assert_interactive();*/ #if !MSDOS_COMPILER ltputs(sc_eol_clear, 1, putchr); #else #if MSDOS_COMPILER==MSOFTC short top, left; short bot, right; struct rccoord tpos; flush(); /* * Save current state. */ tpos = _gettextposition(); _gettextwindow(&top, &left, &bot, &right); /* * Set a temporary window to the current line, * from the cursor's position to the right edge of the screen. * Then clear that window. */ _settextwindow(tpos.row, tpos.col, tpos.row, sc_width); _clearscreen(_GWINDOW); /* * Restore state. */ _settextwindow(top, left, bot, right); _settextposition(tpos.row, tpos.col); #else #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC flush(); clreol(); #else #if MSDOS_COMPILER==WIN32C DWORD nchars; COORD cpos; CONSOLE_SCREEN_BUFFER_INFO scr; flush(); memset(&scr, 0, sizeof(scr)); GetConsoleScreenBufferInfo(con_out, &scr); cpos.X = scr.dwCursorPosition.X; cpos.Y = scr.dwCursorPosition.Y; curr_attr = MAKEATTR(nm_fg_color, nm_bg_color); FillConsoleOutputAttribute(con_out, curr_attr, scr.dwSize.X - cpos.X, cpos, &nchars); FillConsoleOutputCharacter(con_out, ' ', scr.dwSize.X - cpos.X, cpos, &nchars); #endif #endif #endif #endif } /* * Clear the current line. * Clear the screen if there's off-screen memory below the display. */ static void clear_eol_bot(void) { assert_interactive(); #if MSDOS_COMPILER clear_eol(); #else if (below_mem) ltputs(sc_eos_clear, 1, putchr); else ltputs(sc_eol_clear, 1, putchr); #endif } /* * Clear the bottom line of the display. * Leave the cursor at the beginning of the bottom line. */ public void clear_bot(void) { /* * If we're in a non-normal attribute mode, temporarily exit * the mode while we do the clear. Some terminals fill the * cleared area with the current attribute. */ if (oldbot) lower_left(); else line_left(); if (attrmode == AT_NORMAL) clear_eol_bot(); else { int saved_attrmode = attrmode; at_exit(); clear_eol_bot(); at_enter(saved_attrmode); } } /* * Color string may be "x[y]" where x and y are 4-bit color chars, * or "N[.M]" where N and M are decimal integers> * Any of x,y,N,M may also be "-" to mean "unchanged". */ /* * Parse a 4-bit color char. */ static int parse_color4(char ch) { switch (ch) { case 'k': return 0; case 'r': return CV_RED; case 'g': return CV_GREEN; case 'y': return CV_RED|CV_GREEN; case 'b': return CV_BLUE; case 'm': return CV_RED|CV_BLUE; case 'c': return CV_GREEN|CV_BLUE; case 'w': return CV_RED|CV_GREEN|CV_BLUE; case 'K': return 0|CV_BRIGHT; case 'R': return CV_RED|CV_BRIGHT; case 'G': return CV_GREEN|CV_BRIGHT; case 'Y': return CV_RED|CV_GREEN|CV_BRIGHT; case 'B': return CV_BLUE|CV_BRIGHT; case 'M': return CV_RED|CV_BLUE|CV_BRIGHT; case 'C': return CV_GREEN|CV_BLUE|CV_BRIGHT; case 'W': return CV_RED|CV_GREEN|CV_BLUE|CV_BRIGHT; case '-': return CV_NOCHANGE; default: return CV_ERROR; } } /* * Parse a color as a decimal integer. */ static int parse_color6(constant char **ps) { if (**ps == '-') { (*ps)++; return CV_NOCHANGE; } else { constant char *os = *ps; int color = lstrtoic(os, ps, 10); if (color < 0 || *ps == os) return CV_ERROR; return color; } } /* * Parse a color pair and return the foreground/background/attribute values. * Return type of color specifier: * CV_4BIT: fg/bg values are OR of CV_{RGB} bits. * CV_6BIT: fg/bg values are integers entered by user. */ public COLOR_TYPE parse_color(constant char *str, mutable int *p_fg, mutable int *p_bg, mutable CHAR_ATTR *p_cattr) { int fg; int bg = CV_ERROR; CHAR_ATTR cattr = CATTR_NULL; COLOR_TYPE type = CT_NULL; if (str == NULL || *str == '\0') return CT_NULL; if (*str == '+') str++; /* ignore leading + */ fg = parse_color4(*str); if (fg != CV_ERROR) { if (str[1] == '\0' || strchr("*~_&dsul", str[1]) != NULL) { bg = CV_NOCHANGE; str++; /* skip the fg char */ } else { bg = parse_color4(str[1]); if (bg != CV_ERROR) str += 2; /* skip both fg and bg chars */ } } if (fg != CV_ERROR && bg != CV_ERROR) type = CT_4BIT; else { fg = (*str == '.') ? CV_NOCHANGE : parse_color6(&str); if (fg != CV_ERROR) { if (*str != '.') bg = CV_NOCHANGE; else { str++; /* skip the dot */ bg = parse_color6(&str); } } if (fg != CV_ERROR && bg != CV_ERROR) type = CT_6BIT; } if (type != CT_NULL) { for (;; str++) { if (*str == '*' || *str == 'd') cattr |= CATTR_BOLD; else if (*str == '~' || *str == 's') cattr |= CATTR_STANDOUT; else if (*str == '_' || *str == 'u') cattr |= CATTR_UNDERLINE; else if (*str == '&' || *str == 'l') /* can't use 'k' because of conflict with "black" */ cattr |= CATTR_BLINK; else break; } if (p_fg != NULL) *p_fg = fg; if (p_bg != NULL) *p_bg = bg; if (p_cattr != NULL) *p_cattr = cattr; } return type; } #if !MSDOS_COMPILER static int sgr_color(int color) { switch (color) { case 0: return 30; case CV_RED: return 31; case CV_GREEN: return 32; case CV_RED|CV_GREEN: return 33; case CV_BLUE: return 34; case CV_RED|CV_BLUE: return 35; case CV_GREEN|CV_BLUE: return 36; case CV_RED|CV_GREEN|CV_BLUE: return 37; case CV_BRIGHT: return 90; case CV_RED|CV_BRIGHT: return 91; case CV_GREEN|CV_BRIGHT: return 92; case CV_RED|CV_GREEN|CV_BRIGHT: return 93; case CV_BLUE|CV_BRIGHT: return 94; case CV_RED|CV_BLUE|CV_BRIGHT: return 95; case CV_GREEN|CV_BLUE|CV_BRIGHT: return 96; case CV_RED|CV_GREEN|CV_BLUE|CV_BRIGHT: return 97; default: return color; } } static void tput_fmt(constant char *fmt, int color, int (*f_putc)(int)) { char buf[INT_STRLEN_BOUND(int)+16]; if (color == attrcolor) return; SNPRINTF1(buf, sizeof(buf), fmt, color); ltputs(buf, 1, f_putc); attrcolor = color; } static void tput_char_cattr(CHAR_ATTR cattr, int (*f_putc)(int)) { if (cattr & CATTR_UNDERLINE) ltputs(sc_u_in, 1, f_putc); if (cattr & CATTR_BOLD) ltputs(sc_b_in, 1, f_putc); if (cattr & CATTR_BLINK) ltputs(sc_bl_in, 1, f_putc); if (cattr & CATTR_STANDOUT) ltputs(sc_s_in, 1, f_putc); } static void tput_color(constant char *str, int (*f_putc)(int)) { int fg; int bg; CHAR_ATTR cattr; if (str != NULL && strcmp(str, "*") == 0) { /* Special case: reset to normal */ tput_fmt(ESCS"[m", -1, f_putc); return; } switch (parse_color(str, &fg, &bg, &cattr)) { case CT_4BIT: if (fg >= 0) tput_fmt(ESCS"[%dm", sgr_color(fg), f_putc); if (bg >= 0) tput_fmt(ESCS"[%dm", sgr_color(bg)+10, f_putc); tput_char_cattr(cattr, f_putc); break; case CT_6BIT: if (fg >= 0) tput_fmt(ESCS"[38;5;%dm", fg, f_putc); if (bg >= 0) tput_fmt(ESCS"[48;5;%dm", bg, f_putc); tput_char_cattr(cattr, f_putc); break; default: break; } } static void tput_inmode(constant char *mode_str, int attr, int attr_bit, int (*f_putc)(int)) { constant char *color_str; if ((attr & attr_bit) == 0) return; color_str = get_color_map(attr_bit); if (color_str == NULL || *color_str == '\0' || *color_str == '+') { ltputs(mode_str, 1, f_putc); if (color_str == NULL || *color_str++ != '+') return; } /* Color overrides mode string */ tput_color(color_str, f_putc); } static void tput_outmode(constant char *mode_str, int attr_bit, int (*f_putc)(int)) { if ((attrmode & attr_bit) == 0) return; ltputs(mode_str, 1, f_putc); } #else /* MSDOS_COMPILER */ #if MSDOS_COMPILER==WIN32C static lbool WIN32put_fmt(constant char *fmt, int color) { char buf[INT_STRLEN_BOUND(int)+16]; int len = (size_t) SNPRINTF1(buf, sizeof(buf), fmt, color); if (len > 0) WIN32textout(buf, (size_t) len); return TRUE; } static void win_set_cattr(CHAR_ATTR cattr) { if (cattr & CATTR_UNDERLINE) WIN32textout(ESCS"[4m", 4); if (cattr & CATTR_BOLD) WIN32textout(ESCS"[1m", 4); if (cattr & CATTR_BLINK) WIN32textout(ESCS"[5m", 4); if (cattr & CATTR_STANDOUT) WIN32textout(ESCS"[7m", 4); } #endif static lbool win_set_color(int attr) { int fg; int bg; CHAR_ATTR cattr; lbool out = FALSE; constant char *str = get_color_map(attr); if (str == NULL || str[0] == '\0') return FALSE; switch (parse_color(str, &fg, &bg, &cattr)) { case CT_4BIT: if (fg >= 0 && bg >= 0) { SETCOLORS(fg, bg); out = TRUE; } else if (fg >= 0) { SET_FG_COLOR(fg); out = TRUE; } else if (bg >= 0) { SET_BG_COLOR(bg); out = TRUE; } #if MSDOS_COMPILER==WIN32C if (vt_enabled) win_set_cattr(cattr); #endif break; #if MSDOS_COMPILER==WIN32C case CT_6BIT: if (vt_enabled) { if (fg > 0) out = WIN32put_fmt(ESCS"[38;5;%dm", fg); if (bg > 0) out = WIN32put_fmt(ESCS"[48;5;%dm", bg); win_set_cattr(cattr); } break; #endif default: break; } return out; } #endif /* MSDOS_COMPILER */ public void at_enter(int attr) { attr = apply_at_specials(attr); #if !MSDOS_COMPILER /* The one with the most priority is last. */ tput_inmode(sc_u_in, attr, AT_UNDERLINE, putchr); tput_inmode(sc_b_in, attr, AT_BOLD, putchr); tput_inmode(sc_bl_in, attr, AT_BLINK, putchr); /* Don't use standout and color at the same time. */ if (use_color && (attr & AT_COLOR)) tput_color(get_color_map(attr), putchr); else tput_inmode(sc_s_in, attr, AT_STANDOUT, putchr); #else flush(); /* The one with the most priority is first. */ if ((attr & AT_COLOR) && use_color) { win_set_color(attr); } else if (attr & AT_STANDOUT) { SETCOLORS(so_fg_color, so_bg_color); } else if (attr & AT_BLINK) { SETCOLORS(bl_fg_color, bl_bg_color); } else if (attr & AT_BOLD) { SETCOLORS(bo_fg_color, bo_bg_color); } else if (attr & AT_UNDERLINE) { SETCOLORS(ul_fg_color, ul_bg_color); } #endif attrmode = attr; } public void at_exit(void) { #if !MSDOS_COMPILER /* Undo things in the reverse order we did them. */ tput_color("*", putchr); tput_outmode(sc_s_out, AT_STANDOUT, putchr); tput_outmode(sc_bl_out, AT_BLINK, putchr); tput_outmode(sc_b_out, AT_BOLD, putchr); tput_outmode(sc_u_out, AT_UNDERLINE, putchr); #else flush(); SETCOLORS(nm_fg_color, nm_bg_color); #endif attrmode = AT_NORMAL; } public void at_switch(int attr) { int new_attrmode = apply_at_specials(attr); int ignore_modes = AT_ANSI; if ((new_attrmode & ~ignore_modes) != (attrmode & ~ignore_modes)) { at_exit(); at_enter(attr); } } public lbool is_at_equiv(int attr1, int attr2) { attr1 = apply_at_specials(attr1); attr2 = apply_at_specials(attr2); return (attr1 == attr2); } public int apply_at_specials(int attr) { if (attr & AT_BINARY) attr |= binattr; if (attr & AT_HILITE) attr |= AT_STANDOUT; attr &= ~(AT_BINARY|AT_HILITE); return attr; } /* * Output a plain backspace, without erasing the previous char. */ public void putbs(void) { if (termcap_debug) putstr(""); else { #if !MSDOS_COMPILER ltputs(sc_backspace, 1, putchr); #else int row, col; flush(); { #if MSDOS_COMPILER==MSOFTC struct rccoord tpos; tpos = _gettextposition(); row = tpos.row; col = tpos.col; #else #if MSDOS_COMPILER==BORLANDC || MSDOS_COMPILER==DJGPPC row = wherey(); col = wherex(); #else #if MSDOS_COMPILER==WIN32C CONSOLE_SCREEN_BUFFER_INFO scr; GetConsoleScreenBufferInfo(con_out, &scr); row = scr.dwCursorPosition.Y - scr.srWindow.Top + 1; col = scr.dwCursorPosition.X - scr.srWindow.Left + 1; #endif #endif #endif } if (col <= 1) return; _settextposition(row, col-1); #endif /* MSDOS_COMPILER */ } } #if MSDOS_COMPILER==WIN32C #define WIN32_MAX_REPEAT 3 #define LAST_DOWN_COUNT 8 static LWCHAR last_downs[LAST_DOWN_COUNT] = { 0 }; static int last_down_index = 0; static LWCHAR hi_surr = 0; typedef struct XINPUT_RECORD { INPUT_RECORD ir; LWCHAR ichar; /* because ir...UnicodeChar is only 16 bits */ } XINPUT_RECORD; typedef struct WIN32_CHAR { struct WIN32_CHAR *wc_next; char wc_ch; } WIN32_CHAR; static WIN32_CHAR *win32_queue = NULL; /* * Is the win32_queue nonempty? */ static int win32_queued_char(void) { return (win32_queue != NULL); } /* * Push a char onto the back of the win32_queue. */ static void win32_enqueue(char ch) { WIN32_CHAR *wch = (WIN32_CHAR *) ecalloc(1, sizeof(WIN32_CHAR)); wch->wc_ch = ch; wch->wc_next = NULL; if (win32_queue == NULL) win32_queue = wch; else { WIN32_CHAR *pch; for (pch = win32_queue; pch->wc_next != NULL; pch = pch->wc_next) continue; pch->wc_next = wch; } } /* * Push a char onto the front of the win32_queue. * Makes the next call to WIN32getch return ch. */ public void WIN32ungetch(int ch) { WIN32_CHAR *wch = (WIN32_CHAR *) ecalloc(1, sizeof(WIN32_CHAR)); wch->wc_ch = ch; wch->wc_next = win32_queue; win32_queue = wch; } /* * Get a char from the front of the win32_queue. */ static char win32_get_queue(void) { WIN32_CHAR *wch = win32_queue; char ch = wch->wc_ch; win32_queue = wch->wc_next; free(wch); return ch; } /* * Handle a mouse input event. */ static lbool win32_mouse_event(XINPUT_RECORD *xip) { char b; if (!mousecap || xip->ir.EventType != MOUSE_EVENT || xip->ir.Event.MouseEvent.dwEventFlags == MOUSE_MOVED) return (FALSE); /* Generate an X11 mouse sequence from the mouse event. */ /* TODO: switch to the 1006 protocol to allow specific-button-up reports */ switch (xip->ir.Event.MouseEvent.dwEventFlags) { case 0: /* press or release */ if (xip->ir.Event.MouseEvent.dwButtonState == 0) b = X11MOUSE_OFFSET + X11MOUSE_BUTTON_REL; else if (xip->ir.Event.MouseEvent.dwButtonState == 1) /* leftmost */ b = X11MOUSE_OFFSET + X11MOUSE_BUTTON1; else if (xip->ir.Event.MouseEvent.dwButtonState == 2) /* rightmost */ b = X11MOUSE_OFFSET + X11MOUSE_BUTTON3; else if (xip->ir.Event.MouseEvent.dwButtonState == 4) /* middle ("next-to-leftmost") */ b = X11MOUSE_OFFSET + X11MOUSE_BUTTON2; else /* don't bother to figure out what changed */ return (FALSE); break; case MOUSE_WHEELED: b = X11MOUSE_OFFSET + (((int)xip->ir.Event.MouseEvent.dwButtonState < 0) ? X11MOUSE_WHEEL_DOWN : X11MOUSE_WHEEL_UP); break; default: return (FALSE); } /* {{ TODO: change to X11 1006 format. }} */ win32_enqueue(ESC); win32_enqueue('['); win32_enqueue('M'); win32_enqueue(b); win32_enqueue(X11MOUSE_OFFSET + xip->ir.Event.MouseEvent.dwMousePosition.X + 1); win32_enqueue(X11MOUSE_OFFSET + xip->ir.Event.MouseEvent.dwMousePosition.Y + 1); return (TRUE); } static void set_last_down(LWCHAR ch) { if (ch == 0) return; last_downs[last_down_index] = ch; if (++last_down_index >= LAST_DOWN_COUNT) last_down_index = 0; } static LWCHAR *find_last_down(LWCHAR ch) { int i; for (i = 0; i < LAST_DOWN_COUNT; ++i) if (last_downs[i] == ch) return &last_downs[i]; return NULL; } /* * Get an input char from an INPUT_RECORD and store in xip->ichar. * Handles surrogate chars, and KeyUp without previous corresponding KeyDown. */ static lbool win32_get_ichar(XINPUT_RECORD *xip) { LWCHAR ch = xip->ir.Event.KeyEvent.uChar.UnicodeChar; xip->ichar = ch; if (!is_ascii_char(ch)) { int is_down = xip->ir.Event.KeyEvent.bKeyDown; LWCHAR *last_down = find_last_down(ch); if (last_down == NULL) { /* key was up */ if (is_down) { /* key was up, now is down */ set_last_down(ch); } else { /* key up without previous down: pretend this is a down. */ xip->ir.Event.KeyEvent.bKeyDown = 1; } } else if (!is_down) { /* key was down, now is up */ *last_down = 0; /* use this last_down only once */ } if (ch >= 0xD800 && ch < 0xDC00) { /* high surrogate */ hi_surr = 0x10000 + ((ch - 0xD800) << 10); return (FALSE); /* get next input, which should be the low surrogate */ } if (ch >= 0xDC00 && ch < 0xE000) { /* low surrogate */ xip->ichar = hi_surr + (ch - 0xDC00); hi_surr = 0; } } return (TRUE); } /* * Handle a scan code (non-ASCII) key input. */ static lbool win32_scan_code(XINPUT_RECORD *xip) { int scan = -1; if (xip->ir.Event.KeyEvent.dwControlKeyState & (LEFT_CTRL_PRESSED | RIGHT_CTRL_PRESSED)) { switch (xip->ir.Event.KeyEvent.wVirtualScanCode) { case PCK_RIGHT: /* right arrow */ scan = PCK_CTL_RIGHT; break; case PCK_LEFT: /* left arrow */ scan = PCK_CTL_LEFT; break; case PCK_DELETE: /* delete */ scan = PCK_CTL_DELETE; break; } } else if (xip->ir.Event.KeyEvent.dwControlKeyState & SHIFT_PRESSED) { if (xip->ichar == '\t') scan = PCK_SHIFT_TAB; } if (scan < 0 && xip->ichar == 0) scan = xip->ir.Event.KeyEvent.wVirtualScanCode; if (scan < 0) return (FALSE); /* * An extended key returns a 2 byte sequence consisting of * a zero byte followed by the scan code. */ win32_enqueue('\0'); win32_enqueue(scan); return (TRUE); } /* * Handle a key input event. */ static lbool win32_key_event(XINPUT_RECORD *xip) { int repeat; char utf8[UTF8_MAX_LENGTH]; char *up; if (xip->ir.EventType != KEY_EVENT || ((xip->ir.Event.KeyEvent.dwControlKeyState & (RIGHT_ALT_PRESSED|LEFT_CTRL_PRESSED)) == (RIGHT_ALT_PRESSED|LEFT_CTRL_PRESSED) && xip->ir.Event.KeyEvent.uChar.UnicodeChar == 0) || (xip->ir.Event.KeyEvent.wVirtualScanCode == 0 && xip->ir.Event.KeyEvent.uChar.UnicodeChar == 0) || xip->ir.Event.KeyEvent.wVirtualScanCode == PCK_CAPS_LOCK || xip->ir.Event.KeyEvent.wVirtualScanCode == PCK_NUM_LOCK || (xip->ir.Event.KeyEvent.wVirtualKeyCode == VK_MENU && xip->ir.Event.KeyEvent.uChar.UnicodeChar == 0) || xip->ir.Event.KeyEvent.wVirtualKeyCode == VK_KANJI || xip->ir.Event.KeyEvent.wVirtualKeyCode == VK_SHIFT || xip->ir.Event.KeyEvent.wVirtualKeyCode == VK_CONTROL) return (FALSE); if (!win32_get_ichar(xip)) return (FALSE); if (!xip->ir.Event.KeyEvent.bKeyDown) return (FALSE); if (win32_scan_code(xip)) return (TRUE); repeat = xip->ir.Event.KeyEvent.wRepeatCount; if (repeat > WIN32_MAX_REPEAT) repeat = WIN32_MAX_REPEAT; up = utf8; put_wchar(&up, xip->ichar); for (; repeat > 0; --repeat) { constant char *p; for (p = utf8; p < up; ++p) win32_enqueue(*p); } return (TRUE); } /* * Determine whether an input character is waiting to be read. */ public lbool win32_kbhit(void) { XINPUT_RECORD xip; if (win32_queued_char()) return (TRUE); for (;;) { DWORD nread; DWORD console_input_mode; /* * When an input pipe closes, cmd may reset the console mode, * so set the mode every time we read input. */ if (GetConsoleMode(tty, &console_input_mode) && console_input_mode != curr_console_input_mode) SetConsoleMode(tty, curr_console_input_mode); PeekConsoleInputW(tty, &xip.ir, 1, &nread); if (nread == 0) return (FALSE); ReadConsoleInputW(tty, &xip.ir, 1, &nread); if (nread == 0) return (FALSE); if (win32_mouse_event(&xip) || win32_key_event(&xip)) break; } return (TRUE); } /* * Read a character from the keyboard. */ public char WIN32getch(void) { while (!win32_kbhit()) { Sleep(20); if (ABORT_SIGS()) return ('\003'); } return (win32_get_queue()); } public void win32_getch_clear(void) { while (win32_kbhit()) (void) WIN32getch(); } #endif /* MSDOS_COMPILER==WIN32C */ #if MSDOS_COMPILER /* */ public void WIN32setcolors(int fg, int bg) { SETCOLORS(fg, bg); } /* */ public void WIN32textout(constant char *text, size_t len) { #if MSDOS_COMPILER==WIN32C DWORD written; if (utf_mode == 2) { /* * We've got UTF-8 text in a non-UTF-8 console. Convert it to * wide and use WriteConsoleW. * Biggest input len is OUTBUF_SIZE of obuf from win_flush, * which is also the biggest output count if it's ASCII. * "static" wtext is not a state - only avoid 16K on stack. */ static WCHAR wtext[OUTBUF_SIZE]; len = MultiByteToWideChar(CP_UTF8, 0, text, len, wtext, countof(wtext)); WriteConsoleW(con_out, wtext, len, &written, NULL); } else WriteConsole(con_out, text, len, &written, NULL); #else char buf[2048]; if (len >= sizeof(buf)) len = sizeof(buf) - 1; memcpy(buf, text, len); buf[len] = 0; cputs(buf); #endif } #endif less-668/scrsize.c0000444060175306017530000000607214700607645013233 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * This program is used to determine the screen dimensions on OS/2 systems. * Adapted from code written by Kyosuke Tokoro (NBG01720@nifty.ne.jp). */ /* * When I wrote this routine, I consulted some part of the source code * of the xwininfo utility by X Consortium. * * Copyright (c) 1987, X Consortium * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * * Except as contained in this notice, the name of the X Consortium shall not * be used in advertising or otherwise to promote the sale, use or other * dealings in this Software without prior written authorization from the X * Consortium. */ #include #include #include #include static int get_winsize(dpy, window, p_width, p_height) Display *dpy; Window window; int *p_width; int *p_height; { XWindowAttributes win_attributes; XSizeHints hints; long longjunk; if (!XGetWindowAttributes(dpy, window, &win_attributes)) return 1; if (!XGetWMNormalHints(dpy, window, &hints, &longjunk)) return 1; if (!(hints.flags & PResizeInc)) return 1; if (hints.width_inc == 0 || hints.height_inc == 0) return 1; if (!(hints.flags & (PBaseSize|PMinSize))) return 1; if (hints.flags & PBaseSize) { win_attributes.width -= hints.base_width; win_attributes.height -= hints.base_height; } else { win_attributes.width -= hints.min_width; win_attributes.height -= hints.min_height; } *p_width = win_attributes.width / hints.width_inc; *p_height = win_attributes.height / hints.height_inc; return 0; } int main(argc, argv) int argc; char *argv[]; { char *cp; Display *dpy; int size[2]; _scrsize(size); cp = getenv("WINDOWID"); if (cp != NULL) { dpy = XOpenDisplay(NULL); if (dpy != NULL) { get_winsize(dpy, (Window) atol(cp), &size[0], &size[1]); XCloseDisplay(dpy); } } printf("%i %i\n", size[0], size[1]); return (0); } less-668/search.c0000444060175306017530000015751114700607631013016 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Routines to search a file for a pattern. */ #include "less.h" #include "position.h" #include "charset.h" #define MINPOS(a,b) (((a) < (b)) ? (a) : (b)) #define MAXPOS(a,b) (((a) > (b)) ? (a) : (b)) extern int sigs; extern int how_search; extern int caseless; extern int linenums; extern int jump_sline; extern int bs_mode; extern int proc_backspace; extern int proc_return; extern int ctldisp; extern int status_col; extern void *ml_search; extern POSITION start_attnpos; extern POSITION end_attnpos; extern int utf_mode; extern int sc_width; extern int sc_height; extern int hshift; extern int match_shift; extern int nosearch_header_lines; extern int nosearch_header_cols; extern int header_lines; extern int header_cols; extern LWCHAR rscroll_char; #if HILITE_SEARCH extern int hilite_search; extern size_t size_linebuf; extern lbool squished; extern int can_goto_line; extern lbool no_eof_bell; static lbool hide_hilite; static POSITION prep_startpos; static POSITION prep_endpos; public POSITION header_start_pos = NULL_POSITION; static POSITION header_end_pos; public lbool search_wrapped = FALSE; #if OSC8_LINK public POSITION osc8_linepos = NULL_POSITION; public POSITION osc8_match_start = NULL_POSITION; public POSITION osc8_match_end = NULL_POSITION; public POSITION osc8_params_start = NULL_POSITION; public POSITION osc8_params_end = NULL_POSITION; public POSITION osc8_uri_start = NULL_POSITION; public POSITION osc8_uri_end = NULL_POSITION; public POSITION osc8_text_start = NULL_POSITION; public POSITION osc8_text_end = NULL_POSITION; char *osc8_path = NULL; char *osc8_uri = NULL; constant char *osc8_search_param = NULL; #endif /* * Structures for maintaining a set of ranges for hilites and filtered-out * lines. Each range is stored as a node within a red-black tree, and we * try to extend existing ranges (without creating overlaps) rather than * create new nodes if possible. We remember the last node found by a * search for constant-time lookup if the next search is near enough to * the previous. To aid that, we overlay a secondary doubly-linked list * on top of the red-black tree so we can find the preceding/succeeding * nodes also in constant time. * * Each node is allocated from a series of pools, each pool double the size * of the previous (for amortised constant time allocation). Since our only * tree operations are clear and node insertion, not node removal, we don't * need to maintain a usage bitmap or freelist and can just return nodes * from the pool in-order until capacity is reached. */ struct hilite { POSITION hl_startpos; POSITION hl_endpos; int hl_attr; }; struct hilite_node { struct hilite_node *parent; struct hilite_node *left; struct hilite_node *right; struct hilite_node *prev; struct hilite_node *next; int red; struct hilite r; }; struct hilite_storage { size_t capacity; size_t used; struct hilite_storage *next; struct hilite_node *nodes; }; struct hilite_tree { struct hilite_storage *first; struct hilite_storage *current; struct hilite_node *root; struct hilite_node *lookaside; }; #define HILITE_INITIALIZER() { NULL, NULL, NULL, NULL } #define HILITE_LOOKASIDE_STEPS 2 static struct hilite_tree hilite_anchor = HILITE_INITIALIZER(); static struct hilite_tree filter_anchor = HILITE_INITIALIZER(); static struct pattern_info *filter_infos = NULL; #endif /* * These are the static variables that represent the "remembered" * search pattern and filter pattern. */ struct pattern_info { PATTERN_TYPE compiled; char* text; int search_type; lbool is_ucase_pattern; struct pattern_info *next; }; #if NO_REGEX #define info_compiled(info) ((void*)0) #else #define info_compiled(info) ((info)->compiled) #endif static struct pattern_info search_info; public int is_caseless; /* * Are there any uppercase letters in this string? */ static lbool is_ucase(constant char *str) { constant char *str_end = str + strlen(str); LWCHAR ch; while (str < str_end) { ch = step_charc(&str, +1, str_end); if (IS_UPPER(ch)) return (TRUE); } return (FALSE); } /* * Discard a saved pattern. */ static void clear_pattern(struct pattern_info *info) { if (info->text != NULL) free(info->text); info->text = NULL; #if !NO_REGEX uncompile_pattern(&info->compiled); #endif } /* * Compile and save a search pattern. */ static int set_pattern(struct pattern_info *info, constant char *pattern, int search_type, int show_error) { /* * Ignore case if -I is set OR * -i is set AND the pattern is all lowercase. */ info->is_ucase_pattern = (pattern == NULL) ? FALSE : is_ucase(pattern); is_caseless = (info->is_ucase_pattern && caseless != OPT_ONPLUS) ? 0 : caseless; #if !NO_REGEX if (pattern == NULL) SET_NULL_PATTERN(info->compiled); else if (compile_pattern(pattern, search_type, show_error, &info->compiled) < 0) return -1; #endif /* Pattern compiled successfully; save the text too. */ if (info->text != NULL) free(info->text); info->text = NULL; if (pattern != NULL) { info->text = (char *) ecalloc(1, strlen(pattern)+1); strcpy(info->text, pattern); } info->search_type = search_type; return 0; } /* * Initialize saved pattern to nothing. */ static void init_pattern(struct pattern_info *info) { SET_NULL_PATTERN(info->compiled); info->text = NULL; info->search_type = 0; info->next = NULL; } /* * Initialize search variables. */ public void init_search(void) { init_pattern(&search_info); } /* * Determine which text conversions to perform before pattern matching. */ public int get_cvt_ops(int search_type) { int ops = 0; if (is_caseless && (!re_handles_caseless || (search_type & SRCH_NO_REGEX))) ops |= CVT_TO_LC; if (proc_backspace == OPT_ON || (bs_mode == BS_SPECIAL && proc_backspace == OPT_OFF)) ops |= CVT_BS; if (proc_return == OPT_ON || (bs_mode != BS_CONTROL && proc_backspace == OPT_OFF)) ops |= CVT_CRLF; if (ctldisp == OPT_ONPLUS) ops |= CVT_ANSI; return (ops); } /* * Is there a previous (remembered) search pattern? */ static int prev_pattern(struct pattern_info *info) { #if !NO_REGEX if ((info->search_type & SRCH_NO_REGEX) == 0) return (!is_null_pattern(info->compiled)); #endif return (info->text != NULL); } #if HILITE_SEARCH /* * Repaint the hilites currently displayed on the screen. * Repaint each line which contains highlighted text. * If on==0, force all hilites off. */ public void repaint_hilite(lbool on) { int sindex; POSITION pos; lbool save_hide_hilite; if (squished) repaint(); save_hide_hilite = hide_hilite; if (!on) { if (hide_hilite) return; hide_hilite = TRUE; } if (!can_goto_line) { repaint(); hide_hilite = save_hide_hilite; return; } for (sindex = TOP; sindex < TOP + sc_height-1; sindex++) { pos = position(sindex); if (pos == NULL_POSITION) continue; (void) forw_line(pos); goto_line(sindex); clear_eol(); put_line(); } overlay_header(); lower_left(); hide_hilite = save_hide_hilite; } #endif /* * Clear the attn hilite. */ public void clear_attn(void) { #if HILITE_SEARCH int sindex; POSITION old_start_attnpos; POSITION old_end_attnpos; POSITION pos; POSITION epos; int moved = 0; if (start_attnpos == NULL_POSITION) return; old_start_attnpos = start_attnpos; old_end_attnpos = end_attnpos; start_attnpos = end_attnpos = NULL_POSITION; if (!can_goto_line) { repaint(); return; } if (squished) repaint(); for (sindex = TOP; sindex < TOP + sc_height-1; sindex++) { pos = position(sindex); if (pos == NULL_POSITION) continue; epos = position(sindex+1); if (pos <= old_end_attnpos && (epos == NULL_POSITION || epos > old_start_attnpos)) { (void) forw_line(pos); goto_line(sindex); clear_eol(); put_line(); moved = 1; } } if (overlay_header()) moved = 1; if (moved) lower_left(); #endif } /* * Toggle or clear search string highlighting. */ public void undo_search(lbool clear) { clear_pattern(&search_info); #if OSC8_LINK osc8_linepos = NULL_POSITION; #endif #if HILITE_SEARCH if (clear) { clr_hilite(); } else { if (hilite_anchor.first == NULL) { error("No previous regular expression", NULL_PARG); return; } hide_hilite = !hide_hilite; } repaint_hilite(TRUE); #endif } #if HILITE_SEARCH /* * Clear the hilite list. */ public void clr_hlist(struct hilite_tree *anchor) { struct hilite_storage *hls; struct hilite_storage *nexthls; for (hls = anchor->first; hls != NULL; hls = nexthls) { nexthls = hls->next; free((void*)hls->nodes); free((void*)hls); } anchor->first = NULL; anchor->current = NULL; anchor->root = NULL; anchor->lookaside = NULL; prep_startpos = prep_endpos = NULL_POSITION; } public void clr_hilite(void) { clr_hlist(&hilite_anchor); } public void clr_filter(void) { clr_hlist(&filter_anchor); } /* * Find the node covering pos, or the node after it if no node covers it, * or return NULL if pos is after the last range. Remember the found node, * to speed up subsequent searches for the same or similar positions (if * we return NULL, remember the last node.) */ static struct hilite_node* hlist_find(struct hilite_tree *anchor, POSITION pos) { struct hilite_node *n, *m; if (anchor->lookaside) { int steps = 0; int hit = 0; n = anchor->lookaside; for (;;) { if (pos < n->r.hl_endpos) { if (n->prev == NULL || pos >= n->prev->r.hl_endpos) { hit = 1; break; } } else if (n->next == NULL) { n = NULL; hit = 1; break; } /* * If we don't find the right node within a small * distance, don't keep doing a linear search! */ if (steps >= HILITE_LOOKASIDE_STEPS) break; steps++; if (pos < n->r.hl_endpos) anchor->lookaside = n = n->prev; else anchor->lookaside = n = n->next; } if (hit) return n; } n = anchor->root; m = NULL; while (n != NULL) { if (pos < n->r.hl_startpos) { if (n->left != NULL) { m = n; n = n->left; continue; } break; } if (pos >= n->r.hl_endpos) { if (n->right != NULL) { n = n->right; continue; } if (m != NULL) { n = m; } else { m = n; n = NULL; } } break; } if (n != NULL) anchor->lookaside = n; else if (m != NULL) anchor->lookaside = m; return n; } /* * Should any characters in a specified range be highlighted? */ static int hilited_range_attr(POSITION pos, POSITION epos) { struct hilite_node *n = hlist_find(&hilite_anchor, pos); if (n == NULL) return 0; if (epos != NULL_POSITION && epos <= n->r.hl_startpos) return 0; return n->r.hl_attr; } /* * Set header parameters. */ public void set_header(POSITION pos) { header_start_pos = (header_lines == 0) ? NULL_POSITION : pos; if (header_start_pos != NULL_POSITION) { int ln; for (ln = 0; ln < header_lines; ++ln) { pos = forw_raw_line(pos, NULL, NULL); if (pos == NULL_POSITION) break; } header_end_pos = pos; } } /* * Is a position within the header lines? */ static int pos_in_header(POSITION pos) { return (header_start_pos != NULL_POSITION && pos >= header_start_pos && pos < header_end_pos); } /* * Is a line "filtered" -- that is, should it be hidden? */ public lbool is_filtered(POSITION pos) { struct hilite_node *n; if (ch_getflags() & CH_HELPFILE) return (FALSE); if (pos_in_header(pos)) return (FALSE); n = hlist_find(&filter_anchor, pos); return (n != NULL && pos >= n->r.hl_startpos); } /* * If pos is hidden, return the next position which isn't, otherwise * just return pos. */ public POSITION next_unfiltered(POSITION pos) { struct hilite_node *n; if (ch_getflags() & CH_HELPFILE) return (pos); if (pos_in_header(pos)) return (pos); n = hlist_find(&filter_anchor, pos); while (n != NULL && pos >= n->r.hl_startpos) { pos = n->r.hl_endpos; n = n->next; } return (pos); } /* * If pos is hidden, return the previous position which isn't or 0 if * we're filtered right to the beginning, otherwise just return pos. */ public POSITION prev_unfiltered(POSITION pos) { struct hilite_node *n; if (ch_getflags() & CH_HELPFILE) return (pos); if (pos_in_header(pos)) return (pos); n = hlist_find(&filter_anchor, pos); while (n != NULL && pos >= n->r.hl_startpos) { pos = n->r.hl_startpos; if (pos == 0) break; pos--; n = n->prev; } return (pos); } /* * Set the hshift for the line starting at line_pos so that the string * between start_off and end_off is visible on the screen. */ static void shift_visible(POSITION line_pos, size_t start_off, size_t end_off) { POSITION start_pos = line_pos + start_off; POSITION end_pos = line_pos + end_off; int start_col = col_from_pos(line_pos, start_pos, NULL_POSITION, -1); int end_col = col_from_pos(line_pos, end_pos, start_pos, start_col); int swidth = sc_width - line_pfx_width() - (rscroll_char ? 1 : 0); int new_hshift; if (start_col < 0 || end_col < 0) return; if (end_col < swidth) /* whole string is in first screen */ new_hshift = 0; else if (start_col > hshift && end_col < hshift + swidth) new_hshift = hshift; /* already visible; leave hshift unchanged */ else { int eol_col = col_from_pos(line_pos, NULL_POSITION, end_pos, end_col) - swidth; if (start_col >= eol_col) /* whole string is in last screen */ new_hshift = eol_col; else /* shift it to column match_shift */ new_hshift = (start_col < match_shift) ? 0 : start_col - match_shift; } if (new_hshift != hshift) { hshift = new_hshift; screen_trashed(); } } /* * Should any characters in a specified range be highlighted? * If nohide is nonzero, don't consider hide_hilite. */ public int is_hilited_attr(POSITION pos, POSITION epos, int nohide, int *p_matches) { int attr; if (p_matches != NULL) *p_matches = 0; if (!status_col && start_attnpos != NULL_POSITION && pos <= end_attnpos && (epos == NULL_POSITION || epos > start_attnpos)) /* * The attn line overlaps this range. */ return (AT_HILITE|AT_COLOR_ATTN); #if OSC8_LINK if (osc8_linepos != NULL_POSITION && pos <= osc8_text_end && (epos == NULL_POSITION || epos > osc8_text_start)) return (AT_HILITE|AT_COLOR_SEARCH); #endif attr = hilited_range_attr(pos, epos); if (attr == 0) return (0); if (p_matches == NULL) /* * Kinda kludgy way to recognize that caller is checking for * hilite in status column. In this case we want to return * hilite status even if hiliting is disabled or hidden. */ return (attr); /* * Report matches, even if we're hiding highlights. */ *p_matches = 1; if (hilite_search == 0) /* * Not doing highlighting. */ return (0); if (!nohide && hide_hilite) /* * Highlighting is hidden. */ return (0); return (attr); } /* * Tree node storage: get the current block of nodes if it has spare * capacity, or create a new one if not. */ static struct hilite_storage * hlist_getstorage(struct hilite_tree *anchor) { size_t capacity = 1; struct hilite_storage *s; if (anchor->current) { if (anchor->current->used < anchor->current->capacity) return anchor->current; capacity = anchor->current->capacity * 2; } s = (struct hilite_storage *) ecalloc(1, sizeof(struct hilite_storage)); s->nodes = (struct hilite_node *) ecalloc(capacity, sizeof(struct hilite_node)); s->capacity = capacity; s->used = 0; s->next = NULL; if (anchor->current) anchor->current->next = s; else anchor->first = s; anchor->current = s; return s; } /* * Tree node storage: retrieve a new empty node to be inserted into the * tree. */ static struct hilite_node * hlist_getnode(struct hilite_tree *anchor) { struct hilite_storage *s = hlist_getstorage(anchor); return &s->nodes[s->used++]; } /* * Rotate the tree left around a pivot node. */ static void hlist_rotate_left(struct hilite_tree *anchor, struct hilite_node *n) { struct hilite_node *np = n->parent; struct hilite_node *nr = n->right; struct hilite_node *nrl = n->right->left; if (np != NULL) { if (n == np->left) np->left = nr; else np->right = nr; } else { anchor->root = nr; } nr->left = n; n->right = nrl; nr->parent = np; n->parent = nr; if (nrl != NULL) nrl->parent = n; } /* * Rotate the tree right around a pivot node. */ static void hlist_rotate_right(struct hilite_tree *anchor, struct hilite_node *n) { struct hilite_node *np = n->parent; struct hilite_node *nl = n->left; struct hilite_node *nlr = n->left->right; if (np != NULL) { if (n == np->right) np->right = nl; else np->left = nl; } else { anchor->root = nl; } nl->right = n; n->left = nlr; nl->parent = np; n->parent = nl; if (nlr != NULL) nlr->parent = n; } /* * Add a new hilite to a hilite list. */ static void add_hilite(struct hilite_tree *anchor, struct hilite *hl) { struct hilite_node *p, *n, *u; /* Ignore empty ranges. */ if (hl->hl_startpos >= hl->hl_endpos) return; p = anchor->root; /* Inserting the very first node is trivial. */ if (p == NULL) { n = hlist_getnode(anchor); n->r = *hl; anchor->root = n; anchor->lookaside = n; return; } /* * Find our insertion point. If we come across any overlapping * or adjoining existing ranges, shrink our range and discard * if it become empty. */ for (;;) { if (hl->hl_startpos < p->r.hl_startpos) { if (hl->hl_endpos > p->r.hl_startpos && hl->hl_attr == p->r.hl_attr) hl->hl_endpos = p->r.hl_startpos; if (p->left != NULL) { p = p->left; continue; } break; } if (hl->hl_startpos < p->r.hl_endpos && hl->hl_attr == p->r.hl_attr) { hl->hl_startpos = p->r.hl_endpos; if (hl->hl_startpos >= hl->hl_endpos) return; } if (p->right != NULL) { p = p->right; continue; } break; } /* * Now we're at the right leaf, again check for contiguous ranges * and extend the existing node if possible to avoid the * insertion. Otherwise insert a new node at the leaf. */ if (hl->hl_startpos < p->r.hl_startpos) { if (hl->hl_attr == p->r.hl_attr) { if (hl->hl_endpos == p->r.hl_startpos) { p->r.hl_startpos = hl->hl_startpos; return; } if (p->prev != NULL && p->prev->r.hl_endpos == hl->hl_startpos) { p->prev->r.hl_endpos = hl->hl_endpos; return; } } p->left = n = hlist_getnode(anchor); n->next = p; if (p->prev != NULL) { n->prev = p->prev; p->prev->next = n; } p->prev = n; } else { if (hl->hl_attr == p->r.hl_attr) { if (p->r.hl_endpos == hl->hl_startpos) { p->r.hl_endpos = hl->hl_endpos; return; } if (p->next != NULL && hl->hl_endpos == p->next->r.hl_startpos) { p->next->r.hl_startpos = hl->hl_startpos; return; } } p->right = n = hlist_getnode(anchor); n->prev = p; if (p->next != NULL) { n->next = p->next; p->next->prev = n; } p->next = n; } n->parent = p; n->red = 1; n->r = *hl; /* * The tree is in the correct order and covers the right ranges * now, but may have become unbalanced. Rebalance it using the * standard red-black tree constraints and operations. */ for (;;) { /* case 1 - current is root, root is always black */ if (n->parent == NULL) { n->red = 0; break; } /* case 2 - parent is black, we can always be red */ if (!n->parent->red) break; /* * constraint: because the root must be black, if our * parent is red it cannot be the root therefore we must * have a grandparent */ /* * case 3 - parent and uncle are red, repaint them black, * the grandparent red, and start again at the grandparent. */ u = n->parent->parent->left; if (n->parent == u) u = n->parent->parent->right; if (u != NULL && u->red) { n->parent->red = 0; u->red = 0; n = n->parent->parent; n->red = 1; continue; } /* * case 4 - parent is red but uncle is black, parent and * grandparent on opposite sides. We need to start * changing the structure now. This and case 5 will shorten * our branch and lengthen the sibling, between them * restoring balance. */ if (n == n->parent->right && n->parent == n->parent->parent->left) { hlist_rotate_left(anchor, n->parent); n = n->left; } else if (n == n->parent->left && n->parent == n->parent->parent->right) { hlist_rotate_right(anchor, n->parent); n = n->right; } /* * case 5 - parent is red but uncle is black, parent and * grandparent on same side */ n->parent->red = 0; n->parent->parent->red = 1; if (n == n->parent->left) hlist_rotate_right(anchor, n->parent->parent); else hlist_rotate_left(anchor, n->parent->parent); break; } } /* * Highlight every character in a range of displayed characters. */ static void create_hilites(POSITION linepos, constant char *line, constant char *sp, constant char *ep, int attr, int *chpos) { size_t start_index = ptr_diff(sp, line); /*{{type-issue}}*/ size_t end_index = ptr_diff(ep, line); struct hilite hl; size_t i; /* Start the first hilite. */ hl.hl_startpos = linepos + chpos[start_index]; hl.hl_attr = attr; /* * Step through the displayed chars. * If the source position (before cvt) of the char is one more * than the source pos of the previous char (the usual case), * just increase the size of the current hilite by one. * Otherwise (there are backspaces or something involved), * finish the current hilite and start a new one. */ for (i = start_index+1; i <= end_index; i++) { if (chpos[i] != chpos[i-1] + 1 || i == end_index) { hl.hl_endpos = linepos + chpos[i-1] + 1; add_hilite(&hilite_anchor, &hl); /* Start new hilite unless this is the last char. */ if (i < end_index) { hl.hl_startpos = linepos + chpos[i]; } } } } /* * Make a hilite for each string in a physical line which matches * the current pattern. * sp,ep delimit the first match already found. */ static void hilite_line(POSITION linepos, constant char *line, size_t line_len, int *chpos, constant char **sp, constant char **ep, int nsp) { constant char *searchp; constant char *line_end = line + line_len; /* * sp[0] and ep[0] delimit the first match in the line. * Mark the corresponding file positions, then * look for further matches and mark them. * {{ This technique, of calling match_pattern on subsequent * substrings of the line, may mark more than is correct * if the pattern starts with "^". This bug is fixed * for those regex functions that accept a notbol parameter * (currently POSIX, PCRE and V8-with-regexec2). }} * sp[i] and ep[i] for i>0 delimit subpattern matches. * Color each of them with its unique color. */ searchp = line; do { constant char *lep = sp[0]; int i; if (sp[0] == NULL || ep[0] == NULL) break; for (i = 1; i < nsp; i++) { if (sp[i] == NULL || ep[i] == NULL) break; if (ep[i] > sp[i]) { create_hilites(linepos, line, lep, sp[i], AT_HILITE | AT_COLOR_SEARCH, chpos); create_hilites(linepos, line, sp[i], ep[i], AT_HILITE | AT_COLOR_SUBSEARCH(i), chpos); lep = ep[i]; } } create_hilites(linepos, line, lep, ep[0], AT_HILITE | AT_COLOR_SEARCH, chpos); /* * If we matched more than zero characters, * move to the first char after the string we matched. * If we matched zero, just move to the next char. */ if (ep[0] > searchp) searchp = ep[0]; else if (searchp != line_end) searchp++; else /* end of line */ break; } while (match_pattern(info_compiled(&search_info), search_info.text, searchp, ptr_diff(line_end, searchp), sp, ep, nsp, 1, search_info.search_type)); } #endif #if HILITE_SEARCH /* * Find matching text which is currently on screen and highlight it. */ static void hilite_screen(void) { struct scrpos scrpos; get_scrpos(&scrpos, TOP); if (scrpos.pos == NULL_POSITION) return; prep_hilite(scrpos.pos, position(BOTTOM_PLUS_ONE), -1); repaint_hilite(TRUE); } /* * Change highlighting parameters. */ public void chg_hilite(void) { /* * Erase any highlights currently on screen. */ clr_hilite(); hide_hilite = FALSE; if (hilite_search == OPT_ONPLUS) /* * Display highlights. */ hilite_screen(); } #endif /* * Figure out where to start a search. */ static POSITION search_pos(int search_type) { POSITION pos; int sindex; if (empty_screen()) { /* * Start at the beginning (or end) of the file. * The empty_screen() case is mainly for * command line initiated searches; * for example, "+/xyz" on the command line. * Also for multi-file (SRCH_PAST_EOF) searches. */ if (search_type & SRCH_FORW) { pos = ch_zero(); } else { pos = ch_length(); if (pos == NULL_POSITION) { (void) ch_end_seek(); pos = ch_length(); } } sindex = 0; } else { lbool add_one = FALSE; if (how_search == OPT_ON) { /* * Search does not include current screen. */ if (search_type & SRCH_FORW) sindex = sc_height-1; /* BOTTOM_PLUS_ONE */ else sindex = 0; /* TOP */ } else if (how_search == OPT_ONPLUS && !(search_type & SRCH_AFTER_TARGET)) { /* * Search includes all of displayed screen. */ if (search_type & SRCH_FORW) sindex = 0; /* TOP */ else sindex = sc_height-1; /* BOTTOM_PLUS_ONE */ } else { /* * Search includes the part of current screen beyond the jump target. * It starts at the jump target (if searching backwards), * or at the jump target plus one (if forwards). */ sindex = sindex_from_sline(jump_sline); if (search_type & SRCH_FORW) add_one = TRUE; } pos = position(sindex); if (add_one) pos = forw_raw_line(pos, NULL, NULL); } /* * If the line is empty, look around for a plausible starting place. */ if (search_type & SRCH_FORW) { while (pos == NULL_POSITION) { if (++sindex >= sc_height) break; pos = position(sindex); } } else { while (pos == NULL_POSITION) { if (--sindex < 0) break; pos = position(sindex); } } return (pos); } /* * Check to see if the line matches the filter pattern. * If so, add an entry to the filter list. */ #if HILITE_SEARCH static int matches_filters(POSITION pos, char *cline, size_t line_len, int *chpos, POSITION linepos, constant char **sp, constant char **ep, int nsp) { struct pattern_info *filter; for (filter = filter_infos; filter != NULL; filter = filter->next) { int line_filter = match_pattern(info_compiled(filter), filter->text, cline, line_len, sp, ep, nsp, 0, filter->search_type); if (line_filter) { struct hilite hl; hl.hl_startpos = linepos; hl.hl_endpos = pos; add_hilite(&filter_anchor, &hl); free(cline); free(chpos); return (1); } } return (0); } #endif /* * Get the position of the first char in the screen line which * puts tpos on screen. */ static POSITION get_lastlinepos(POSITION pos, POSITION tpos, int sheight) { int nlines; for (nlines = 0;; nlines++) { POSITION npos = forw_line(pos); if (npos > tpos) { if (nlines < sheight) return NULL_POSITION; return pos; } pos = npos; } } #if OSC8_LINK /* * osc8_parse_info points to the component fields in a parsed OSC8 sequence. */ struct osc8_parse_info { constant char *osc8_start; constant char *osc8_end; constant char *params_start; constant char *params_end; constant char *uri_start; constant char *uri_end; }; /* * Parse an OSC8 sequence in a string. */ static lbool osc8_parse(constant char *line, constant char *line_end, struct osc8_parse_info *pop) { constant char *oline; pop->osc8_start = pop->osc8_end = pop->uri_start = pop->uri_end = pop->params_start = pop->params_end = NULL; oline = line; LWCHAR ch = step_charc(&line, +1, line_end); /* oline points to character ch, line points to the one after it. */ struct ansi_state *pansi = ansi_start(ch); if (pansi == NULL) return FALSE; pop->osc8_start = oline; /* start at the ESC */ for (;;) { ansi_state astate = ansi_step(pansi, ch); osc8_state ostate = ansi_osc8_state(pansi); if (ostate == OSC8_NOT) break; switch (ostate) { case OSC8_PARAMS: if (pop->params_start == NULL) pop->params_start = line; break; case OSC8_URI: if (pop->uri_start == NULL) { pop->params_end = oline; pop->uri_start = line; } break; case OSC8_ST_ESC: if (pop->uri_end == NULL) pop->uri_end = oline; break; case OSC8_END: ansi_done(pansi); pop->osc8_end = line; if (pop->uri_end == NULL) /* happens when ST is "\7" */ pop->uri_end = oline; if (pop->params_end == NULL) /* should not happen */ pop->params_end = oline; return TRUE; default: break; } if (astate != ANSI_MID || line >= line_end) break; oline = line; ch = step_charc(&line, +1, line_end); } ansi_done(pansi); return FALSE; } /* * Does an OSC8 sequence contain a specified parameter? */ static lbool osc8_param_match(POSITION linepos, constant char *line, constant struct osc8_parse_info *op1, constant struct osc8_parse_info *op2, constant char *param, POSITION clickpos) { size_t param_len; constant char *p; if (clickpos != NULL_POSITION) { return clickpos >= linepos + ptr_diff(op1->osc8_start, line) && clickpos < linepos + ptr_diff(op2->osc8_end, line); } if (param == NULL) return TRUE; param_len = strlen(param); /* Parameters are separated by colons. */ for (p = op1->params_start; p + param_len <= op1->params_end; ) { if (strncmp(p, param, param_len) == 0) { p += param_len; if (p == op1->params_end || *p == ':') return TRUE; } while (p < op1->params_end && *p != ':') ++p; while (p < op1->params_end && *p == ':') ++p; } return FALSE; } /* * Is the URI in an OSC8 sequence empty? * "Empty" means zero length, or equal to "#". */ static lbool osc8_empty_uri(constant struct osc8_parse_info *op) { return op->uri_end == op->uri_start || (op->uri_end == op->uri_start+1 && op->uri_start[0] == '#'); } /* * Find the next OSC8 hyperlink in a line. * A hyperlink is two OSC8 sequences (the first with a nonempty URI) * plus the non-empty text between them. * But if searching for a parameter, allow URI and/or text to be empty. */ typedef enum { OSC8_NO_MATCH, OSC8_MATCH, OSC8_ALREADY } osc8_match; static osc8_match osc8_search_line1(int search_type, POSITION linepos, POSITION spos, constant char *line, size_t line_len, constant char *param, POSITION clickpos) { constant char *line_end = &line[line_len]; struct osc8_parse_info op1; struct osc8_parse_info op2; constant char *linep; constant size_t min_osc8_size = 6; /* "\e]8;;\7" */ if (search_type & SRCH_FORW) { for (linep = line; ; linep++) { if (linep + min_osc8_size > line_end) return OSC8_NO_MATCH; /* Find the first OSC8 sequence in the line with a nonempty URI, * which begins the hypertext. */ if (osc8_parse(linep, line_end, &op1) && (!osc8_empty_uri(&op1) || param != NULL)) { /* Now find the next OSC8 sequence, which ends the hypertext. */ constant char *linep2; for (linep2 = op1.osc8_end; linep2 < line_end; linep2++) { if (osc8_parse(linep2, line_end, &op2)) break; } if (linep2 == line_end) op2.osc8_end = op2.osc8_start = line_end; if ((op2.osc8_start > op1.osc8_end || param != NULL) && osc8_param_match(linepos, line, &op1, &op2, param, clickpos)) break; } } } else { op2.osc8_end = op2.osc8_start = line_end; for (linep = line_end - min_osc8_size; ; linep--) { if (linep < line) return OSC8_NO_MATCH; if (osc8_parse(linep, line_end, &op1)) { if (((!osc8_empty_uri(&op1) && op2.osc8_start > op1.osc8_end) || param != NULL) && osc8_param_match(linepos, line, &op1, &op2, param, clickpos)) break; op2 = op1; } } } if (param != NULL) /* Don't set osc8 globals if we're just searching for a parameter. */ return OSC8_MATCH; if (osc8_linepos == linepos && osc8_match_start == spos + ptr_diff(op1.osc8_start, line)) return OSC8_ALREADY; /* already selected */ osc8_linepos = linepos; osc8_match_start = spos + ptr_diff(op1.osc8_start, line); osc8_match_end = spos + ptr_diff(op2.osc8_start, line); osc8_params_start = spos + ptr_diff(op1.params_start, line); osc8_params_end = spos + ptr_diff(op1.params_end, line); osc8_uri_start = spos + ptr_diff(op1.uri_start, line); osc8_uri_end = spos + ptr_diff(op1.uri_end, line); osc8_text_start = spos + ptr_diff(op1.osc8_end, line); osc8_text_end = spos + ptr_diff(op2.osc8_start, line); /* Save URI for message in prompt(). */ osc8_uri = saven(op1.uri_start, ptr_diff(op1.uri_end, op1.uri_start)); return OSC8_MATCH; } /* * Find the N-th OSC8 hyperlink in a line. */ static osc8_match osc8_search_line(int search_type, POSITION linepos, constant char *line, size_t line_len, constant char *param, POSITION clickpos, int *matches) { while (*matches > 0) { POSITION spos = linepos; constant char *sline = line; size_t sline_len = line_len; osc8_match r; if (linepos == osc8_linepos && clickpos == NULL_POSITION) { /* * Already have a hyperlink selected. * Search for the next/previous one in the same line. */ if (search_type & SRCH_FORW) { size_t off = (size_t) (osc8_match_end - linepos); spos += off; sline += off; sline_len -= off; } else { sline_len = (size_t) (osc8_match_start - linepos); } } r = osc8_search_line1(search_type, linepos, spos, sline, sline_len, param, clickpos); if (r == OSC8_NO_MATCH) break; if (--*matches <= 0) return r; } return OSC8_NO_MATCH; } /* * Shift display to make the currently selected OSC8 hyperlink visible. */ static void osc8_shift_visible(void) { if (chop_line()) { size_t start_off = (size_t)(osc8_match_start - osc8_linepos); size_t end_off = (size_t)(osc8_match_end - osc8_linepos); shift_visible(osc8_linepos, start_off, end_off); } /* {{ What about the (plastlinepos != NULL) case in search_range? }} */ } #endif /* OSC8_LINK */ /* * Search a subset of the file, specified by start/end position. */ static int search_range(POSITION pos, POSITION endpos, int search_type, int matches, int maxlines, POSITION *plinepos, POSITION *pendpos, POSITION *plastlinepos) { constant char *line; char *cline; size_t line_len; LINENUM linenum; #define NSP (NUM_SEARCH_COLORS+2) constant char *sp[NSP]; constant char *ep[NSP]; int line_match; int cvt_ops; size_t cvt_len; int *chpos; POSITION linepos, oldpos; int skip_bytes = 0; size_t swidth = (size_t) (sc_width - line_pfx_width()); /*{{type-issue}}*/ size_t sheight = (size_t) (sc_height - sindex_from_sline(jump_sline)); linenum = find_linenum(pos); if (nosearch_header_lines && linenum <= header_lines) { linenum = header_lines + 1; pos = find_pos(linenum); } if (pos == NULL_POSITION) return (-1); oldpos = pos; /* When the search wraps around, end at starting position. */ if ((search_type & SRCH_WRAP) && endpos == NULL_POSITION) endpos = pos; for (;;) { /* * Get lines until we find a matching one or until * we hit end-of-file (or beginning-of-file if we're * going backwards), or until we hit the end position. */ if (ABORT_SIGS()) { /* * A signal aborts the search. */ return (-1); } if ((endpos != NULL_POSITION && !(search_type & SRCH_WRAP) && (((search_type & SRCH_FORW) && pos >= endpos) || ((search_type & SRCH_BACK) && pos <= endpos))) || maxlines == 0) { /* * Reached end position without a match. */ if (pendpos != NULL) *pendpos = pos; return (matches); } if (maxlines > 0) maxlines--; if (search_type & SRCH_FORW) { /* * Read the next line, and save the * starting position of that line in linepos. */ linepos = pos; pos = forw_raw_line(pos, &line, &line_len); if (linenum != 0) linenum++; } else { /* * Read the previous line and save the * starting position of that line in linepos. */ pos = back_raw_line(pos, &line, &line_len); linepos = pos; if (linenum != 0) linenum--; } if (pos == NULL_POSITION) { /* * Reached EOF/BOF without a match. */ if (search_type & SRCH_WRAP) { /* * The search wraps around the current file, so * try to continue at BOF/EOF. */ if (search_type & SRCH_FORW) { pos = ch_zero(); } else { pos = ch_length(); if (pos == NULL_POSITION) { (void) ch_end_seek(); pos = ch_length(); } } if (pos != NULL_POSITION) { /* * Wrap-around was successful. Clear * the flag so we don't wrap again, and * continue the search at new pos. */ search_wrapped = TRUE; search_type &= ~SRCH_WRAP; linenum = find_linenum(pos); continue; } } if (pendpos != NULL) *pendpos = oldpos; return (matches); } /* * If we're using line numbers, we might as well * remember the information we have now (the position * and line number of the current line). * Don't do it for every line because it slows down * the search. Remember the line number only if * we're "far" from the last place we remembered it. */ if (linenums && abs((int)(pos - oldpos)) > 2048) add_lnum(linenum, pos); oldpos = pos; #if HILITE_SEARCH if (is_filtered(linepos)) continue; #endif if (nosearch_header_cols) skip_bytes = skip_columns(header_cols, &line, &line_len); #if OSC8_LINK if (search_type & SRCH_OSC8) { if (osc8_search_line(search_type, linepos, line, line_len, osc8_search_param, NULL_POSITION, &matches) != OSC8_NO_MATCH) { if (plinepos != NULL) *plinepos = linepos; osc8_shift_visible(); return (0); } continue; } #endif /* * If it's a caseless search, convert the line to lowercase. * If we're doing backspace processing, delete backspaces. */ cvt_ops = get_cvt_ops(search_type); cvt_len = cvt_length(line_len, cvt_ops); cline = (char *) ecalloc(1, cvt_len); chpos = cvt_alloc_chpos(cvt_len); cvt_text(cline, line, chpos, &line_len, cvt_ops); #if HILITE_SEARCH /* * If any filters are in effect, ignore non-matching lines. */ if (filter_infos != NULL && ((search_type & SRCH_FIND_ALL) || prep_startpos == NULL_POSITION || linepos < prep_startpos || linepos >= prep_endpos)) { if (matches_filters(pos, cline, line_len, chpos, linepos, sp, ep, NSP)) continue; } #endif /* * Test the next line to see if we have a match. * We are successful if we either want a match and got one, * or if we want a non-match and got one. */ if (prev_pattern(&search_info)) { line_match = match_pattern(info_compiled(&search_info), search_info.text, cline, line_len, sp, ep, NSP, 0, search_type); if (line_match) { /* * Got a match. */ if (search_type & SRCH_FIND_ALL) { #if HILITE_SEARCH /* * We are supposed to find all matches in the range. * Just add the matches in this line to the * hilite list and keep searching. */ hilite_line(linepos + skip_bytes, cline, line_len, chpos, sp, ep, NSP); #endif } else if (--matches <= 0) { /* * Found the one match we're looking for. * Return it. */ #if HILITE_SEARCH if (hilite_search == OPT_ON) { /* * Clear the hilite list and add only * the matches in this one line. */ clr_hilite(); hilite_line(linepos + skip_bytes, cline, line_len, chpos, sp, ep, NSP); } #endif if (chop_line()) { /* * If necessary, shift horizontally to make sure * search match is fully visible. */ if (sp[0] != NULL && ep[0] != NULL) { size_t start_off = ptr_diff(sp[0], cline); size_t end_off = ptr_diff(ep[0], cline); shift_visible(linepos, chpos[start_off], chpos[end_off]); } } else if (plastlinepos != NULL) { /* * If the line is so long that the highlighted match * won't be seen when the line is displayed normally * (starting at the first char) because it fills the whole * screen and more, scroll forward until the last char * of the match appears in the last line on the screen. * lastlinepos is the position of the first char of that last line. */ if (ep[0] != NULL) { size_t end_off = ptr_diff(ep[0], cline); if (end_off >= swidth * sheight / 4) /* heuristic */ *plastlinepos = get_lastlinepos(linepos, linepos + chpos[end_off], (int) sheight); } } free(cline); free(chpos); if (plinepos != NULL) *plinepos = linepos; return (0); } } } free(cline); free(chpos); } } #if OSC8_LINK /* * Search for and select the next OSC8 sequence, forward or backward. */ public void osc8_search(int search_type, constant char *param, int matches) { POSITION pos; int match; if (osc8_linepos != NULL_POSITION) { /* Continue search in same line as current match. */ constant char *line; size_t line_len; pos = forw_raw_line(osc8_linepos, &line, &line_len); if (pos != NULL_POSITION) { if (osc8_search_line(search_type, osc8_linepos, line, line_len, param, NULL_POSITION, &matches) != OSC8_NO_MATCH) { no_eof_bell = TRUE; jump_loc(osc8_linepos, jump_sline); no_eof_bell = FALSE; osc8_shift_visible(); #if HILITE_SEARCH repaint_hilite(TRUE); #endif return; } } search_type |= SRCH_AFTER_TARGET; } pos = search_pos(search_type); if (pos == NULL_POSITION) { error("Nothing to search", NULL_PARG); return; } osc8_search_param = param; match = search_range(pos, NULL_POSITION, search_type | SRCH_OSC8, matches, -1, &pos, NULL, NULL); osc8_search_param = NULL; if (match != 0) { error("OSC 8 link not found", NULL_PARG); return; } jump_loc(pos, jump_sline); #if HILITE_SEARCH repaint_hilite(TRUE); #endif } /* * If a mouse click is on an OSC 8 link, select the link. */ public lbool osc8_click(int sindex, int col) { #if OSC8_LINK POSITION linepos = position(sindex); POSITION clickpos; constant char *line; size_t line_len; int matches = 1; int r; if (linepos == NULL_POSITION) return FALSE; clickpos = pos_from_col(linepos, col, NULL_POSITION, -1); if (clickpos == NULL_POSITION) return FALSE; if (forw_raw_line(linepos, &line, &line_len) == NULL_POSITION) return FALSE; r = osc8_search_line(SRCH_FORW|SRCH_OSC8, linepos, line, line_len, NULL, clickpos, &matches); if (r != OSC8_NO_MATCH) { #if HILITE_SEARCH repaint_hilite(TRUE); #endif if (r == OSC8_ALREADY) osc8_open(); return TRUE; } #else (void) sindex; (void) col; #endif /* OSC8_LINK */ return FALSE; } /* * Return the length of the scheme prefix in a URI. */ static int scheme_length(constant char *uri, size_t uri_len) { size_t plen; for (plen = 0; plen < uri_len; plen++) if (uri[plen] == ':') return plen; return 0; } /* * Does a URI contain any dangerous characters? */ static lbool bad_uri(constant char *uri, size_t uri_len) { size_t i; for (i = 0; i < uri_len; i++) if (strchr("'\"", uri[i]) != NULL) return TRUE; return FALSE; } /* * Re-read the line containing the selected OSC8 link. */ static lbool osc8_read_selected(struct osc8_parse_info *op) { constant char *line; size_t line_len; POSITION pos; pos = forw_raw_line(osc8_linepos, &line, &line_len); if (pos == NULL_POSITION) return FALSE; op->osc8_start = &line[osc8_match_start - osc8_linepos]; op->osc8_end = &line[osc8_match_end - osc8_linepos]; op->params_start = &line[osc8_params_start - osc8_linepos]; op->params_end = &line[osc8_params_end - osc8_linepos]; op->uri_start = &line[osc8_uri_start - osc8_linepos]; op->uri_end = &line[osc8_uri_end - osc8_linepos]; return TRUE; } /* * Open the currently selected OSC8 link. */ public void osc8_open(void) { struct osc8_parse_info op; char env_name[64]; size_t scheme_len; constant char *handler; char *open_cmd; size_t uri_len; FILE *hf; static constant char *env_name_pfx = "LESS_OSC8_"; if (osc8_linepos == NULL_POSITION) { error("No OSC8 link selected", NULL_PARG); return; } if (!osc8_read_selected(&op)) { error("Cannot find OSC8 link", NULL_PARG); return; } /* * Read a "handler" shell cmd from environment variable "LESS_OSC8_scheme". * pr_expand the handler cmd (to expand %o -> osc8_path) and execute it. * Handler's stdout is an "opener" shell cmd; execute opener to open the link. */ uri_len = ptr_diff(op.uri_end, op.uri_start); scheme_len = scheme_length(op.uri_start, uri_len); if (scheme_len == 0 && op.uri_start[0] == '#') { /* Link to "id=" in same file. */ char *param = ecalloc(uri_len+3, sizeof(char)); strcpy(param, "id="); strncpy(param+3, op.uri_start+1, uri_len-1); param[uri_len+2] = '\0'; osc8_search(SRCH_FORW|SRCH_WRAP, param, 1); free(param); return; } #if HAVE_POPEN if (bad_uri(op.uri_start, uri_len)) { error("Cannot open link containing dangerous characters", NULL_PARG); return; } SNPRINTF3(env_name, sizeof(env_name), "%s%.*s", env_name_pfx, (int) scheme_len, op.uri_start); handler = lgetenv(env_name); if (isnullenv(handler) || strcmp(handler, "-") == 0) handler = lgetenv("LESS_OSC8_ANY"); if (isnullenv(handler)) { PARG parg; parg.p_string = env_name + strlen(env_name_pfx); /* {{ tricky }} */ error("No handler for \"%s\" link type", &parg); return; } /* {{ ugly global osc8_path }} */ osc8_path = saven(op.uri_start, uri_len); hf = popen(pr_expand(handler), "r"); free(osc8_path); osc8_path = NULL; if (hf == NULL) { PARG parg; parg.p_string = env_name; error("Cannot execute protocol handler in %s", &parg); return; } open_cmd = readfd(hf); pclose(hf); if (strncmp(open_cmd, ":e", 2) == 0) { edit(skipsp(&open_cmd[2])); } else { lsystem(open_cmd, "link done"); } free(open_cmd); #else error("Cannot open link because your system does not support popen", NULL_PARG); #endif /* HAVE_POPEN */ } /* * Jump to the currently selected OSC8 link. */ public void osc8_jump(void) { if (osc8_linepos == NULL_POSITION) { error("No OSC8 link selected", NULL_PARG); return; } jump_loc(osc8_linepos, jump_sline); } #endif /* OSC8_LINK */ /* * search for a pattern in history. If found, compile that pattern. */ static int hist_pattern(int search_type) { #if CMD_HISTORY constant char *pattern; set_mlist(ml_search, 0); pattern = cmd_lastpattern(); if (pattern == NULL) return (0); if (set_pattern(&search_info, pattern, search_type, 1) < 0) return (-1); #if HILITE_SEARCH if (hilite_search == OPT_ONPLUS && !hide_hilite) hilite_screen(); #endif return (1); #else /* CMD_HISTORY */ return (0); #endif /* CMD_HISTORY */ } /* * Change the caseless-ness of searches. * Updates the internal search state to reflect a change in the -i flag. */ public void chg_caseless(void) { if (!search_info.is_ucase_pattern) { /* * Pattern did not have uppercase. * Set the search caselessness to the global caselessness. */ is_caseless = caseless; /* * If regex handles caseless, we need to discard * the pattern which was compiled with the old caseless. */ if (!re_handles_caseless) /* We handle caseless, so the pattern doesn't change. */ return; } /* * Regenerate the pattern using the new state. */ clear_pattern(&search_info); (void) hist_pattern(search_info.search_type); } /* * Search for the n-th occurrence of a specified pattern, * either forward or backward. * Return the number of matches not yet found in this file * (that is, n minus the number of matches found). * Return -1 if the search should be aborted. * Caller may continue the search in another file * if less than n matches are found in this file. */ public int search(int search_type, constant char *pattern, int n) { POSITION pos; POSITION opos; POSITION lastlinepos = NULL_POSITION; if (pattern == NULL || *pattern == '\0') { /* * A null pattern means use the previously compiled pattern. */ search_type |= SRCH_AFTER_TARGET; if (!prev_pattern(&search_info)) { int r = hist_pattern(search_type); if (r == 0) error("No previous regular expression", NULL_PARG); if (r <= 0) return (-1); } if ((search_type & SRCH_NO_REGEX) != (search_info.search_type & SRCH_NO_REGEX)) { error("Please re-enter search pattern", NULL_PARG); return -1; } #if HILITE_SEARCH if (hilite_search == OPT_ON || status_col) { /* * Erase the highlights currently on screen. * If the search fails, we'll redisplay them later. */ repaint_hilite(FALSE); } if (hilite_search == OPT_ONPLUS && hide_hilite) { /* * Highlight any matches currently on screen, * before we actually start the search. */ hide_hilite = FALSE; hilite_screen(); } hide_hilite = FALSE; #endif } else { /* * Compile the pattern. */ int show_error = !(search_type & SRCH_INCR); if (set_pattern(&search_info, pattern, search_type, show_error) < 0) return (-1); #if HILITE_SEARCH if (hilite_search || status_col) { /* * Erase the highlights currently on screen. * Also permanently delete them from the hilite list. */ repaint_hilite(FALSE); hide_hilite = FALSE; clr_hilite(); } if (hilite_search == OPT_ONPLUS || status_col) { /* * Highlight any matches currently on screen, * before we actually start the search. */ hilite_screen(); } #endif } /* * Figure out where to start the search. */ pos = search_pos(search_type); opos = position(sindex_from_sline(jump_sline)); if (pos == NULL_POSITION) { /* * Can't find anyplace to start searching from. */ if (search_type & SRCH_PAST_EOF) return (n); #if HILITE_SEARCH if (hilite_search == OPT_ON || status_col) repaint_hilite(TRUE); #endif error("Nothing to search", NULL_PARG); return (-1); } n = search_range(pos, NULL_POSITION, search_type, n, -1, &pos, (POSITION*)NULL, &lastlinepos); /* * This ABORT_SIGS check ensures that if the user presses interrupt, * we don't continue and complete the search. * That is, we leave the display unchanged. * {{ Is this true? Do we always want to abort the search on interrupt? }} */ if (ABORT_SIGS()) return (-1); if (n != 0) { /* * Search was unsuccessful. */ #if HILITE_SEARCH if ((hilite_search == OPT_ON || status_col) && n > 0) /* * Redisplay old hilites. */ repaint_hilite(TRUE); #endif return (n); } if (!(search_type & SRCH_NO_MOVE)) { /* * Go to the matching line. */ if (lastlinepos != NULL_POSITION) jump_loc(lastlinepos, BOTTOM); else if (pos != opos) jump_loc(pos, jump_sline); } #if HILITE_SEARCH if (hilite_search == OPT_ON || status_col) /* * Display new hilites in the matching line. */ repaint_hilite(TRUE); #endif return (0); } #if HILITE_SEARCH /* * Prepare hilites in a given range of the file. * * The pair (prep_startpos,prep_endpos) delimits a contiguous region * of the file that has been "prepared"; that is, scanned for matches for * the current search pattern, and hilites have been created for such matches. * If prep_startpos == NULL_POSITION, the prep region is empty. * If prep_endpos == NULL_POSITION, the prep region extends to EOF. * prep_hilite asks that the range (spos,epos) be covered by the prep region. */ public void prep_hilite(POSITION spos, POSITION epos, int maxlines) { POSITION nprep_startpos = prep_startpos; POSITION nprep_endpos = prep_endpos; POSITION new_epos; POSITION max_epos; int result; int i; /* * Search beyond where we're asked to search, so the prep region covers * more than we need. Do one big search instead of a bunch of small ones. */ POSITION SEARCH_MORE = (POSITION) (3*size_linebuf); if (!prev_pattern(&search_info) && !is_filtering()) return; /* * Make sure our prep region always starts at the beginning of * a line. (search_range takes care of the end boundary below.) */ spos = back_raw_line(spos+1, NULL, NULL); /* * If we're limited to a max number of lines, figure out the * file position we should stop at. */ if (maxlines < 0) max_epos = NULL_POSITION; else { max_epos = spos; for (i = 0; i < maxlines; i++) max_epos = forw_raw_line(max_epos, NULL, NULL); } /* * Find two ranges: * The range that we need to search (spos,epos); and the range that * the "prep" region will then cover (nprep_startpos,nprep_endpos). */ if (prep_startpos == NULL_POSITION || (epos != NULL_POSITION && epos < prep_startpos) || spos > prep_endpos) { /* * New range is not contiguous with old prep region. * Discard the old prep region and start a new one. */ clr_hilite(); clr_filter(); if (epos != NULL_POSITION) epos += SEARCH_MORE; nprep_startpos = spos; } else { /* * New range partially or completely overlaps old prep region. */ if (epos == NULL_POSITION) { /* * New range goes to end of file. */ ; } else if (epos > prep_endpos) { /* * New range ends after old prep region. * Extend prep region to end at end of new range. */ epos += SEARCH_MORE; } else /* (epos <= prep_endpos) */ { /* * New range ends within old prep region. * Truncate search to end at start of old prep region. */ epos = prep_startpos; } if (spos < prep_startpos) { /* * New range starts before old prep region. * Extend old prep region backwards to start at * start of new range. */ if (spos < SEARCH_MORE) spos = 0; else spos -= SEARCH_MORE; nprep_startpos = spos; } else /* (spos >= prep_startpos) */ { /* * New range starts within or after old prep region. * Trim search to start at end of old prep region. */ spos = prep_endpos; } } if (epos != NULL_POSITION && max_epos != NULL_POSITION && epos > max_epos) /* * Don't go past the max position we're allowed. */ epos = max_epos; if (epos == NULL_POSITION || epos > spos) { int search_type = SRCH_FORW | SRCH_FIND_ALL; search_type |= (search_info.search_type & (SRCH_NO_REGEX|SRCH_SUBSEARCH_ALL)); for (;;) { result = search_range(spos, epos, search_type, 0, maxlines, (POSITION*)NULL, &new_epos, (POSITION*)NULL); if (result < 0) return; if (prep_endpos == NULL_POSITION || new_epos > prep_endpos) nprep_endpos = new_epos; /* * Check both ends of the resulting prep region to * make sure they're not filtered. If they are, * keep going at least one more line until we find * something that isn't filtered, or hit the end. */ if (prep_endpos == NULL_POSITION || nprep_endpos > prep_endpos) { if (new_epos >= nprep_endpos && is_filtered(new_epos-1)) { spos = nprep_endpos; epos = forw_raw_line(nprep_endpos, NULL, NULL); if (epos == NULL_POSITION) break; maxlines = 1; continue; } } if (prep_startpos == NULL_POSITION || nprep_startpos < prep_startpos) { if (nprep_startpos > 0 && is_filtered(nprep_startpos)) { epos = nprep_startpos; spos = back_raw_line(nprep_startpos, NULL, NULL); if (spos == NULL_POSITION) break; nprep_startpos = spos; maxlines = 1; continue; } } break; } } prep_startpos = nprep_startpos; prep_endpos = nprep_endpos; } /* * Set the pattern to be used for line filtering. */ public void set_filter_pattern(constant char *pattern, int search_type) { struct pattern_info *filter; clr_filter(); if (pattern == NULL || *pattern == '\0') { /* Clear and free all filters. */ for (filter = filter_infos; filter != NULL; ) { struct pattern_info *next_filter = filter->next; clear_pattern(filter); free(filter); filter = next_filter; } filter_infos = NULL; } else { /* Create a new filter and add it to the filter_infos list. */ filter = ecalloc(1, sizeof(struct pattern_info)); init_pattern(filter); if (set_pattern(filter, pattern, search_type, 1) < 0) { free(filter); return; } filter->next = filter_infos; filter_infos = filter; } screen_trashed(); } /* * Is there a line filter in effect? */ public lbool is_filtering(void) { if (ch_getflags() & CH_HELPFILE) return (FALSE); return (filter_infos != NULL); } #endif #if HAVE_V8_REGCOMP /* * This function is called by the V8 regcomp to report * errors in regular expressions. */ public int reg_show_error = 1; void regerror(constant char *s) { PARG parg; if (!reg_show_error) return; parg.p_string = s; error("%s", &parg); } #endif less-668/signal.c0000444060175306017530000001132414700607631013015 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Routines dealing with signals. * * A signal usually merely causes a bit to be set in the "signals" word. * At some convenient time, the mainline code checks to see if any * signals need processing by calling psignal(). * If we happen to be reading from a file [in iread()] at the time * the signal is received, we call intread to interrupt the iread. */ #include "less.h" #include /* * "sigs" contains bits indicating signals which need to be processed. */ public int sigs; extern int sc_width, sc_height; extern int linenums; extern int wscroll; extern int reading; extern int quit_on_intr; extern long jump_sline_fraction; /* * Interrupt signal handler. */ #if MSDOS_COMPILER!=WIN32C /* ARGSUSED*/ static RETSIGTYPE u_interrupt(int type) { (void) type; bell(); #if OS2 LSIGNAL(SIGINT, SIG_ACK); #endif LSIGNAL(SIGINT, u_interrupt); sigs |= S_INTERRUPT; #if MSDOS_COMPILER==DJGPPC /* * If a keyboard has been hit, it must be Ctrl-C * (as opposed to Ctrl-Break), so consume it. * (Otherwise, Less will beep when it sees Ctrl-C from keyboard.) */ if (kbhit()) getkey(); #endif #if HILITE_SEARCH set_filter_pattern(NULL, 0); #endif if (reading) intread(); /* May longjmp */ } #endif #ifdef SIGTSTP /* * "Stop" (^Z) signal handler. */ /* ARGSUSED*/ static RETSIGTYPE stop(int type) { (void) type; LSIGNAL(SIGTSTP, stop); sigs |= S_STOP; if (reading) intread(); } #endif #undef SIG_LESSWINDOW #ifdef SIGWINCH #define SIG_LESSWINDOW SIGWINCH #else #ifdef SIGWIND #define SIG_LESSWINDOW SIGWIND #endif #endif #ifdef SIG_LESSWINDOW /* * "Window" change handler */ /* ARGSUSED*/ public RETSIGTYPE winch(int type) { (void) type; LSIGNAL(SIG_LESSWINDOW, winch); sigs |= S_WINCH; if (reading) intread(); } #endif #if MSDOS_COMPILER==WIN32C /* * Handle CTRL-C and CTRL-BREAK keys. */ #define WIN32_LEAN_AND_MEAN #include static BOOL WINAPI wbreak_handler(DWORD dwCtrlType) { switch (dwCtrlType) { case CTRL_C_EVENT: case CTRL_BREAK_EVENT: sigs |= S_INTERRUPT; #if HILITE_SEARCH set_filter_pattern(NULL, 0); #endif return (TRUE); default: break; } return (FALSE); } #endif static RETSIGTYPE terminate(int type) { (void) type; quit(15); } /* * Set up the signal handlers. */ public void init_signals(int on) { if (on) { /* * Set signal handlers. */ #if MSDOS_COMPILER==WIN32C SetConsoleCtrlHandler(wbreak_handler, TRUE); #else (void) LSIGNAL(SIGINT, u_interrupt); #endif #ifdef SIGTSTP (void) LSIGNAL(SIGTSTP, !secure_allow(SF_STOP) ? SIG_IGN : stop); #endif #ifdef SIGWINCH (void) LSIGNAL(SIGWINCH, winch); #endif #ifdef SIGWIND (void) LSIGNAL(SIGWIND, winch); #endif #ifdef SIGQUIT (void) LSIGNAL(SIGQUIT, SIG_IGN); #endif #ifdef SIGTERM (void) LSIGNAL(SIGTERM, terminate); #endif } else { /* * Restore signals to defaults. */ #if MSDOS_COMPILER==WIN32C SetConsoleCtrlHandler(wbreak_handler, FALSE); #else (void) LSIGNAL(SIGINT, SIG_DFL); #endif #ifdef SIGTSTP (void) LSIGNAL(SIGTSTP, SIG_DFL); #endif #ifdef SIGWINCH (void) LSIGNAL(SIGWINCH, SIG_IGN); #endif #ifdef SIGWIND (void) LSIGNAL(SIGWIND, SIG_IGN); #endif #ifdef SIGQUIT (void) LSIGNAL(SIGQUIT, SIG_DFL); #endif #ifdef SIGTERM (void) LSIGNAL(SIGTERM, SIG_DFL); #endif } } /* * Process any signals we have received. * A received signal cause a bit to be set in "sigs". */ public void psignals(void) { int tsignals; if ((tsignals = sigs) == 0) return; sigs = 0; #ifdef SIGTSTP if (tsignals & S_STOP) { /* * Clean up the terminal. */ #ifdef SIGTTOU LSIGNAL(SIGTTOU, SIG_IGN); #endif clear_bot(); deinit(); flush(); raw_mode(0); #ifdef SIGTTOU LSIGNAL(SIGTTOU, SIG_DFL); #endif LSIGNAL(SIGTSTP, SIG_DFL); kill(getpid(), SIGTSTP); /* * ... Bye bye. ... * Hopefully we'll be back later and resume here... * Reset the terminal and arrange to repaint the * screen when we get back to the main command loop. */ LSIGNAL(SIGTSTP, stop); raw_mode(1); init(); screen_trashed(); tsignals |= S_WINCH; } #endif #ifdef S_WINCH if (tsignals & S_WINCH) { int old_width, old_height; /* * Re-execute scrsize() to read the new window size. */ old_width = sc_width; old_height = sc_height; get_term(); if (sc_width != old_width || sc_height != old_height) { wscroll = (sc_height + 1) / 2; screen_size_changed(); } screen_trashed(); } #endif if (tsignals & S_INTERRUPT) { if (quit_on_intr) quit(QUIT_INTERRUPT); getcc_clear(); #if MSDOS_COMPILER==WIN32C win32_getch_clear(); #endif } } less-668/tags.c0000444060175306017530000003752414700607632012511 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ #include "less.h" #define WHITESP(c) ((c)==' ' || (c)=='\t') #if TAGS public constant char ztags[] = "tags"; public constant char *tags = ztags; static int total; static int curseq; extern int linenums; extern int sigs; extern int ctldisp; enum tag_result { TAG_FOUND, TAG_NOFILE, TAG_NOTAG, TAG_NOTYPE, TAG_INTR }; /* * Tag type */ enum { T_CTAGS, /* 'tags': standard and extended format (ctags) */ T_CTAGS_X, /* stdin: cross reference format (ctags) */ T_GTAGS, /* 'GTAGS': function definition (global) */ T_GRTAGS, /* 'GRTAGS': function reference (global) */ T_GSYMS, /* 'GSYMS': other symbols (global) */ T_GPATH /* 'GPATH': path name (global) */ }; static enum tag_result findctag(constant char *tag); static enum tag_result findgtag(constant char *tag, int type); static constant char *nextgtag(void); static constant char *prevgtag(void); static POSITION ctagsearch(void); static POSITION gtagsearch(void); static int getentry(char *buf, constant char **tag, constant char **file, constant char **line); /* * The list of tags generated by the last findgtag() call. * * Use either pattern or line number. * findgtag() always uses line number, so pattern is always NULL. * findctag() uses either pattern (in which case line number is 0), * or line number (in which case pattern is NULL). */ struct taglist { struct tag *tl_first; struct tag *tl_last; }; struct tag { struct tag *next, *prev; /* List links */ char *tag_file; /* Source file containing the tag */ LINENUM tag_linenum; /* Appropriate line number in source file */ char *tag_pattern; /* Pattern used to find the tag */ lbool tag_endline; /* True if the pattern includes '$' */ }; #define TAG_END ((struct tag *) &taglist) static struct taglist taglist = { TAG_END, TAG_END }; static struct tag *curtag; #define TAG_INS(tp) \ (tp)->next = TAG_END; \ (tp)->prev = taglist.tl_last; \ taglist.tl_last->next = (tp); \ taglist.tl_last = (tp); #define TAG_RM(tp) \ (tp)->next->prev = (tp)->prev; \ (tp)->prev->next = (tp)->next; /* * Delete tag structures. */ public void cleantags(void) { struct tag *tp; /* * Delete any existing tag list. * {{ Ideally, we wouldn't do this until after we know that we * can load some other tag information. }} */ while ((tp = taglist.tl_first) != TAG_END) { TAG_RM(tp); free(tp->tag_file); free(tp->tag_pattern); free(tp); } curtag = NULL; total = curseq = 0; } /* * Create a new tag entry. */ static struct tag * maketagent(constant char *file, LINENUM linenum, constant char *pattern, lbool endline) { struct tag *tp; tp = (struct tag *) ecalloc(sizeof(struct tag), 1); tp->tag_file = (char *) ecalloc(strlen(file) + 1, sizeof(char)); strcpy(tp->tag_file, file); tp->tag_linenum = linenum; tp->tag_endline = endline; if (pattern == NULL) tp->tag_pattern = NULL; else { tp->tag_pattern = (char *) ecalloc(strlen(pattern) + 1, sizeof(char)); strcpy(tp->tag_pattern, pattern); } return (tp); } /* * Get tag mode. */ public int gettagtype(void) { int f; if (strcmp(tags, "GTAGS") == 0) return T_GTAGS; if (strcmp(tags, "GRTAGS") == 0) return T_GRTAGS; if (strcmp(tags, "GSYMS") == 0) return T_GSYMS; if (strcmp(tags, "GPATH") == 0) return T_GPATH; if (strcmp(tags, "-") == 0) return T_CTAGS_X; f = open(tags, OPEN_READ); if (f >= 0) { close(f); return T_CTAGS; } return T_GTAGS; } /* * Find tags in tag file. * Find a tag in the "tags" file. * Sets "tag_file" to the name of the file containing the tag, * and "tagpattern" to the search pattern which should be used * to find the tag. */ public void findtag(constant char *tag) { int type = gettagtype(); enum tag_result result; if (type == T_CTAGS) result = findctag(tag); else result = findgtag(tag, type); switch (result) { case TAG_FOUND: case TAG_INTR: break; case TAG_NOFILE: error("No tags file", NULL_PARG); break; case TAG_NOTAG: error("No such tag in tags file", NULL_PARG); break; case TAG_NOTYPE: error("unknown tag type", NULL_PARG); break; } } /* * Search for a tag. */ public POSITION tagsearch(void) { if (curtag == NULL) return (NULL_POSITION); /* No gtags loaded! */ if (curtag->tag_linenum != 0) return gtagsearch(); else return ctagsearch(); } /* * Go to the next tag. */ public constant char * nexttag(int n) { constant char *tagfile = (char *) NULL; while (n-- > 0) tagfile = nextgtag(); return tagfile; } /* * Go to the previous tag. */ public constant char * prevtag(int n) { constant char *tagfile = (char *) NULL; while (n-- > 0) tagfile = prevgtag(); return tagfile; } /* * Return the total number of tags. */ public int ntags(void) { return total; } /* * Return the sequence number of current tag. */ public int curr_tag(void) { return curseq; } /***************************************************************************** * ctags */ /* * Find tags in the "tags" file. * Sets curtag to the first tag entry. */ static enum tag_result findctag(constant char *tag) { char *p; char *q; FILE *f; size_t taglen; LINENUM taglinenum; char *tagfile; char *tagpattern; lbool tagendline; int search_char; lbool err; char tline[TAGLINE_SIZE]; struct tag *tp; p = shell_unquote(tags); f = fopen(p, "r"); free(p); if (f == NULL) return TAG_NOFILE; cleantags(); total = 0; taglen = strlen(tag); /* * Search the tags file for the desired tag. */ while (fgets(tline, sizeof(tline), f) != NULL) { if (tline[0] == '!') /* Skip header of extended format. */ continue; if (strncmp(tag, tline, taglen) != 0 || !WHITESP(tline[taglen])) continue; /* * Found it. * The line contains the tag, the filename and the * location in the file, separated by white space. * The location is either a decimal line number, * or a search pattern surrounded by a pair of delimiters. * Parse the line and extract these parts. */ tagpattern = NULL; /* * Skip over the whitespace after the tag name. */ p = skipsp(tline+taglen); if (*p == '\0') /* File name is missing! */ continue; /* * Save the file name. * Skip over the whitespace after the file name. */ tagfile = p; while (!WHITESP(*p) && *p != '\0') p++; *p++ = '\0'; p = skipsp(p); if (*p == '\0') /* Pattern is missing! */ continue; /* * First see if it is a line number. */ tagendline = FALSE; taglinenum = getnum(&p, 0, &err); if (err) { /* * No, it must be a pattern. * Delete the initial "^" (if present) and * the final "$" from the pattern. * Delete any backslash in the pattern. */ taglinenum = 0; search_char = *p++; if (*p == '^') p++; tagpattern = q = p; while (*p != search_char && *p != '\0') { if (*p == '\\') p++; if (q != p) { *q++ = *p++; } else { q++; p++; } } tagendline = (q[-1] == '$'); if (tagendline) q--; *q = '\0'; } tp = maketagent(tagfile, taglinenum, tagpattern, tagendline); TAG_INS(tp); total++; } fclose(f); if (total == 0) return TAG_NOTAG; curtag = taglist.tl_first; curseq = 1; return TAG_FOUND; } /* * Edit current tagged file. */ public int edit_tagfile(void) { if (curtag == NULL) return (1); return (edit(curtag->tag_file)); } static int curtag_match(char constant *line, POSITION linepos) { /* * Test the line to see if we have a match. * Use strncmp because the pattern may be * truncated (in the tags file) if it is too long. * If tagendline is set, make sure we match all * the way to end of line (no extra chars after the match). */ size_t len = strlen(curtag->tag_pattern); if (strncmp(curtag->tag_pattern, line, len) == 0 && (!curtag->tag_endline || line[len] == '\0' || line[len] == '\r')) { curtag->tag_linenum = find_linenum(linepos); return 1; } return 0; } /* * Search for a tag. * This is a stripped-down version of search(). * We don't use search() for several reasons: * - We don't want to blow away any search string we may have saved. * - The various regular-expression functions (from different systems: * regcmp vs. re_comp) behave differently in the presence of * parentheses (which are almost always found in a tag). */ static POSITION ctagsearch(void) { POSITION pos, linepos; LINENUM linenum; size_t line_len; constant char *line; int found; pos = ch_zero(); linenum = find_linenum(pos); for (found = 0; !found;) { /* * Get lines until we find a matching one or * until we hit end-of-file. */ if (ABORT_SIGS()) return (NULL_POSITION); /* * Read the next line, and save the * starting position of that line in linepos. */ linepos = pos; pos = forw_raw_line(pos, &line, &line_len); if (linenum != 0) linenum++; if (pos == NULL_POSITION) { /* * We hit EOF without a match. */ error("Tag not found", NULL_PARG); return (NULL_POSITION); } /* * If we're using line numbers, we might as well * remember the information we have now (the position * and line number of the current line). */ if (linenums) add_lnum(linenum, pos); if (ctldisp != OPT_ONPLUS) { if (curtag_match(line, linepos)) found = 1; } else { int cvt_ops = CVT_ANSI; size_t cvt_len = cvt_length(line_len, cvt_ops); int *chpos = cvt_alloc_chpos(cvt_len); char *cline = (char *) ecalloc(1, cvt_len); cvt_text(cline, line, chpos, &line_len, cvt_ops); if (curtag_match(cline, linepos)) found = 1; free(chpos); free(cline); } } return (linepos); } /******************************************************************************* * gtags */ /* * Find tags in the GLOBAL's tag file. * The findgtag() will try and load information about the requested tag. * It does this by calling "global -x tag" and storing the parsed output * for future use by gtagsearch(). * Sets curtag to the first tag entry. */ static enum tag_result findgtag(constant char *tag, int type) { char buf[1024]; FILE *fp; struct tag *tp; if (type != T_CTAGS_X && tag == NULL) return TAG_NOFILE; cleantags(); total = 0; /* * If type == T_CTAGS_X then read ctags's -x format from stdin * else execute global(1) and read from it. */ if (type == T_CTAGS_X) { fp = stdin; /* Set tag default because we cannot read stdin again. */ tags = ztags; } else { #if !HAVE_POPEN return TAG_NOFILE; #else char *command; char *flag; char *qtag; constant char *cmd = lgetenv("LESSGLOBALTAGS"); if (isnullenv(cmd)) return TAG_NOFILE; /* Get suitable flag value for global(1). */ switch (type) { case T_GTAGS: flag = "" ; break; case T_GRTAGS: flag = "r"; break; case T_GSYMS: flag = "s"; break; case T_GPATH: flag = "P"; break; default: return TAG_NOTYPE; } /* Get our data from global(1). */ qtag = shell_quote(tag); if (qtag == NULL) qtag = save(tag); command = (char *) ecalloc(strlen(cmd) + strlen(flag) + strlen(qtag) + 5, sizeof(char)); sprintf(command, "%s -x%s %s", cmd, flag, qtag); free(qtag); fp = popen(command, "r"); free(command); #endif } if (fp != NULL) { while (fgets(buf, sizeof(buf), fp)) { constant char *name; constant char *file; constant char *line; size_t len; if (sigs) { #if HAVE_POPEN if (fp != stdin) pclose(fp); #endif return TAG_INTR; } len = strlen(buf); if (len > 0 && buf[len-1] == '\n') buf[len-1] = '\0'; else { int c; do { c = fgetc(fp); } while (c != '\n' && c != EOF); } if (getentry(buf, &name, &file, &line)) { /* * Couldn't parse this line for some reason. * We'll just pretend it never happened. */ break; } /* Make new entry and add to list. */ tp = maketagent(file, (LINENUM) atoi(line), NULL, FALSE); TAG_INS(tp); total++; } if (fp != stdin) { if (pclose(fp)) { curtag = NULL; total = curseq = 0; return TAG_NOFILE; } } } /* Check to see if we found anything. */ tp = taglist.tl_first; if (tp == TAG_END) return TAG_NOTAG; curtag = tp; curseq = 1; return TAG_FOUND; } static int circular = 0; /* 1: circular tag structure */ /* * Return the filename required for the next gtag in the queue that was setup * by findgtag(). The next call to gtagsearch() will try to position at the * appropriate tag. */ static constant char * nextgtag(void) { struct tag *tp; if (curtag == NULL) /* No tag loaded */ return NULL; tp = curtag->next; if (tp == TAG_END) { if (!circular) return NULL; /* Wrapped around to the head of the queue */ curtag = taglist.tl_first; curseq = 1; } else { curtag = tp; curseq++; } return (curtag->tag_file); } /* * Return the filename required for the previous gtag in the queue that was * setup by findgtat(). The next call to gtagsearch() will try to position * at the appropriate tag. */ static constant char * prevgtag(void) { struct tag *tp; if (curtag == NULL) /* No tag loaded */ return NULL; tp = curtag->prev; if (tp == TAG_END) { if (!circular) return NULL; /* Wrapped around to the tail of the queue */ curtag = taglist.tl_last; curseq = total; } else { curtag = tp; curseq--; } return (curtag->tag_file); } /* * Position the current file at at what is hopefully the tag that was chosen * using either findtag() or one of nextgtag() and prevgtag(). Returns -1 * if it was unable to position at the tag, 0 if successful. */ static POSITION gtagsearch(void) { if (curtag == NULL) return (NULL_POSITION); /* No gtags loaded! */ return (find_pos(curtag->tag_linenum)); } /* * The getentry() parses both standard and extended ctags -x format. * * [standard format] * * +------------------------------------------------ * |main 30 main.c main(argc, argv) * |func 21 subr.c func(arg) * * The following commands write this format. * o Traditional Ctags with -x option * o Global with -x option * See * * [extended format] * * +---------------------------------------------------------- * |main function 30 main.c main(argc, argv) * |func function 21 subr.c func(arg) * * The following commands write this format. * o Exuberant Ctags with -x option * See * * Returns 0 on success, -1 on error. * The tag, file, and line will each be NUL-terminated pointers * into buf. */ static int getentry(char *buf, constant char **tag, constant char **file, constant char **line) { char *p = buf; for (*tag = p; *p && !IS_SPACE(*p); p++) /* tag name */ ; if (*p == 0) return (-1); *p++ = 0; for ( ; *p && IS_SPACE(*p); p++) /* (skip blanks) */ ; if (*p == 0) return (-1); /* * If the second part begin with other than digit, * it is assumed tag type. Skip it. */ if (!IS_DIGIT(*p)) { for ( ; *p && !IS_SPACE(*p); p++) /* (skip tag type) */ ; for (; *p && IS_SPACE(*p); p++) /* (skip blanks) */ ; } if (!IS_DIGIT(*p)) return (-1); *line = p; /* line number */ for (*line = p; *p && !IS_SPACE(*p); p++) ; if (*p == 0) return (-1); *p++ = 0; for ( ; *p && IS_SPACE(*p); p++) /* (skip blanks) */ ; if (*p == 0) return (-1); *file = p; /* file name */ for (*file = p; *p && !IS_SPACE(*p); p++) ; if (*p == 0) return (-1); *p = 0; /* value check */ if (strlen(*tag) && strlen(*line) && strlen(*file) && atoi(*line) > 0) return (0); return (-1); } #endif less-668/ttyin.c0000444060175306017530000001312414700607633012711 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* * Routines dealing with getting input from the keyboard (i.e. from the user). */ #include "less.h" #if OS2 #include "cmd.h" #include "pckeys.h" #endif #if MSDOS_COMPILER==WIN32C #define WIN32_LEAN_AND_MEAN #ifndef _WIN32_WINNT #define _WIN32_WINNT 0x400 #endif #include #ifndef ENABLE_EXTENDED_FLAGS #define ENABLE_EXTENDED_FLAGS 0x80 #define ENABLE_QUICK_EDIT_MODE 0x40 #endif #ifndef ENABLE_VIRTUAL_TERMINAL_INPUT #define ENABLE_VIRTUAL_TERMINAL_INPUT 0x0200 #endif public HANDLE tty; public DWORD init_console_input_mode; public DWORD curr_console_input_mode; public DWORD base_console_input_mode; public DWORD mouse_console_input_mode; #else public int tty; #endif extern int sigs; #if LESSTEST public char *ttyin_name = NULL; public lbool is_lesstest(void) { return ttyin_name != NULL; } #endif /*LESSTEST*/ #if !MSDOS_COMPILER static int open_tty_device(constant char* dev) { #if OS2 /* The __open() system call translates "/dev/tty" to "con". */ return __open(dev, OPEN_READ); #else return open(dev, OPEN_READ); #endif } /* * Open the tty device. * Try ttyname(), then try /dev/tty, then use file descriptor 2. * In Unix, file descriptor 2 is usually attached to the screen, * but also usually lets you read from the keyboard. */ public int open_tty(void) { int fd = -1; #if LESSTEST if (is_lesstest()) fd = open_tty_device(ttyin_name); #endif /*LESSTEST*/ #if HAVE_TTYNAME if (fd < 0) { constant char *dev = ttyname(2); if (dev != NULL) fd = open_tty_device(dev); } #endif if (fd < 0) fd = open_tty_device("/dev/tty"); if (fd < 0) fd = 2; #ifdef __MVS__ struct f_cnvrt cvtreq = {SETCVTON, 0, 1047}; fcntl(fd, F_CONTROL_CVT, &cvtreq); #endif return fd; } #endif /* MSDOS_COMPILER */ /* * Open keyboard for input. */ public void open_getchr(void) { #if MSDOS_COMPILER==WIN32C /* Need this to let child processes inherit our console handle */ SECURITY_ATTRIBUTES sa; memset(&sa, 0, sizeof(SECURITY_ATTRIBUTES)); sa.nLength = sizeof(SECURITY_ATTRIBUTES); sa.bInheritHandle = TRUE; tty = CreateFile("CONIN$", GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ, &sa, OPEN_EXISTING, 0L, NULL); GetConsoleMode(tty, &init_console_input_mode); /* base mode: ensure we get ctrl-C events, and don't get VT input. */ base_console_input_mode = (init_console_input_mode | ENABLE_PROCESSED_INPUT) & ~ENABLE_VIRTUAL_TERMINAL_INPUT; /* mouse mode: enable mouse and disable quick edit. */ mouse_console_input_mode = (base_console_input_mode | ENABLE_MOUSE_INPUT | ENABLE_EXTENDED_FLAGS) & ~ENABLE_QUICK_EDIT_MODE; /* Start with base mode. If --mouse is given, switch to mouse mode in init_mouse. */ curr_console_input_mode = base_console_input_mode; SetConsoleMode(tty, curr_console_input_mode); #else #if MSDOS_COMPILER extern int fd0; /* * Open a new handle to CON: in binary mode * for unbuffered keyboard read. */ fd0 = dup(0); close(0); tty = open("CON", OPEN_READ); #if MSDOS_COMPILER==DJGPPC /* * Setting stdin to binary causes Ctrl-C to not * raise SIGINT. We must undo that side-effect. */ (void) __djgpp_set_ctrl_c(1); #endif #else tty = open_tty(); #endif #endif } /* * Close the keyboard. */ public void close_getchr(void) { #if MSDOS_COMPILER==WIN32C SetConsoleMode(tty, init_console_input_mode); CloseHandle(tty); #endif } #if MSDOS_COMPILER==WIN32C /* * Close the pipe, restoring the console mode (CMD resets it, losing the mouse). */ public int pclose(FILE *f) { int result; result = _pclose(f); SetConsoleMode(tty, curr_console_input_mode); return result; } #endif /* * Get the number of lines to scroll when mouse wheel is moved. */ public int default_wheel_lines(void) { int lines = 1; #if MSDOS_COMPILER==WIN32C if (SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0, &lines, 0)) { if (lines == WHEEL_PAGESCROLL) lines = 3; } #endif return lines; } /* * Get a character from the keyboard. */ public int getchr(void) { char c; ssize_t result; do { flush(); #if MSDOS_COMPILER && MSDOS_COMPILER != DJGPPC /* * In raw read, we don't see ^C so look here for it. */ #if MSDOS_COMPILER==WIN32C if (ABORT_SIGS()) return (READ_INTR); c = WIN32getch(); #else c = getch(); #endif result = 1; if (c == '\003') return (READ_INTR); #else { unsigned char uc; result = iread(tty, &uc, sizeof(char)); c = (char) uc; } if (result == READ_INTR) return (READ_INTR); if (result < 0) { /* * Don't call error() here, * because error calls getchr! */ quit(QUIT_ERROR); } #endif #if LESSTEST if (c == LESS_DUMP_CHAR) { dump_screen(); result = 0; continue; } #endif #if 0 /* allow entering arbitrary hex chars for testing */ /* ctrl-A followed by two hex chars makes a byte */ { static int hex_in = 0; static int hex_value = 0; if (c == CONTROL('A')) { hex_in = 2; result = 0; continue; } if (hex_in > 0) { int v; if (c >= '0' && c <= '9') v = c - '0'; else if (c >= 'a' && c <= 'f') v = c - 'a' + 10; else if (c >= 'A' && c <= 'F') v = c - 'A' + 10; else v = 0; hex_value = (hex_value << 4) | v; if (--hex_in > 0) { result = 0; continue; } c = hex_value; } } #endif /* * Various parts of the program cannot handle * an input character of '\0'. * If a '\0' was actually typed, convert it to '\340' here. */ if (c == '\0') c = '\340'; } while (result != 1); return (c & 0xFF); } less-668/ubin.uni0000444060175306017530000000064014700607666013055 0ustar marknmarkn/* Generated by "./mkutable -f2 Cc Cs Co Zl Zp -- unicode/UnicodeData.txt" on Sun Sep 17 17:56:27 PDT 2023 */ { 0x0000, 0x0007 }, /* Cc */ { 0x000b, 0x000b }, /* Cc */ { 0x000e, 0x001f }, /* Cc */ { 0x007f, 0x009f }, /* Cc */ { 0x2028, 0x2028 }, /* Zl */ { 0x2029, 0x2029 }, /* Zp */ { 0xd800, 0xdfff }, /* Cs */ { 0xe000, 0xf8ff }, /* Co */ { 0xf0000, 0xffffd }, /* Co */ { 0x100000, 0x10fffd }, /* Co */ less-668/version.c0000444060175306017530000015347314700607633013243 0ustar marknmarkn/* * Copyright (C) 1984-2024 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. * * For more information, see the README file. */ /* ----------------------- CHANGE HISTORY -------------------------- 1/29/84 Allowed use on standard input 2/1/84 Added E, N, P commands 4/17/84 Added '=' command, 'stop' signal handling 4/20/84 Added line folding v2 4/27/84 Fixed '=' command to use BOTTOM_PLUS_ONE, instead of TOP, added 'p' & 'v' commands v3 5/3/84 Added -m and -t options, '-' command v4 5/3/84 Added LESS environment variable v5 5/3/84 New comments, fixed '-' command slightly v6 5/15/84 Added -Q, visual bell v7 5/24/84 Fixed jump_back(n) bug: n should count real lines, not folded lines. Also allow number on G command. v8 5/30/84 Re-do -q and -Q commands v9 9/25/84 Added "+" argument v10 10/10/84 Fixed bug in -b argument processing v11 10/18/84 Made error() ring bell if \n not entered. ----------------------------------------------------------------- v12 2/13/85 Reorganized signal handling and made portable to 4.2bsd. v13 2/16/85 Reword error message for '-' command. v14 2/22/85 Added -bf and -bp variants of -b. v15 2/25/85 Miscellaneous changes. v16 3/13/85 Added -u flag for backspace processing. v17 4/13/85 Added j and k commands, changed -t default. v18 4/20/85 Rewrote signal handling code. v19 5/2/85 Got rid of "verbose" eq_message(). Made search() scroll in some cases. v20 5/21/85 Fixed screen.c ioctls for System V. v21 5/23/85 Fixed some first_cmd bugs. v22 5/24/85 Added support for no RECOMP nor REGCMP. v23 5/25/85 Miscellaneous changes and prettying up. Posted to USENET. ----------------------------------------------------------------- v24 6/3/85 Added ti,te terminal init & de-init. (Thanks to Mike Kersenbrock) v25 6/8/85 Added -U flag, standout mode underlining. v26 6/9/85 Added -M flag. Use underline termcap (us) if it exists. v27 6/15/85 Renamed some variables to make unique in 6 chars. Minor fix to -m. v28 6/28/85 Fixed right margin bug. v29 6/28/85 Incorporated M.Rose's changes to signal.c v30 6/29/85 Fixed stupid bug in argument processing. v31 7/15/85 Added -p flag, changed repaint algorithm. Added kludge for magic cookie terminals. v32 7/16/85 Added cat_file if output not a tty. v33 7/23/85 Added -e flag and EDITOR. v34 7/26/85 Added -s flag. v35 7/27/85 Rewrote option handling; added option.c. v36 7/29/85 Fixed -e flag to work if not last file. v37 8/10/85 Added -x flag. v38 8/19/85 Changed prompting; created prompt.c. v39 8/24/85 (Not -p) does not initially clear screen. v40 8/26/85 Added "skipping" indicator in forw(). Posted to USENET. ----------------------------------------------------------------- v41 9/17/85 ONLY_RETURN, control char commands, faster search, other minor fixes. v42 9/25/85 Added ++ command line syntax; ch_fsize for pipes. v43 10/15/85 Added -h flag, changed prim.c algorithms. v44 10/16/85 Made END print in all cases of eof; ignore SIGTTOU after receiv ing SIGTSTP. v45 10/16/85 Never print backspaces unless -u. v46 10/24/85 Backwards scroll in jump_loc. v47 10/30/85 Fixed bug in edit(): *first_cmd==0 v48 11/16/85 Use TIOCSETN instead of TIOCSETP. Added marks (m and ' commands). Posted to USENET. ----------------------------------------------------------------- v49 1/9/86 Fixed bug: signal didn't clear mcc. v50 1/15/86 Added ' (quote) to gomark. v51 1/16/86 Added + cmd, fixed problem if first_cmd fails, made g cmd sort of "work" on pipes ev en if bof is no longer buffered. v52 1/17/86 Made short files work better. v53 1/20/86 Added -P option. v54 1/20/86 Changed help to use HELPFILE. v55 1/23/86 Messages work better if not tty output. v56 1/24/86 Added -l option. v57 1/31/86 Fixed -l to get confirmation before ov erwriting an existing file. v58 8/28/86 Added filename globbing. v59 9/15/86 Fixed some bugs with very long filenames. v60 9/26/86 Incorporated changes from Leith (Casey) Leedom for boldface and -z option. v61 9/26/86 Got rid of annoying repaints after ! cmd. Posted to USENET. ----------------------------------------------------------------- v62 12/23/86 Added is_directory(); change -z default to -1 instead of 24; cat-and-exit if -e and file is less than a screenful. v63 1/8/87 Fixed bug in cat-and-exit if > 1 file. v64 1/12/87 Changed puts/putstr, putc/putchr, getc/getchr to av oid name conflict with stdio functions. v65 1/26/87 Allowed '-' command to change NUMBER v alued options (thanks to Gary Puckering) v66 2/13/87 Fixed bug: prepaint should use force=1. v67 2/24/87 Added !! and % expansion to ! command. v68 2/25/87 Added SIGWINCH and TIOCGWINSZ support; changed is_directory to bad_file. (thanks to J. Robert Ward) v69 2/25/87 Added SIGWIND and WIOCGETD (for Unix PC). v70 3/13/87 Changed help cmd from 'h' to 'H'; better error msgs in bad_file, errno_message. v71 5/11/87 Changed -p to -c, made triple -c/-C for clear-eol like more's -c. v72 6/26/87 Added -E, -L, use $SHELL in lsystem(). (thanks to Stev e Spearman) v73 6/26/87 Allow Examine "#" for previous file. Posted to USENET 8/25/87. ----------------------------------------------------------------- v74 9/18/87 Fix conflict in EOF symbol with stdio.h, Make os.c more portable to BSD. v75 9/23/87 Fix problems in get_term (thanks to Paul Eggert); new backwards scrolling in jump_loc (thanks to Marion Hakanson). v76 9/23/87 Added -i flag; allow single "!" to inv oke a shell (thanks to Franco Barber). v77 9/24/87 Added -n flag and line number support. v78 9/25/87 Fixed problem with prompts longer than the screen width. v79 9/29/87 Added the _ command. v80 10/6/87 Allow signal to break out of linenum scan. v81 10/6/87 Allow -b to be changed from within less. v82 10/7/87 Add cmd_decode to use a table for key binding (thanks to Dav id Nason). v83 10/9/87 Allow .less file for user-defined keys. v84 10/11/87 Fix -e/-E problems (thanks to Felix Lee). v85 10/15/87 Search now keeps track of line numbers. v86 10/20/87 Added -B option and autobuf; fixed "pipe error" bug. v87 3/1/88 Fix bug re BSD signals while reading file. v88 3/12/88 Use new format for -P option (thanks to der Mouse), allow "+-c" without message, fix bug re BSD hangup. v89 3/18/88 Turn off line numbers if linenum scan is interrupted. v90 3/30/88 Allow -P from within less. v91 3/30/88 Added tags file support (new -t option) (thanks to Brian Campbell). v92 4/4/88 Added -+option syntax. v93 4/11/88 Add support for slow input (thanks to Joe Orost & apologies for taking almost 3 years to get this in!) v94 4/11/88 Redo reading/signal stuff. v95 4/20/88 Repaint screen better after signal. v96 4/21/88 Add /! and ?! commands. v97 5/17/88 Allow -l/-L from within less. Eliminate some static arrays (use calloc). Posted to USENET. ----------------------------------------------------------------- v98 10/14/88 Fix incorrect calloc call; uninitialized var in exec_mca; core dump on unknown TERM. Make v cmd work if past last line of file. Fix some signal bugs. v99 10/29/88 Allow space between -X and string, when X is a string-valued option. v100 1/5/89 Fix globbing bug when $SHELL not set; allow spaces after -t command. v101 1/6/89 Fix problem with long (truncated) lines in tags file (thanks to Neil Dixon). v102 1/6/89 Fix bug with E# when no prev file; allow spaces after -l command. v103 3/14/89 Add -N, -f and -? options. Add z and w commands. Add %L for prompt strings. v104 3/16/89 Added EDITPROTO. v105 3/20/89 Fix bug in find_linenum which cached incorrectly on long lines. v106 3/31/89 Added -k option and multiple lesskey files. v107 4/27/89 Add 8-bit char support and -g option. Split option code into 3 files. v108 5/5/89 Allocate position table dynamically (thanks to Paul Eggert); change % command from "percent" to vi-style brace finder. v109 5/10/89 Added ESC-% command, split prim.c. v110 5/24/89 Fixed bug in + option; fixed repaint bug under Sun windows (thanks to Paul Eggert). v111 5/25/89 Generalized # and % expansion; use calloc for some error messages. v112 5/30/89 Get rid of ESC-%, add {}()[] commands. v113 5/31/89 Optimize lseeks (thanks to Paul Eggert). v114 7/25/89 Added ESC-/ and ESC-/! commands. v115 7/26/89 Added ESC-n command. v116 7/31/89 Added find_pos to optimize g command. v117 8/1/89 Change -f option to -r. v118 8/2/89 Save positions for all previous files, not just the immediately previous one. v119 8/7/89 Save marks across file boundaries. Add file handle stuff. v120 8/11/89 Add :ta command. v121 8/16/89 Add -f option. v122 8/30/89 Fix performance with many buffers. v123 8/31/89 Verbose prompts for string options. Posted beta to USENET. ----------------------------------------------------------------- v124 9/18/89 Reorganize search commands, N = rev, ESC-n = span, add ESC-N. v125 9/18/89 Fix tab bug (thanks to Alex Liu). Fix EOF bug when both -w and -c. v126 10/25/89 Add -j option. v127 10/27/89 Fix problems with blank lines before BOF. v128 10/27/89 Add %bj, etc. to prompt strings. v129 11/3/89 Add -+,-- commands; add set-option and unset-option to lesskey. v130 11/6/89 Generalize A_EXTRA to string, remove set-option, unset-option from lesskey. v131 11/7/89 Changed name of EDITPROTO to LESSEDIT. v132 11/8/89 Allow editing of command prefix. v133 11/16/89 Add -y option (thanks to Jeff Sullivan). v134 12/1/89 Glob filenames in the -l command. v135 12/5/89 Combined {}()[] commands into one, and added ESC-^F and ESC-^B commands. v136 1/20/90 Added -S, -R flags. Added | command. Added warning for binary files. (thanks to Richard Brittain and J. Sullivan). v137 1/21/90 Rewrote horrible pappend code. Added * notation for hi-bit chars. v138 1/24/90 Fix magic cookie terminal handling. Get rid of "cleanup" loop in ch_get. v139 1/27/90 Added MSDOS support. (many thanks to Richard Brittain). v140 2/7/90 Editing a new file adds it to the command line list. v141 2/8/90 Add edit_list for editing >1 file. v142 2/10/90 Add :x command. v143 2/11/90 Add * and @ modifies to search cmds. Change ESC-/ cmd from /@* to / *. v144 3/1/90 Messed around with ch_zero; no real change. v145 3/2/90 Added -R and -v/-V for MSDOS; renamed FILENAME to avoid conflict. v146 3/5/90 Pull cmdbuf functions out of command.c v147 3/7/90 Implement ?@; fix multi-file edit bugs. v148 3/29/90 Fixed bug in :e then :e#. v149 4/3/90 Change error,ierror,query to use PARG. v150 4/6/90 Add LESS_CHARSET, LESS_CHARDEF. v151 4/13/90 Remove -g option; clean up ispipe. v152 4/14/90 lsystem() closes input file, for editors which require exclusive open. v153 4/18/90 Fix bug if SHELL unset; fix bug in overstrike control char. v154 4/25/90 Output to fd 2 via buffer. v155 4/30/90 Ignore -i if uppercase in pattern (thanks to Michael Rendell.) v156 5/3/90 Remove scroll limits in forw() & back(); causes problems with -c. v157 5/4/90 Forward search starts at next real line (not screen line) after jump target. v158 6/14/90 Added F command. v159 7/29/90 Fix bug in exiting: output not flushed. v160 7/29/90 Clear screen before initial output w/ -c. v161 7/29/90 Add -T flag. v162 8/14/90 Fix bug with +F on command line. v163 8/21/90 Added LESSBINFMT variable. v164 9/5/90 Added -p, LINES, COLUMNS and unset mark ' == BOF, for 1003.2 D5. v165 9/6/90 At EOF with -c set, don't display empty screen when try to page forward. v166 9/6/90 Fix G when final line in file wraps. v167 9/11/90 Translate CR/LF -> LF for 1003.2. v168 9/13/90 Return to curr file if "tag not found". v169 12/12/90 G goes to EOF even if file has grown. v170 1/17/91 Add optimization for BSD _setjmp; fix #include ioctl.h TERMIO problem. (thanks to Paul Eggert) Posted to USENET. ----------------------------------------------------------------- v171 3/6/91 Fix -? bug in get_filename. v172 3/15/91 Fix G bug in empty file. Fix bug with ?\n and -i and uppercase pattern at EOF! (thanks to Paul Eggert) v173 3/17/91 Change N cmd to not permanently change direction. (thanks to Brian Matthews) v174 3/18/91 Fix bug with namelogfile not getting cleared when change files. v175 3/18/91 Fix bug with ++cmd on command line. (thanks to Jim Meyering) v176 4/2/91 Change | to not force current screen, include marked line, start/end from top of screen. Improve search speed. (thanks to Don Mears) v177 4/2/91 Add LESSHELP variable. Fix bug with F command with -e. Try /dev/tty for input before using fd 2. Patches posted to USENET 4/2/91. ----------------------------------------------------------------- v178 4/8/91 Fixed bug in globbing logfile name. (thanks to Jim Meyering) v179 4/9/91 Allow negative -z for screen-relative. v180 4/9/91 Clear to eos rather than eol if "db"; don't use "sr" if "da". (thanks to Tor Lillqvist) v181 4/18/91 Fixed bug with "negative" chars 80 - FF. (thanks to Benny Sander Hofmann) v182 5/16/91 Fixed bug with attribute at EOL. (thanks to Brian Matthews) v183 6/1/91 Rewrite linstall to do smart config. v184 7/11/91 Process \b in searches based on -u rather than -i. v185 7/11/91 -Pxxx sets short prompt; assume SIGWINCH after a SIGSTOP. (thanks to Ken Laprade) ----------------------------------------------------------------- v186 4/20/92 Port to MS-DOS (Microsoft C). v187 4/23/92 Added -D option & TAB_COMPLETE_FILENAME. v188 4/28/92 Added command line editing features. v189 12/8/92 Fix mem overrun in anscreen.c:init; fix edit_list to recover from bin file. v190 2/13/93 Make TAB enter one filename at a time; create ^L with old TAB functionality. v191 3/10/93 Defer creating "flash" page for MS-DOS. v192 9/6/93 Add BACK-TAB. v193 9/17/93 Simplify binary_file handling. v194 1/4/94 Add rudiments of alt_filename handling. v195 1/11/94 Port back to Unix; support keypad. ----------------------------------------------------------------- v196 6/7/94 Fix bug with bad filename; fix IFILE type problem. (thanks to David MacKenzie) v197 6/7/94 Fix bug with .less tables inserted wrong. v198 6/23/94 Use autoconf installation technology. (thanks to David MacKenzie) v199 6/29/94 Fix MS-DOS build (thanks to Tim Wiegman). v200 7/25/94 Clean up copyright, minor fixes. Posted to prep.ai.mit.edu ----------------------------------------------------------------- v201 7/27/94 Check for no memcpy; add casts to calloc; look for regcmp in libgen.a. (thanks to Kaveh Ghazi). v202 7/28/94 Fix bug in edit_next/edit_prev with non-existent files. v203 8/2/94 Fix a variety of configuration bugs on various systems. (thanks to Sakai Kiyotaka, Harald Koenig, Bjorn Brox, Teemu Rantanen, and Thorsten Lockert) v204 8/3/94 Use strerror if available. (thanks to J.T. Conklin) v205 8/5/94 Fix bug in finding "me" termcap entry. (thanks to Andreas Stolcke) 8/10/94 v205+: Change BUFSIZ to LBUFSIZE to avoid name conflict with stdio.h. Posted to prep.ai.mit.edu ----------------------------------------------------------------- v206 8/10/94 Use initial_scrpos for -t to avoid displaying first page before init(). (thanks to Dominique Petitpierre) v207 8/12/94 Fix bug if stdout is not tty. v208 8/16/94 Fix bug in close_altfile if goto err1 in edit_ifile. (Thanks to M.J. Hewitt) v209 8/16/94 Change scroll to wscroll to avoid conflict with library function. v210 8/16/94 Fix bug with bold on 8 bit chars. (thanks to Vitor Duarte) v211 8/16/94 Don't quit on EOI in jump_loc / forw. v212 8/18/94 Use time_t if available. v213 8/20/94 Allow ospeed to be defined in termcap.h. v214 8/20/94 Added HILITE_SEARCH, -F, ESC-u cmd. (thanks to Paul Lew and Bob Byrnes) v215 8/23/94 Fix -i toggle behavior. v216 8/23/94 Process BS in all searches, not only -u. v217 8/24/94 Added -X flag. v218 8/24/94 Reimplement undo_search. v219 8/24/94 Find tags marked with line number instead of pattern. v220 8/24/94 Stay at same position after SIG_WINCH. v221 8/24/94 Fix bug in file percentage in big file. v222 8/25/94 Do better if can't reopen current file. v223 8/27/94 Support setlocale. (thanks to Robert Joop) v224 8/29/94 Revert v216: process BS in search only if -u. v225 9/6/94 Rewrite undo_search again: toggle. v226 9/15/94 Configuration fixes. (thanks to David MacKenzie) v227 9/19/94 Fixed strerror config problem. Posted to prep.ai.mit.edu ----------------------------------------------------------------- v228 9/21/94 Fix bug in signals: repeated calls to get_editkeys overflowed st_edittable. v229 9/21/94 Fix "Nothing to search" error if -a and SRCH_PAST_EOF. v230 9/21/94 Don't print extra error msg in search after regerror(). v231 9/22/94 Fix hilite bug if search matches 0 chars. (thanks to John Polstra) v232 9/23/94 Deal with weird systems that have termios.h but not tcgetattr(). Posted to prep.ai.mit.edu ----------------------------------------------------------------- v233 9/26/94 Use get_term() instead of pos_init() in psignals to re-get lower_left termcap. (Thanks to John Malecki) v234 9/26/94 Make MIDDLE closer to middle of screen. v235 9/27/94 Use local strchr if system doesn't have. v236 9/28/94 Don't use libucb; use libterm if libtermcap & libcurses doesn't work. (Fix for Solaris; thanks to Frank Kaefer) v237 9/30/94 Use system isupper() etc if provided. Posted to prep.ai.mit.edu ----------------------------------------------------------------- v238 10/6/94 Make binary non-blinking if LESSBINFMT is set to a string without a *. v239 10/7/94 Don't let delimit_word run back past beginning of cmdbuf. v240 10/10/94 Don't write into termcap buffer. (Thanks to Benoit Speckel) v241 10/13/94 New lesskey file format. Don't expand filenames in search command. v242 10/14/94 Allow lesskey specification of "literal". v243 10/14/94 Add #stop command to lesskey. v244 10/16/94 Add -f flag to lesskey. v245 10/25/94 Allow TAB_COMPLETE_FILENAME to be undefd. v246 10/27/94 Move help file to /usr/local/share. v247 10/27/94 Add -V option. v248 11/5/94 Add -V option to lesskey. v249 11/5/94 Remove -f flag from lesskey; default input file is ~/.lesskey.in, not stdin. v250 11/7/94 Lesskey input file "-" means stdin. v251 11/9/94 Convert cfgetospeed result to ospeed. (Thanks to Andrew Chernov) v252 11/16/94 Change default lesskey input file from .lesskey.in to .lesskey. Posted to prep.ai.mit.edu ----------------------------------------------------------------- v253 11/21/94 Fix bug when tags file has a backslash. v254 12/6/94 Fix -k option. v255 12/8/94 Add #define EXAMINE to disable :e etc. v256 12/10/94 Change highlighting: only highlite search results (but now it is reliable). v257 12/10/94 Add goto_line and repaint_highlight to optimize highlight repaints. v258 12/12/94 Fixup in hilite_line if BS_SPECIAL. v259 12/12/94 Convert to autoconf 2.0. v260 12/13/94 Add SECURE define. v261 12/14/94 Use system WERASE char as EC_W_BACKSPACE. v262 12/16/94 Add -g/-G flag and screen_hilite. v263 12/20/94 Reimplement/optimize -G flag behavior. v264 12/23/94 Allow EXTRA string after line-edit cmd in lesskey file. v265 12/24/94 Add LESSOPEN=|cmd syntax. v266 12/26/94 Add -I flag. v267 12/28/94 Formalize the four-byte header emitted by a LESSOPEN pipe. v268 12/28/94 Get rid of four-byte header. v269 1/2/95 Close alt file before open new one. Avoids multiple popen(). v270 1/3/95 Use VISUAL; use S_ISDIR/S_ISREG; fix config problem with Solaris POSIX regcomp. v271 1/4/95 Don't quit on read error. v272 1/5/95 Get rid of -L. v273 1/6/95 Fix ch_ungetchar bug; don't call LESSOPEN on a pipe. v274 1/6/95 Ported to OS/2 (thanks to Kai Uwe Rommel) v275 1/18/95 Fix bug if toggle -G at EOF. v276 1/30/95 Fix OS/2 version. v277 1/31/95 Add "next" charset; don't display ^X for X > 128. v278 2/14/95 Change default for -G. Posted to prep.ai.mit.edu ----------------------------------------------------------------- v279 2/22/95 Add GNU options --help, --version. Minor config fixes. v280 2/24/95 Clean up calls to glob(); don't set # if we can't open the new file. v281 2/24/95 Repeat search should turn on hilites. v282 3/2/95 Minor fixes. v283 3/2/95 Fix homefile; make OS2 look in $HOME. v284 3/2/95 Error if "v" on LESSOPENed file; "%" figures out file size on pipe. v285 3/7/95 Don't set # in lsystem; lesskey try $HOME first. v286 3/7/95 Reformat change history (too much free time?). v287 3/8/95 Fix hilite bug if overstrike multiple chars. v288 3/8/95 Allow lesskey to override get_editkey keys. v289 3/9/95 Fix adj_hilite bug when line gets processed by hilite_line more than once. v290 3/9/95 Make configure automatically. Fix Sequent problem with incompatible sigsetmask(). Posted to prep.ai.mit.edu ----------------------------------------------------------------- v291 3/21/95 Add #env to lesskey. Fix MS-DOS build. Posted to simtel. ----------------------------------------------------------------- v292 4/24/95 Add MS-DOS support for Borland C. Fix arrow keys in MS-DOS versions. v293 4/28/95 Add auto-versioning stuff to make dist. v294 5/12/95 Fix Borland build. v295 1/20/96 Fix search on squished file; add /@@. v296 1/23/96 Allow cmdbuf larger than screen width. v297 1/24/96 Don't call termcap if tgetent fails; add #defines for buffers. v298 1/24/96 Change @@ to ^K. Add alternate search modifiers ^N, ^F, ^E. v299 1/25/96 Fix percent overflow in jump_percent (thanks to Brent Wiese); don't send "ti" after shell command till RETURN pressed. v300 1/25/96 Change -U to print tabs as ^I. v301 1/30/96 Make hilites work in cmd F output. v302 1/31/96 Fix cmd F to notice window-change signals. v303 1/31/96 Add ESC-SPACE command. v304 2/1/96 Add ^R search modifier; add LESSSECURE. v305 2/2/96 Workaround Linux /proc kernel bug; add LESSKEY. v306 3/16/96 Minor fixes. v307 3/25/96 Allow cmd line arg "--"; fix DOS & OS/2 defines.h. v308 4/4/96 Port to OS-9 (thanks to Boisy Pitre); fix -d. v309 4/9/96 Fix OS-9 version; fix tags bug with "$". v310 4/10/96 Get rid of HELPFILE. v311 4/22/96 Add Windows32 support; merge doscreen.c into screen.c. v312 4/24/96 Don't quit after "cannot reopen" error. v313 4/25/96 Added horizontal scrolling. v314 4/26/96 Modified -e to quit on reaching end of a squished file. v315 4/26/96 Fix "!;TAB" bug. v316 5/2/96 Make "|a" when (a < curr screen) go to end of curr screen. v317 5/14/96 Various fixes for the MS-DOS and OS/2 builds. Added ## and %% handling for filenames v318 5/29/96 Port to OS-9 Microware compiler; minor fixes (thanks to Martin Gregorie). v319 7/8/96 Fix Windows port (thanks to Jeff Paquette). v320 7/11/96 Final fixes for Windows port. v321 7/18/96 Minor fixes. Posted to Web page. ----------------------------------------------------------------- v322 8/13/96 Fix bug in shell escape from help file; add support for Microsoft Visual C under Windows; numerous small fixes. v323 8/19/96 Fixes for Windows version (thanks to Simon Munton); fix for Linux library weirdness (thanks to Jim Diamond); port to DJGPP (thanks to Eli Zaretskii). v324 8/21/96 Add support for spaces in filenames (thanks to Simon Munton). v325 8/21/96 Add lessecho, for spaces in filenames under Unix. v326 8/27/96 Fix DJGPP version. v327 9/1/96 Reorganize lglob, make spaces in filenames work better in Unix. v328 10/7/96 Append / to directory name in filename completion. Fix MS-DOS and OS-9 versions. v329 10/11/96 Fix more MS-DOS bugs; add LESSSEPARATOR; add -" option. Add LESSMETACHARS, LESSMETAESCAPE. v330 10/21/96 Minor fixes. Posted to Web page. ----------------------------------------------------------------- v331 4/22/97 Various Windows fixes (thanks to Gurusamy Sarathy). v332 4/22/97 Enter filenames from cmd line into edit history. Posted to Web page. ----------------------------------------------------------------- v333 3/4/99 Changed -w to highlite new line after forward movement. v334 3/9/99 Avoid overflowing prompt buffer; add %d and %D. v335 3/20/99 Add EBCDIC support (thanks to Thomas Dorner). Use HOMEDRIVE/HOMEPATH on Windows (thanks to Preston Bannister). Posted to Web page. ----------------------------------------------------------------- v336 4/8/99 Fix installation bugs. v337 4/9/99 Fix another installation bug. Posted to Web page. ----------------------------------------------------------------- v338 4/13/99 Add support for long option names. v339 4/18/99 Add \k, long option names to lesskey. Add -^P. Add :d. v340 4/21/99 Add regexec2. Fix Windows build. Posted to Web page. ----------------------------------------------------------------- v341 5/6/99 Add -F option; %c & ?c prompt escapes. (Thanks to Michele Maltoni) v342 7/22/99 Add system-wide lesskey file; allow GPL or Less License. v343 9/23/99 Support UTF-8 (Thanks to Robert Brady). Add %P and ?P in prompts. v344 10/27/99 -w highlights target line of g and p commands. v345 10/29/99 Make -R pass thru ESC but not other control chars. Posted to Web page. ----------------------------------------------------------------- v346 11/4/99 Fix bugs in long option processing; R cmd should clear hilites. Posted to Web page. ----------------------------------------------------------------- v347 12/13/99 Fixes for DJGPP version (thanks to Eli Zaretskii). v348 12/28/99 Fix deleting file with marks (thanks to Dimitar Jekov). Fix color problem in DJGPP version (thanks to Eli Zaretskii). v349 1/24/00 Fix minor DJGPP bugs; check environment vars for UTF-8; add --with-editor (thanks to Eli, Markus Kuhn, Thomas Schoepf). v350 3/1/00 Fix clear-while-standout bug. v351 3/5/00 Change -M and = prompts to show top & bottom line number. Posted to Web page. ----------------------------------------------------------------- v352 3/8/00 Fix scan_option NULL dereference. ----------------------------------------------------------------- v353 3/20/00 Fix SECURE compile bug, allow space after numeric option. v354 3/23/00 Add support for PCRE; add --with-regex configure option. ----------------------------------------------------------------- v355 6/28/00 Add -# option (thanks to Andy Levinson). v356 7/5/00 Add -J option. v357 7/6/00 Support sigprocmask. ----------------------------------------------------------------- v358 7/8/00 Fix problems with #stop in lesskey file. Posted to Web page. ----------------------------------------------------------------- v359 9/10/00 Fixes for Win32 display problems (thanks to Maurizio Vairani). v360 1/17/01 Move sysless to etc. v361 12/4/01 Add IBM-1047 charset & EBCDIC fixes (thanks to Thomas Dorner). Fix 32 bit dependencies (thanks to Paul Eggert). Fix UTF-8 overstriking (thanks to Robert Brady). v362 12/4/01 Make status column show search targets. v363 12/6/01 Add --no-keypad option. Add variable width tabstops (thanks to Peter Samuelson). v364 12/10/01 Better handling of very long lines in input; Fix horizontal shifting of colored text. v365 12/11/01 Fix overstriking of tabs; Add support for global(1) and multiple tag matches (thanks to Shigio Yamaguchi and Tim Vanderhoek). v366 12/11/01 Fixes for OS/2 (thanks to Kyosuke Tokoro). v367 12/13/01 Allow -D and -x options to terminate without dollar sign; Right/left arrow when entering N are shift cmds, not line edit. v368 12/18/01 Update lesskey commands. v370 12/23/01 Fix tags error messages. Posted to Web page. ----------------------------------------------------------------- v371 12/26/01 Fix new_file bug; use popen in Windows version; fix some compiler warnings. v372 12/29/01 Make -b be in units of 1K. v373 1/14/02 Improve handling of filenames containing shell metachars. v374 2/7/02 Fix memory leak; fix bug in -x argument parsing. v375 4/7/02 Fix searching for SGR sequences; fix SECURE build; add SGR support to DJGPP version (thanks to Eli Zaretskii). v376 6/10/02 Fix bug in overstriking multibyte UTF-8 characters (thanks to Jungshik Shin). Posted to Web page. ----------------------------------------------------------------- v377 9/10/02 Fix bug in Windows version when file contains CR; fix bug in search highlights with -R; make initial buffer limit really be 64K not unlimited. v378 9/30/02 Misc bug fixes and compiler warning cleanup. Posted to Web page. ----------------------------------------------------------------- v379 11/23/02 Add -L option; fix bug with ctrl-K in lesskey files; improve UTF-8 overstriking and underscore overstriking; fix minor man page problems; change to autoconf 2.54. v380 11/24/02 Make LINENUM same as POSITION. v381 11/28/02 Make -N use 7 columns for line number if possible. ----------------------------------------------------------------- v382 2/3/04 Remove copyrighted code. ----------------------------------------------------------------- v383 2/16/04 Add history file; add -K option; improve UTF-8 handling; fix some signed char bugs (thanks to Christian Biere); fix some upper/lower case bugs (thanks to Bjoern Jacke); add erase2 char (thanks to David Lawrence); add windows charset (thanks to Dimitar Zhekov). v384 2/20/04 Improvements in UTF-8 handling. v385 2/23/04 Fix UTF-8 output bug. ----------------------------------------------------------------- v386 9/13/05 Improvements to UTF-8 shift & color (thanks to Charles Levert); protect against invalid LESSOPEN and LESSCLOSE values. v387 9/14/05 Update Charles Levert's UTF-8 patch. v388 9/14/05 Change history behavior; change most sprintf calls to snprintf. v389 9/14/05 Fix copy & paste with long lines; improve performance of expand_linebuf; fix crash in init_mlist; v390 9/15/05 Show search matches in status column even if -G is set. ----------------------------------------------------------------- v391 9/17/05 Fix bugs. v392 10/14/05 Fix line wrapping bug. v393 10/19/05 Allow multiple attributes per char; fix bold+underline bug (thanks again to Charles Levert). v394 11/8/05 Fix prompt bug; fix compile problem in Windows build. ----------------------------------------------------------------- v395 1/12/07 Update Unicode tables (thanks to Charles Levert); don't chmod if LESSHISTFILE = /dev/null; make -f work for directories; support DESTDIR in Makefile; fix sigset_t detection in configure; make "t" cmd traverse tags in correct order v396 1/13/07 Add compatibility with POSIX more. v397 3/21/07 Allow decimal point in number for % command; Allow decimal point in number for -j option; Allow n command to fetch last search pattern from history (thanks to arno). v398 3/22/07 Don't rewrite history file if not necessary; fix bug when filenames contain "$". v399 3/22/07 Don't move to bottom of screen at startup; don't output extraneous newlines. v400 3/23/07 Allow search to find pattern after null byte (PCRE and no-regex) (thanks to Michael Constant). ----------------------------------------------------------------- v401 3/24/07 Minor documentation fixes. v402 3/30/07 Fix autoconf bug when memcpy etc are inline; fix bug in terminating number following -j option. v403 5/25/07 Fix Windows build. v404 6/5/07 Fix display bug with F command and long lines. v405 6/17/07 Fix display bug when using -w option. v406 6/17/07 Fix secure build. v407 8/16/07 Fix bugs; support CSI chars. v408 10/1/07 Fix bug in -i with non-ASCII chars. v409 10/12/07 Fix crash when viewing text with invalid UTF-8 sequences. v411 11/6/07 Fix case-insensitive searching with non-ASCII text. v412 11/6/07 Use symbolic SEEK constants. v413 11/6/07 Fix search highlight bug with non-ASCII text. v414 11/6/07 Fix display bug with no-wrap terminals. v415 11/14/07 Add --follow-name option. v416 11/22/07 Fix crash when searching text with invalid UTF-8 sequences. v417 12/31/07 Don't support single-char CSI in UTF-8 mode; fix bug with -R and invalid CSI sequences; fix bug searching text with SGR sequences with -r; emulate SGR sequences in WIN32 build. v418 12/31/07 Clean up. ----------------------------------------------------------------- v419 1/16/08 Make CSI char 0x9B work in UTF-8 mode (thanks to Colin Watson). v420 2/24/08 Add & command; fix -F option; fix '' after G. v421 2/24/08 Ignore filtered lines when searching. v422 3/2/08 Output CR at startup. v423 5/27/08 Clean up. v424 6/16/08 Fix compile bug with pcre; don't filter help file. v425 7/14/08 Fix non-ANSI code in list handling in ch.c. v426 10/27/08 Fix ignaw terminal handling (thanks to Per Hedeland); fix binary file detection in UTF-8 mode. v427 3/16/09 A few Win32 fixes (thanks to Jason Hood). v428 3/30/09 Add "|-" syntax to LESSOPEN. v429 4/10/09 Fix search highlighting bug with underlined text. ----------------------------------------------------------------- v430 4/22/09 Don't pass "-" to non-pipe LESSOPEN unless it starts with "-". v431 4/29/09 Fix highlight bug when match is at end of line. v432 6/27/09 Better fix for highlight bugs; fix new problems with ignaw terminals. v433 6/28/09 Cleanup search code. v434 6/29/09 More cleanup. v435 7/04/09 Fix bugs with non-regex filtering. v436 7/05/09 Fix memory leak. ----------------------------------------------------------------- v437 7/14/09 Fix bug in handling some long option names; make percentage calculation more accurate. v438 12/29/10 Fix bugs with -i/-I and & filtering; exit with status 2 on ctrl-C with -K. v439 12/31/10 Add -A option. v440 1/5/11 Fix bug displaying prompt after = command. v441 1/21/11 Fix semi-infinite loop if no newlines in file; make new -A behavior the default. ----------------------------------------------------------------- v442 3/2/11 Fix search bug. Add ctrl-G line edit command. v443 4/9/11 Fix Windows build. v444 6/8/11 Fix ungetc bug; remove vestiges of obsolete -l option. ----------------------------------------------------------------- v445 10/19/11 Fix hilite bug in backwards scroll with -J. Fix hilite bug with backspaces. Fix bugs handling SGR sequences in Win32 (thanks to Eric Lee). Add support for GNU regex (thanks to Reuben Thomas). v446 5/15/12 Up/down arrows in cmd editing search for matching cmd. v447 5/21/12 Add ESC-F command, two-pipe LESSOPEN syntax. v448 6/15/12 Print name of regex library in version message. v449 6/23/12 Allow config option --with-regex=none. v450 7/4/12 Fix EOF bug with ESC-F. v451 7/20/12 Fix typo. ----------------------------------------------------------------- v452 10/19/12 Fix --with-regex=none, fix "stty 0", fix Win32. Don't quit if errors in cmd line options. v453 10/27/12 Increase buffer sizes. v454 11/5/12 Fix typo. v455 11/5/12 Fix typo. v456 11/8/12 Fix option string incompatibility. v457 12/8/12 Use new option string syntax only after --use-backslash. v458 4/4/13 Fix display bug in using up/down in cmd buffer. ----------------------------------------------------------------- v459 5/6/13 Fix ++ bug. v460 6/19/13 Automate construction of Unicode tables. v461 6/21/13 Collapse multiple CRs before LF. v462 11/26/13 Don't overwrite history file, just append to it. v463 7/13/14 Misc. fixes. v464 7/19/14 Fix bugs & improve performance in & filtering (thanks to John Sullivan). v465 8/9/14 More fixes from John Sullivan. v466 8/23/14 Add colon to LESSANSIMIDCHARS. v467 9/18/14 Misc. fixes. v468 9/18/14 Fix typo v469 10/2/14 Allow extra string in command to append to a multichar cmd without executing it; fix bug using GNU regex. v470 10/5/14 Fix some compiler warnings. v471 12/14/14 Fix unget issues with prompt. Allow disabling history when compiled value of LESSHISTFILE = "-". v473 12/19/14 Fix prompt bug with stdin and -^P in lesskey extra string. v474 1/30/15 Fix bug in backwards search with match on bottom line. Make follow mode reopen file if file shrinks. v475 3/2/15 Fix possible buffer overrun with invalid UTF-8; fix bug when compiled with no regex; fix non-match search. v476 5/3/15 Update man pages. v477 5/19/15 Fix off-by-one in jump_forw_buffered; don't add FAKE_* files to cmd history. v478 5/21/15 Fix nonportable pointer usage in hilite tree. v479 7/6/15 Allow %% escapes in LESSOPEN variable. v480 7/24/15 Fix bug in no-regex searches; support MSVC v1900. v481 8/20/15 Fix broken -g option. ----------------------------------------------------------------- v482 2/25/16 Update Unicode database to "2015-06-16, 20:24:00 GMT [KW]". v483 2/27/16 Regenerate hilite when change search caselessness. (Thanks to Jason Hood) Fix bug when terminal has no "cm". (Thanks to Noel Cragg) v484 9/20/16 Update to Unicode 9.0.0 database. v485 10/21/16 Fix "nothing to search" bug when top/bottom line is empty; Display line numbers in bold. (thanks to Jason Hood); Fix incorrect display when entering double-width chars in search string. v486 10/22/16 New commands ESC-{ and ESC-} to shift to start/end of displayed lines; new option -Da in Windows version to enable SGR mode (thanks to Jason Hood). v487 10/23/16 configure --help formatting. ----------------------------------------------------------------- v488 2/23/17 Fix memory leaks in search (thanks to John Brooks). v489 3/30/17 Make -F not do init/deinit if file fits on one screen (thanks to Jindrich Novy). v490 4/5/17 Switch to ANSI prototypes in funcs.h; remove "register". v491 4/7/17 Fix signed char bug. v492 4/21/17 Handle SIGTERM. v493 6/22/17 Fix bug initializing charset in MSDOS build. v494 6/26/17 Update Unicode tables; make Cf chars composing not binary. v495 7/3/17 Improve binary file detection (thanks to Bela Lubkin); do -R filter when matching tags (thanks to Matthew Malcomson). v496 7/5/17 Add LESSRSCROLL marker. v497 7/5/17 Sync. v498 7/7/17 Fix early truncation of text if last char is double-width. v499 7/10/17 Misc fixes. v500 7/11/17 Fix bug where certain env variables couldn't be set in lesskey. v501 7/12/17 Make sure rscroll char is standout by default. v502 7/13/17 Control rscroll char via command line option not env variable. v503 7/13/17 Switch to git. v504 7/13/17 Call opt_rscroll at startup; change mkhelp.c to mkhelp.pl. v505 7/17/17 Add M and ESC-M commands; fix buffer handling with stdin and LESSOPEN. v506 7/17/17 On Windows, convert UTF-8 to multibyte if console is not UTF-8; handle extended chars on input (thanks to Jason Hood). v507 7/18/17 Fix some bugs handling filenames containing shell metachars. v508 7/19/17 Fix bugs when using LESSOPEN to read stdin. v509 7/19/17 Fix another stdin bug. v510 7/20/17 Fix bug in determining when to reopen a file. v511 7/25/17 Fix bugs in recent MSDOS changes (thanks to Jason Hood). v512 7/26/17 Fix MSDOS build. v513 7/26/17 Fix switch to normal attr at end of line with -R and rscroll. v514 7/27/17 Fix bug in fcomplete when pattern does not match a file. v515 7/28/17 Allow 'u' in -D option on Windows. v516 7/29/17 Fix bug using LESSOPEN with filename containing metachars. v517 7/30/17 Status column shows matches even if hiliting is disabled via -G. v518 8/1/17 Use underline in sgr mode in MSDOS (thanks to Jason Hood). v519 8/10/17 Fix rscroll bug when last char of line starts coloration. v520 9/3/17 Fix compiler warning. v521 10/20/17 Fix binary file warning in UTF-8 files with SGI sequences. v522 10/20/17 Handle keypad ENTER key properly. v523 10/23/17 Cleanup. v524 10/24/17 Fix getcc bug. v525 10/24/17 Change M command to mark last displayed line. v526 10/25/17 Fix search hilite bug introduced in v517. v527 10/30/17 Fix search hilite bug on last page with -a. v528 11/3/17 Make second ESC-u clear status column. v529 11/12/17 Display Unicode formatting chars in hex if -U is set. v530 12/2/17 Minor doc change and add missing VOID_PARAM. ----------------------------------------------------------------- v531 5/13/18 Fix bug with v on empty file; fix bug with v on file with metachars in name; add --nohistdups option. v532 7/27/18 Redraw screen on SIGWINCH even if screen size doesn't change. v533 8/1/18 Shell escape filenames in history; use PCRE_UTF8 flag; use wide-chars for Windows console title (thanks to Jason Hood). v534 8/9/18 Support PCRE2. v535 8/16/18 Don't count lines of initial screen if using -X with -F (thanks to Linus Torvalds). v536 8/31/18 Use descriptive error messages for PCRE2. v537 8/31/18 Support mingw build system (thanks to Mike Soyka). v538 9/3/18 Clean up some WIN32 code. v539 9/13/18 Fix spurious input on Windows with CAPSLOCK. v540 10/29/18 Add --mouse option. v541 10/30/18 Add --MOUSE option. v542 11/6/18 Add mouse support for WIN32; add --wheel-lines option. (thanks to Jason Hood). v543 11/12/18 Code cleanup. v544 11/16/18 Don't init/deinit keyboard/mouse if quit due to -F. v545 11/22/18 Fix Windows build, memory leaks. v546 11/29/18 Add --save-marks option. v547 11/30/18 Fix some bugs with saved marks. v548 12/14/18 Ignore mouse input when line editing. v549 2/10/19 Support X11 mouse extension 1006; Win32 fixes (thanks to Jason Hood). v550 2/16/19 Fix Win32 build; don't enable mouse unless --mouse is set. v551 6/10/19 Doc changes. ----------------------------------------------------------------- v552 7/8/19 Update Unicode tables. v553 10/17/19 Support tinfow; handle zero-width Hangul chars. v554 1/19/20 Remove erroneous free(). v555 3/15/20 Display error msg immediately when toggle -o without stdin. v556 3/15/20 Update copyright. v557 3/21/20 Fix memory corruption with libtermcap. v558 4/17/20 Don't init terminal if -F and file fits on one screen (WIN32). v559 4/19/20 Handle deinit correctly on WIN32. v560 5/3/20 Fix regression when command results in no movement; fix some less.nro issues (thanks to Bjarni I. Gislason). v561 5/11/20 Fix erroneous EOF calculation when F command is interrupted. v562 5/19/20 Update Unicode tables; minor doc formatting. v563 6/13/20 Fix crash due to realpath() incompatibility. v564 8/25/20 Handle realpath consistently; update docs. v565 11/3/20 Add ESC-U command, optimize calls to realpath(). v566 11/25/20 Fix crash when reopening a file while using LESSOPEN; support OSC 8 hyperlinks. v567 11/25/20 Fix typo. v568 11/29/20 Fix some hyperlink bugs; add ^W search modifier (thanks to Arminius); allow Makefile.aut to use Python instead of Perl (thanks to Charlie Lin). v569 12/1/20 Allow multiple & filters (thanks to Mattias Johansson), allow ^X to exit F command. v570 12/12/20 Better handling of multiple + or -p options; fix bugs in horizontal scrolling. v571 12/30/20 Add --line-num-width and --status-col-width options. v572 1/4/21 Save lastmark in history file; don't toggle mouse reporting; implement termcap delays. v573 1/9/21 Limit eof bell to 1 per second. v574 1/13/21 Add incremental search. v575 1/17/21 Fix build without HILITE_SEARCH; fix bug with ^K in lesskey extra string. v576 2/4/21 Make sure search result is visible; add --use-color and --color. v577 2/9/21 Use ttyname to get name of tty device. v578 2/9/21 Doc v579 2/14/21 Fix double-width char bugs and non-match search crash. v580 3/2/21 Some color fixes; fix compiler warnings; some lesstest support. v581 4/6/21 Ignore SIGTSTP in secure mode; don't print "skipping" when filtering. v582 4/21/21 Less now reads lesskey source file rather than binary; fix bug in finding tags with backslashes. v583 4/21/21 Use XDG_CONFIG_HOME and XDG_DATA_HOME to find files. v584 4/30/21 Add --file-size option. v585 5/2/21 Allow color desc W per man page. v586 5/7/21 Doc changes. v587 5/27/21 Fix --with-secure; fix --file-size message on Windows; fix colored search hilite in colored text; don't exit if -F and screen is resized; fix memcpy usage. v588 5/27/21 Fix release. v589 5/29/21 Copyright & build changes. v590 6/3/21 Fix non-autoconf Makefiles. v591 8/8/21 Use \kB for backspace key in lesskey; add more \k codes; handle multibyte chars in prompt. v592 8/24/21 Add --status-line option; limit use of /proc kludge; add --header. v593 8/30/21 Add header columns, --no-number-headers. v594 10/1/21 Let regex library handle caseless; add --redraw-on-quit option; add #version to lesskey. v595 10/12/21 Add H color type; add += to lesskey var section; add --search-options. v596 11/8/21 Look for lesskey in $HOME/.config. v597 11/16/21 Fix bugs in --header. v598 12/6/21 Look for lesshst in $XDG_STATE_HOME and $HOME/.local/state. v599 12/28/21 Defer moving to lower left in some cases; suppress TAB expansion in some cases. v600 1/7/22 Use /dev/tty if cannot open ttyname(). v601 1/31/22 Add --exit-follow-on-close option. v602 3/1/22 Doc changes. v603 3/14/22 Fix --header. v604 5/14/22 Fix termlib detection; fix non-ASCII input on Windows. v605 6/14/22 Update version number. v606 7/17/22 Fix bug with multibyte chars and --incsearch; escape filenames in LESSCLOSE; fix bin_file overrun. v607 7/19/22 Update Unicode tables. v608 7/22/22 Fix highlighting on colored text boundaries. v609 11/10/22 Add LESSUTFCHARDEF; fix overstrike color bug; fix procfs bug; fix signal race. v610 11/14/22 Update Unicode tables; fix again-search after filter; improve ^X to interrupt F command. v611 11/16/22 Fix EOF bug related to ^X change. v612 11/18/22 Fix more bugs related to ^X change. v613 11/28/22 Even more ^X issues. v614 11/28/22 Add ^X to wait message. v615 11/30/22 Add --no-vbell option. v616 12/9/22 Don't open tty as input file without -f. v617 12/10/22 Support poll on newer versions of MacOS. v618 12/29/22 Add --no-search-headers option; use C89 function definitions. v619 12/30/22 Fix bug using 'n' before '/'. v620 1/12/23 Add --modelines option; add --intr option; add subpattern coloring. v621 1/15/23 Add --wordwrap option; add LESS_LINES & LESS_COLUMNS. v622 1/27/23 Add --show-preproc-errors option. v623 2/2/23 Add # command; add ^S search modifier. v624 2/11/23 Add --proc-backspace, --proc-tab and --proc-return options. v625 2/16/23 Minor fixes. v626 2/19/23 Fix rare crash in add_attr_normal. v627 2/19/23 Doc. v628 2/20/23 Don't require newline after +&... v629 2/26/23 Delay "waiting for data" message for 500 ms. v630 3/18/23 Add LESS_DATA_DELAY. v631 3/26/23 Fix input of dead keys on Windows. v632 4/6/23 Make lesstest work on MacOS; minor fixes. v633 5/3/23 Fix build on systems with ncurses/termcap.h or ncursesw/termcap.h. v634 5/29/23 Allow program piping into less to access tty; fix search modifier ^E after ^W. v635 6/2/23 Fix crash with ! search modifier. v636 6/18/23 Fix -D in MS-DOS build; fix mouse wheel in MS-DOS build. v637 6/28/23 Fix early EOF when SIGWINCH is received. v638 6/29/23 Fix compile error with ECHONL. v639 6/29/23 Fix SIGWINCH while reading tty. v640 7/10/23 Add lesstest to release. v641 7/10/23 Fix release. v642 7/10/23 Fix release. v643 7/20/23 Fix crash on Windows with -o. v644 9/16/23 Improve ^C on non-terminated pipe; fix crash when files are deleted; support large files and non-BMP chars on Windows; fix # bug; don't filter header lines; fix shifting long lines; add --match-shift. v645 11/5/23 Default Windows charset is utf-8; update Unicode tables; fix ESC-} bug; mouse right-click jumps to '#'; add LESSSECURE_ALLOW; add --lesskey-content & LESSKEY_CONTENT; allow env var expansion in lesskey files; add LESS_UNSUPPORT. v646 11/6/23 Bug fixes. v647 11/16/23 Fix --+option; fix compiler warnings. v648 11/16/23 Add lang.h to release. v649 12/1/23 Add line number param to --header. v650 2/6/24 Add --no-search-header-lines and --no-search-header-columns; add ^L search modifier; add ^P shell command modifier; add search wrap message; add ^O^N, ^O^P, ^O^L and ^O^O commands. v651 3/4/24 Add --color attributes (*~_&); fix #/% substitution if name contains spaces; allow --rscroll with non-ASCII char. v652 3/11/24 Fix sleep_ms with usleep. v653 3/20/24 Make default charset utf-8. v654 4/28/24 Allow space to end parameter for some options; fix usleep bug; fix bugs when filename contains control chars; fix DJGPP build. v655 5/16/24 Fix search history bug with --incsearch. v656 5/23/24 Fix bug using escape sequences in prompt. v657 5/31/24 Fix buffer overrun when using LESSOPEN. v658 6/13/24 Fix double-free in lesskey parser; fix crash using small value for --line-num-width. v659 6/20/24 Fix typo in help. v660 6/24/24 Fix bug in ixerror. v661 6/29/24 Simpler fix for ixerror bug. v662 8/8/24 Fix build with --with-secure; improve true colors on Windows; fix crash with --header; fix crash with -S; fix #stop; fix --shift with fractional parameter; fix EOF bug in R command; fix --header with short file; fix ^X bug when output is not tty. v663 8/16/24 Fix ^X bug when output is not a tty. v664 8/28/24 Fix Windows compile error, fix output bug on Windows with -Da. v665 9/4/24 Fix ^Z bug. v666 9/21/24 Fix missing first byte from LESSOPEN if >0x7f. v667 9/26/24 Fix uninitialized variable in edit_ifile. v668 10/6/24 Fix UTF-8 chars in prompt. */ char version[] = "668"; less-668/wide.uni0000444060175306017530000000726414700607667013062 0ustar marknmarkn/* Generated by "./mkutable -f1 W F -- unicode/EastAsianWidth.txt" on Sun Sep 17 17:56:27 PDT 2023 */ { 0x1100, 0x115f }, /* W */ { 0x231a, 0x231b }, /* W */ { 0x2329, 0x232a }, /* W */ { 0x23e9, 0x23ec }, /* W */ { 0x23f0, 0x23f0 }, /* W */ { 0x23f3, 0x23f3 }, /* W */ { 0x25fd, 0x25fe }, /* W */ { 0x2614, 0x2615 }, /* W */ { 0x2648, 0x2653 }, /* W */ { 0x267f, 0x267f }, /* W */ { 0x2693, 0x2693 }, /* W */ { 0x26a1, 0x26a1 }, /* W */ { 0x26aa, 0x26ab }, /* W */ { 0x26bd, 0x26be }, /* W */ { 0x26c4, 0x26c5 }, /* W */ { 0x26ce, 0x26ce }, /* W */ { 0x26d4, 0x26d4 }, /* W */ { 0x26ea, 0x26ea }, /* W */ { 0x26f2, 0x26f3 }, /* W */ { 0x26f5, 0x26f5 }, /* W */ { 0x26fa, 0x26fa }, /* W */ { 0x26fd, 0x26fd }, /* W */ { 0x2705, 0x2705 }, /* W */ { 0x270a, 0x270b }, /* W */ { 0x2728, 0x2728 }, /* W */ { 0x274c, 0x274c }, /* W */ { 0x274e, 0x274e }, /* W */ { 0x2753, 0x2755 }, /* W */ { 0x2757, 0x2757 }, /* W */ { 0x2795, 0x2797 }, /* W */ { 0x27b0, 0x27b0 }, /* W */ { 0x27bf, 0x27bf }, /* W */ { 0x2b1b, 0x2b1c }, /* W */ { 0x2b50, 0x2b50 }, /* W */ { 0x2b55, 0x2b55 }, /* W */ { 0x2e80, 0x2e99 }, /* W */ { 0x2e9b, 0x2ef3 }, /* W */ { 0x2f00, 0x2fd5 }, /* W */ { 0x2ff0, 0x2fff }, /* W */ { 0x3000, 0x3000 }, /* F */ { 0x3001, 0x303e }, /* W */ { 0x3041, 0x3096 }, /* W */ { 0x3099, 0x30ff }, /* W */ { 0x3105, 0x312f }, /* W */ { 0x3131, 0x318e }, /* W */ { 0x3190, 0x31e3 }, /* W */ { 0x31ef, 0x321e }, /* W */ { 0x3220, 0x3247 }, /* W */ { 0x3250, 0x4dbf }, /* W */ { 0x4e00, 0xa48c }, /* W */ { 0xa490, 0xa4c6 }, /* W */ { 0xa960, 0xa97c }, /* W */ { 0xac00, 0xd7a3 }, /* W */ { 0xf900, 0xfaff }, /* W */ { 0xfe10, 0xfe19 }, /* W */ { 0xfe30, 0xfe52 }, /* W */ { 0xfe54, 0xfe66 }, /* W */ { 0xfe68, 0xfe6b }, /* W */ { 0xff01, 0xff60 }, /* F */ { 0xffe0, 0xffe6 }, /* F */ { 0x16fe0, 0x16fe4 }, /* W */ { 0x16ff0, 0x16ff1 }, /* W */ { 0x17000, 0x187f7 }, /* W */ { 0x18800, 0x18cd5 }, /* W */ { 0x18d00, 0x18d08 }, /* W */ { 0x1aff0, 0x1aff3 }, /* W */ { 0x1aff5, 0x1affb }, /* W */ { 0x1affd, 0x1affe }, /* W */ { 0x1b000, 0x1b122 }, /* W */ { 0x1b132, 0x1b132 }, /* W */ { 0x1b150, 0x1b152 }, /* W */ { 0x1b155, 0x1b155 }, /* W */ { 0x1b164, 0x1b167 }, /* W */ { 0x1b170, 0x1b2fb }, /* W */ { 0x1f004, 0x1f004 }, /* W */ { 0x1f0cf, 0x1f0cf }, /* W */ { 0x1f18e, 0x1f18e }, /* W */ { 0x1f191, 0x1f19a }, /* W */ { 0x1f200, 0x1f202 }, /* W */ { 0x1f210, 0x1f23b }, /* W */ { 0x1f240, 0x1f248 }, /* W */ { 0x1f250, 0x1f251 }, /* W */ { 0x1f260, 0x1f265 }, /* W */ { 0x1f300, 0x1f320 }, /* W */ { 0x1f32d, 0x1f335 }, /* W */ { 0x1f337, 0x1f37c }, /* W */ { 0x1f37e, 0x1f393 }, /* W */ { 0x1f3a0, 0x1f3ca }, /* W */ { 0x1f3cf, 0x1f3d3 }, /* W */ { 0x1f3e0, 0x1f3f0 }, /* W */ { 0x1f3f4, 0x1f3f4 }, /* W */ { 0x1f3f8, 0x1f43e }, /* W */ { 0x1f440, 0x1f440 }, /* W */ { 0x1f442, 0x1f4fc }, /* W */ { 0x1f4ff, 0x1f53d }, /* W */ { 0x1f54b, 0x1f54e }, /* W */ { 0x1f550, 0x1f567 }, /* W */ { 0x1f57a, 0x1f57a }, /* W */ { 0x1f595, 0x1f596 }, /* W */ { 0x1f5a4, 0x1f5a4 }, /* W */ { 0x1f5fb, 0x1f64f }, /* W */ { 0x1f680, 0x1f6c5 }, /* W */ { 0x1f6cc, 0x1f6cc }, /* W */ { 0x1f6d0, 0x1f6d2 }, /* W */ { 0x1f6d5, 0x1f6d7 }, /* W */ { 0x1f6dc, 0x1f6df }, /* W */ { 0x1f6eb, 0x1f6ec }, /* W */ { 0x1f6f4, 0x1f6fc }, /* W */ { 0x1f7e0, 0x1f7eb }, /* W */ { 0x1f7f0, 0x1f7f0 }, /* W */ { 0x1f90c, 0x1f93a }, /* W */ { 0x1f93c, 0x1f945 }, /* W */ { 0x1f947, 0x1f9ff }, /* W */ { 0x1fa70, 0x1fa7c }, /* W */ { 0x1fa80, 0x1fa88 }, /* W */ { 0x1fa90, 0x1fabd }, /* W */ { 0x1fabf, 0x1fac5 }, /* W */ { 0x1face, 0x1fadb }, /* W */ { 0x1fae0, 0x1fae8 }, /* W */ { 0x1faf0, 0x1faf8 }, /* W */ { 0x20000, 0x2fffd }, /* W */ { 0x30000, 0x3fffd }, /* W */ less-668/xbuf.c0000444060175306017530000001060414700607634012507 0ustar marknmarkn#include "less.h" #include "xbuf.h" /* * Initialize an expandable text buffer. */ public void xbuf_init(struct xbuffer *xbuf) { xbuf_init_size(xbuf, 16); } public void xbuf_init_size(struct xbuffer *xbuf, size_t init_size) { xbuf->data = NULL; xbuf->size = xbuf->end = 0; xbuf->init_size = init_size; } /* * Free buffer space in an xbuf. */ public void xbuf_deinit(struct xbuffer *xbuf) { if (xbuf->data != NULL) free(xbuf->data); xbuf_init(xbuf); } /* * Set xbuf to empty. */ public void xbuf_reset(struct xbuffer *xbuf) { xbuf->end = 0; } /* * Add a byte to an xbuf. */ public void xbuf_add_byte(struct xbuffer *xbuf, unsigned char b) { if (xbuf->end >= xbuf->size) { unsigned char *data; if (ckd_add(&xbuf->size, xbuf->size, xbuf->size ? xbuf->size : xbuf->init_size)) out_of_memory(); data = (unsigned char *) ecalloc(xbuf->size, sizeof(unsigned char)); if (xbuf->data != NULL) { memcpy(data, xbuf->data, xbuf->end); free(xbuf->data); } xbuf->data = data; } xbuf->data[xbuf->end++] = b; } /* * Add a char to an xbuf. */ public void xbuf_add_char(struct xbuffer *xbuf, char c) { xbuf_add_byte(xbuf, (unsigned char) c); } /* * Add arbitrary data to an xbuf. */ public void xbuf_add_data(struct xbuffer *xbuf, constant unsigned char *data, size_t len) { size_t i; for (i = 0; i < len; i++) xbuf_add_byte(xbuf, data[i]); } /* * Remove the last byte from an xbuf. */ public int xbuf_pop(struct xbuffer *buf) { if (buf->end == 0) return -1; return (int) buf->data[--(buf->end)]; } /* * Set an xbuf to the contents of another xbuf. */ public void xbuf_set(struct xbuffer *dst, struct xbuffer *src) { xbuf_reset(dst); xbuf_add_data(dst, src->data, src->end); } /* * Return xbuf data as a char*. */ public constant char * xbuf_char_data(constant struct xbuffer *xbuf) { return (constant char *)(xbuf->data); } /* * Helper functions for the ckd_add and ckd_mul macro substitutes. * These helper functions do not set *R on overflow, and assume that * arguments are nonnegative, that INTMAX_MAX <= UINTMAX_MAX, and that * sizeof is a reliable way to distinguish integer representations. * Despite these limitations they are good enough for 'less' on all * known practical platforms. For more-complicated substitutes * without most of these limitations, see Gnulib's stdckdint module. */ #if !HAVE_STDCKDINT_H /* * If the integer *R can represent VAL, store the value and return FALSE. * Otherwise, possibly set *R to an indeterminate value and return TRUE. * R has size RSIZE, and is signed if and only if RSIGNED is nonzero. */ static lbool help_fixup(void *r, uintmax val, int rsize, int rsigned) { if (rsigned) { if (rsize == sizeof (int)) { int *pr = r; if (INT_MAX < val) return TRUE; *pr = (int) val; #ifdef LLONG_MAX } else if (rsize == sizeof (long long)) { long long *pr = r; if (LLONG_MAX < val) return TRUE; *pr = (long long) val; #endif #ifdef INTMAX_MAX } else if (rsize == sizeof (intmax_t)) { intmax_t *pr = r; if (INTMAX_MAX < val) return TRUE; *pr = (intmax_t) val; #endif } else /* rsize == sizeof (long) */ { long *pr = r; if (LONG_MAX < val) return TRUE; *pr = (long) val; } } else { if (rsize == sizeof (unsigned)) { unsigned *pr = r; if (UINT_MAX < val) return TRUE; *pr = (unsigned) val; } else if (rsize == sizeof (unsigned long)) { unsigned long *pr = r; if (ULONG_MAX < val) return TRUE; *pr = (unsigned long) val; #ifdef ULLONG_MAX } else if (rsize == sizeof (unsigned long long)) { unsigned long long *pr = r; if (ULLONG_MAX < val) return TRUE; *pr = (unsigned long long) val; #endif } else /* rsize == sizeof (uintmax) */ { uintmax *pr = r; *pr = (uintmax) val; } } return FALSE; } /* * If *R can represent the mathematical sum of A and B, store the sum * and return FALSE. Otherwise, possibly set *R to an indeterminate * value and return TRUE. R has size RSIZE, and is signed if and only * if RSIGNED is nonzero. */ public lbool help_ckd_add(void *r, uintmax a, uintmax b, int rsize, int rsigned) { uintmax sum = a + b; return sum < a || help_fixup(r, sum, rsize, rsigned); } /* Likewise, but for the product of A and B. */ public lbool help_ckd_mul(void *r, uintmax a, uintmax b, int rsize, int rsigned) { uintmax product = a * b; return ((b != 0 && a != product / b) || help_fixup(r, product, rsize, rsigned)); } #endif less-668/xbuf.h0000444060175306017530000000115214700607654012514 0ustar marknmarkn#ifndef XBUF_H_ #define XBUF_H_ #include "lang.h" struct xbuffer { unsigned char *data; size_t end; size_t size; size_t init_size; }; void xbuf_init(struct xbuffer *xbuf); void xbuf_init_size(struct xbuffer *xbuf, size_t init_size); void xbuf_deinit(struct xbuffer *xbuf); void xbuf_reset(struct xbuffer *xbuf); void xbuf_add_byte(struct xbuffer *xbuf, unsigned char b); void xbuf_add_char(struct xbuffer *xbuf, char c); void xbuf_add_data(struct xbuffer *xbuf, constant unsigned char *data, size_t len); int xbuf_pop(struct xbuffer *xbuf); constant char *xbuf_char_data(constant struct xbuffer *xbuf); #endif